From 1ab4a55b74aa282e35323b5d200c3904d11a54ef Mon Sep 17 00:00:00 2001 From: NC <17676176+ensi321@users.noreply.github.com> Date: Mon, 5 May 2025 10:36:07 -0500 Subject: [PATCH] Remove exec requests schema --- src/engine/openrpc/schemas/payload.yaml | 59 ------------------------- 1 file changed, 59 deletions(-) diff --git a/src/engine/openrpc/schemas/payload.yaml b/src/engine/openrpc/schemas/payload.yaml index ae9295003..036e2d037 100644 --- a/src/engine/openrpc/schemas/payload.yaml +++ b/src/engine/openrpc/schemas/payload.yaml @@ -304,62 +304,3 @@ BlobsBundleV2: type: array items: $ref: '#/components/schemas/bytes' -DepositRequestV1: - title: Deposit request object V1 - type: object - required: - - pubkey - - withdrawalCredentials - - amount - - signature - - index - properties: - pubkey: - title: Public key - $ref: '#/components/schemas/bytes48' - withdrawalCredentials: - title: Withdrawal credentials - $ref: '#/components/schemas/bytes32' - amount: - title: Deposit amount - $ref: '#/components/schemas/uint64' - signature: - title: Deposit signature - $ref: '#/components/schemas/bytes96' - index: - title: Deposit index - $ref: '#/components/schemas/uint64' -WithdrawalRequestV1: - title: Withdrawal request object V1 - type: object - required: - - sourceAddress - - validatorPubkey - - amount - properties: - sourceAddress: - title: Source address - $ref: '#/components/schemas/address' - validatorPubkey: - title: Validator public key - $ref: '#/components/schemas/bytes48' - amount: - title: Withdraw amount - $ref: '#/components/schemas/uint64' -ConsolidationRequestV1: - title: Consolidation request object V1 - type: object - required: - - sourceAddress - - sourcePubkey - - targetPubkey - properties: - sourceAddress: - title: Source address - $ref: '#/components/schemas/address' - sourcePubkey: - title: Source validator public key - $ref: '#/components/schemas/bytes48' - targetPubkey: - title: Target validator public key - $ref: '#/components/schemas/bytes48'