Skip to content

Commit

Permalink
deploy: 02d595d
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Oct 9, 2024
1 parent 3fa731d commit dd37586
Showing 1 changed file with 54 additions and 14 deletions.
68 changes: 54 additions & 14 deletions beacon-node-oapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38038,7 +38038,7 @@ paths:
- earliest_exit_epoch
- consolidation_balance_to_consume
- earliest_consolidation_epoch
- pending_balance_deposits
- pending_deposits
- pending_partial_withdrawals
- pending_consolidations
properties:
Expand Down Expand Up @@ -38523,23 +38523,43 @@ paths:
earliest_consolidation_epoch:
type: string
example: '1'
pending_balance_deposits:
pending_deposits:
type: array
items:
type: object
description: 'The [`PendingBalanceDeposit`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.5/specs/electra/beacon-chain.md#pendingbalancedeposit) object from the CL Electra spec.'
description: 'The [`PendingDeposit`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.8/specs/electra/beacon-chain.md#pendingdeposit) object from the CL Electra spec.'
required:
- index
- pubkey
- withdrawal_credentials
- amount
- signature
- slot
properties:
index:
description: Index of validator in validator registry.
pubkey:
description: BLS public key of validator.
type: string
example: '1'
format: hex
pattern: '^0x[a-fA-F0-9]{96}$'
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
withdrawal_credentials:
description: The withdrawal credentials.
type: string
format: hex
example: '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2'
pattern: '^0x[a-fA-F0-9]{64}$'
amount:
description: The value to be deposited (gwei).
type: string
example: '1'
signature:
type: string
format: hex
pattern: '^0x[a-fA-F0-9]{192}$'
example: '0x1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505cc411d61252fb6cb3fa0017b679f8bb2305b26a285fa2737f175668d0dff91cc1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505'
slot:
description: The slot at which the deposit request was processed.
type: string
example: '1'
maxItems: 134217728
pending_partial_withdrawals:
type: array
Expand Down Expand Up @@ -75542,7 +75562,7 @@ components:
- earliest_exit_epoch
- consolidation_balance_to_consume
- earliest_consolidation_epoch
- pending_balance_deposits
- pending_deposits
- pending_partial_withdrawals
- pending_consolidations
properties:
Expand Down Expand Up @@ -76027,23 +76047,43 @@ components:
earliest_consolidation_epoch:
type: string
example: '1'
pending_balance_deposits:
pending_deposits:
type: array
items:
type: object
description: 'The [`PendingBalanceDeposit`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.5/specs/electra/beacon-chain.md#pendingbalancedeposit) object from the CL Electra spec.'
description: 'The [`PendingDeposit`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.8/specs/electra/beacon-chain.md#pendingdeposit) object from the CL Electra spec.'
required:
- index
- pubkey
- withdrawal_credentials
- amount
- signature
- slot
properties:
index:
description: Index of validator in validator registry.
pubkey:
description: BLS public key of validator.
type: string
example: '1'
format: hex
pattern: '^0x[a-fA-F0-9]{96}$'
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
withdrawal_credentials:
description: The withdrawal credentials.
type: string
format: hex
example: '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2'
pattern: '^0x[a-fA-F0-9]{64}$'
amount:
description: The value to be deposited (gwei).
type: string
example: '1'
signature:
type: string
format: hex
pattern: '^0x[a-fA-F0-9]{192}$'
example: '0x1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505cc411d61252fb6cb3fa0017b679f8bb2305b26a285fa2737f175668d0dff91cc1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505'
slot:
description: The slot at which the deposit request was processed.
type: string
example: '1'
maxItems: 134217728
pending_partial_withdrawals:
type: array
Expand Down

0 comments on commit dd37586

Please sign in to comment.