├── .github ├── changes-template.md └── workflows │ ├── deploy.yaml │ ├── main.yml │ ├── pre-release.yaml │ ├── release.yaml │ └── spellcheck.yml ├── .gitignore ├── .redocly.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── apis ├── beacon │ ├── blob_sidecars │ │ └── blob_sidecars.yaml │ ├── blobs │ │ └── blobs.yaml │ ├── blocks │ │ ├── attestations.v2.yaml │ │ ├── blinded_block.yaml │ │ ├── blinded_blocks.v2.yaml │ │ ├── block.v2.yaml │ │ ├── blocks.v2.yaml │ │ ├── header.yaml │ │ ├── headers.yaml │ │ └── root.yaml │ ├── genesis.yaml │ ├── light_client │ │ ├── bootstrap.yaml │ │ ├── finality_update.yaml │ │ ├── optimistic_update.yaml │ │ └── updates.yaml │ ├── pool │ │ ├── attestations.v2.yaml │ │ ├── attester_slashings.v2.yaml │ │ ├── bls_to_execution_changes.yaml │ │ ├── proposer_slashings.yaml │ │ ├── sync_committees.yaml │ │ └── voluntary_exits.yaml │ ├── rewards │ │ ├── attestations.yaml │ │ ├── blocks.yaml │ │ └── sync_committee.yaml │ └── states │ │ ├── committee.yaml │ │ ├── finality_checkpoints.yaml │ │ ├── fork.yaml │ │ ├── pending_consolidations.yaml │ │ ├── pending_deposits.yaml │ │ ├── pending_partial_withdrawals.yaml │ │ ├── proposer_lookahead.yaml │ │ ├── randao.yaml │ │ ├── root.yaml │ │ ├── sync_committees.yaml │ │ ├── validator.yaml │ │ ├── validator_balances.yaml │ │ ├── validator_identities.yaml │ │ └── validators.yaml ├── config │ ├── deposit_contract.yaml │ ├── fork_schedule.yaml │ └── spec.yaml ├── debug │ ├── data_column_sidecars.yaml │ ├── fork_choice.yaml │ ├── heads.v2.yaml │ └── state.v2.yaml ├── eventstream │ └── index.yaml ├── node │ ├── health.yaml │ ├── identity.yaml │ ├── peer.yaml │ ├── peer_count.yaml │ ├── peers.yaml │ ├── syncing.yaml │ └── version.yaml └── validator │ ├── aggregate_and_proofs.v2.yaml │ ├── aggregate_attestation.v2.yaml │ ├── attestation_data.yaml │ ├── beacon_committee_selections.yaml │ ├── beacon_committee_subscriptions.yaml │ ├── block.v3.yaml │ ├── duties │ ├── attester.yaml │ ├── proposer.yaml │ └── sync.yaml │ ├── liveness.yaml │ ├── prepare_beacon_proposer.yaml │ ├── register_validator.yaml │ ├── sync_committee_contribution.yaml │ ├── sync_committee_contribution_and_proof.yaml │ ├── sync_committee_selections.yaml │ └── sync_committee_subscriptions.yaml ├── assets └── ethereum_logo.png ├── beacon-node-oapi.yaml ├── dictionary.dic ├── dist ├── favicon-16x16.png ├── favicon-32x32.png ├── oauth2-redirect.html ├── swagger-ui-bundle.js ├── swagger-ui-bundle.js.map ├── swagger-ui-es-bundle-core.js ├── swagger-ui-es-bundle-core.js.map ├── swagger-ui-es-bundle.js ├── swagger-ui-es-bundle.js.map ├── swagger-ui-standalone-preset.js ├── swagger-ui-standalone-preset.js.map ├── swagger-ui.css ├── swagger-ui.css.map ├── swagger-ui.js ├── swagger-ui.js.map └── theme-material.css ├── index.html ├── params └── index.yaml ├── spellcheck.yaml ├── types ├── altair │ ├── block.yaml │ ├── epoch_participation.yaml │ ├── light_client.yaml │ ├── state.yaml │ ├── sync_aggregate.yaml │ └── sync_committee.yaml ├── api.yaml ├── bellatrix │ ├── block.yaml │ ├── execution_payload.yaml │ ├── state.yaml │ └── transactions.yaml ├── capella │ ├── block.yaml │ ├── bls_to_execution_change.yaml │ ├── execution_payload.yaml │ ├── historical_summary.yaml │ ├── light_client.yaml │ ├── state.yaml │ ├── withdrawal.yaml │ └── withdrawals.yaml ├── deneb │ ├── blob_sidecar.yaml │ ├── block.yaml │ ├── block_contents.yaml │ ├── execution_payload.yaml │ ├── light_client.yaml │ └── state.yaml ├── duty.yaml ├── electra │ ├── attestation.yaml │ ├── attester_slashing.yaml │ ├── blob_sidecar.yaml │ ├── block.yaml │ ├── block_contents.yaml │ ├── consolidation.yaml │ ├── deposit.yaml │ ├── execution_requests.yaml │ ├── light_client.yaml │ ├── state.yaml │ ├── validator.yaml │ └── withdrawal.yaml ├── fork_choice.yaml ├── fulu │ ├── block_contents.yaml │ ├── data_column_sidecar.yaml │ └── state.yaml ├── http.yaml ├── misc.yaml ├── p2p.yaml ├── phase0 │ ├── attestation.yaml │ ├── attestation_data.yaml │ ├── attester_slashing.yaml │ ├── block.yaml │ ├── deposit.yaml │ ├── eth1.yaml │ ├── proposer_slashing.yaml │ ├── state.yaml │ ├── validator.yaml │ └── voluntary_exit.yaml ├── primitive.yaml ├── registration.yaml ├── rewards.yaml └── selection.yaml ├── validator-flow.md └── wordlist.txt /.github/changes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/changes-template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/workflows/pre-release.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | deploy 3 | node_modules 4 | -------------------------------------------------------------------------------- /.redocly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/.redocly.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/README.md -------------------------------------------------------------------------------- /apis/beacon/blob_sidecars/blob_sidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blob_sidecars/blob_sidecars.yaml -------------------------------------------------------------------------------- /apis/beacon/blobs/blobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blobs/blobs.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/attestations.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/attestations.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/blinded_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/blinded_block.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/blinded_blocks.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/blinded_blocks.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/block.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/block.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/blocks.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/blocks.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/header.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/headers.yaml -------------------------------------------------------------------------------- /apis/beacon/blocks/root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/blocks/root.yaml -------------------------------------------------------------------------------- /apis/beacon/genesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/genesis.yaml -------------------------------------------------------------------------------- /apis/beacon/light_client/bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/light_client/bootstrap.yaml -------------------------------------------------------------------------------- /apis/beacon/light_client/finality_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/light_client/finality_update.yaml -------------------------------------------------------------------------------- /apis/beacon/light_client/optimistic_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/light_client/optimistic_update.yaml -------------------------------------------------------------------------------- /apis/beacon/light_client/updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/light_client/updates.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/attestations.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/attestations.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/attester_slashings.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/attester_slashings.v2.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/bls_to_execution_changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/bls_to_execution_changes.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/proposer_slashings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/proposer_slashings.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/sync_committees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/sync_committees.yaml -------------------------------------------------------------------------------- /apis/beacon/pool/voluntary_exits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/pool/voluntary_exits.yaml -------------------------------------------------------------------------------- /apis/beacon/rewards/attestations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/rewards/attestations.yaml -------------------------------------------------------------------------------- /apis/beacon/rewards/blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/rewards/blocks.yaml -------------------------------------------------------------------------------- /apis/beacon/rewards/sync_committee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/rewards/sync_committee.yaml -------------------------------------------------------------------------------- /apis/beacon/states/committee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/committee.yaml -------------------------------------------------------------------------------- /apis/beacon/states/finality_checkpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/finality_checkpoints.yaml -------------------------------------------------------------------------------- /apis/beacon/states/fork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/fork.yaml -------------------------------------------------------------------------------- /apis/beacon/states/pending_consolidations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/pending_consolidations.yaml -------------------------------------------------------------------------------- /apis/beacon/states/pending_deposits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/pending_deposits.yaml -------------------------------------------------------------------------------- /apis/beacon/states/pending_partial_withdrawals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/pending_partial_withdrawals.yaml -------------------------------------------------------------------------------- /apis/beacon/states/proposer_lookahead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/proposer_lookahead.yaml -------------------------------------------------------------------------------- /apis/beacon/states/randao.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/randao.yaml -------------------------------------------------------------------------------- /apis/beacon/states/root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/root.yaml -------------------------------------------------------------------------------- /apis/beacon/states/sync_committees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/sync_committees.yaml -------------------------------------------------------------------------------- /apis/beacon/states/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/validator.yaml -------------------------------------------------------------------------------- /apis/beacon/states/validator_balances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/validator_balances.yaml -------------------------------------------------------------------------------- /apis/beacon/states/validator_identities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/validator_identities.yaml -------------------------------------------------------------------------------- /apis/beacon/states/validators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/beacon/states/validators.yaml -------------------------------------------------------------------------------- /apis/config/deposit_contract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/config/deposit_contract.yaml -------------------------------------------------------------------------------- /apis/config/fork_schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/config/fork_schedule.yaml -------------------------------------------------------------------------------- /apis/config/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/config/spec.yaml -------------------------------------------------------------------------------- /apis/debug/data_column_sidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/debug/data_column_sidecars.yaml -------------------------------------------------------------------------------- /apis/debug/fork_choice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/debug/fork_choice.yaml -------------------------------------------------------------------------------- /apis/debug/heads.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/debug/heads.v2.yaml -------------------------------------------------------------------------------- /apis/debug/state.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/debug/state.v2.yaml -------------------------------------------------------------------------------- /apis/eventstream/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/eventstream/index.yaml -------------------------------------------------------------------------------- /apis/node/health.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/health.yaml -------------------------------------------------------------------------------- /apis/node/identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/identity.yaml -------------------------------------------------------------------------------- /apis/node/peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/peer.yaml -------------------------------------------------------------------------------- /apis/node/peer_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/peer_count.yaml -------------------------------------------------------------------------------- /apis/node/peers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/peers.yaml -------------------------------------------------------------------------------- /apis/node/syncing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/syncing.yaml -------------------------------------------------------------------------------- /apis/node/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/node/version.yaml -------------------------------------------------------------------------------- /apis/validator/aggregate_and_proofs.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/aggregate_and_proofs.v2.yaml -------------------------------------------------------------------------------- /apis/validator/aggregate_attestation.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/aggregate_attestation.v2.yaml -------------------------------------------------------------------------------- /apis/validator/attestation_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/attestation_data.yaml -------------------------------------------------------------------------------- /apis/validator/beacon_committee_selections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/beacon_committee_selections.yaml -------------------------------------------------------------------------------- /apis/validator/beacon_committee_subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/beacon_committee_subscriptions.yaml -------------------------------------------------------------------------------- /apis/validator/block.v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/block.v3.yaml -------------------------------------------------------------------------------- /apis/validator/duties/attester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/duties/attester.yaml -------------------------------------------------------------------------------- /apis/validator/duties/proposer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/duties/proposer.yaml -------------------------------------------------------------------------------- /apis/validator/duties/sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/duties/sync.yaml -------------------------------------------------------------------------------- /apis/validator/liveness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/liveness.yaml -------------------------------------------------------------------------------- /apis/validator/prepare_beacon_proposer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/prepare_beacon_proposer.yaml -------------------------------------------------------------------------------- /apis/validator/register_validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/register_validator.yaml -------------------------------------------------------------------------------- /apis/validator/sync_committee_contribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/sync_committee_contribution.yaml -------------------------------------------------------------------------------- /apis/validator/sync_committee_contribution_and_proof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/sync_committee_contribution_and_proof.yaml -------------------------------------------------------------------------------- /apis/validator/sync_committee_selections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/sync_committee_selections.yaml -------------------------------------------------------------------------------- /apis/validator/sync_committee_subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/apis/validator/sync_committee_subscriptions.yaml -------------------------------------------------------------------------------- /assets/ethereum_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/assets/ethereum_logo.png -------------------------------------------------------------------------------- /beacon-node-oapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/beacon-node-oapi.yaml -------------------------------------------------------------------------------- /dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dictionary.dic -------------------------------------------------------------------------------- /dist/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/favicon-16x16.png -------------------------------------------------------------------------------- /dist/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/favicon-32x32.png -------------------------------------------------------------------------------- /dist/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/oauth2-redirect.html -------------------------------------------------------------------------------- /dist/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-bundle.js -------------------------------------------------------------------------------- /dist/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /dist/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /dist/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /dist/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /dist/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /dist/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /dist/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /dist/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui.css -------------------------------------------------------------------------------- /dist/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui.css.map -------------------------------------------------------------------------------- /dist/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui.js -------------------------------------------------------------------------------- /dist/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/swagger-ui.js.map -------------------------------------------------------------------------------- /dist/theme-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/dist/theme-material.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/index.html -------------------------------------------------------------------------------- /params/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/params/index.yaml -------------------------------------------------------------------------------- /spellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/spellcheck.yaml -------------------------------------------------------------------------------- /types/altair/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/block.yaml -------------------------------------------------------------------------------- /types/altair/epoch_participation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/epoch_participation.yaml -------------------------------------------------------------------------------- /types/altair/light_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/light_client.yaml -------------------------------------------------------------------------------- /types/altair/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/state.yaml -------------------------------------------------------------------------------- /types/altair/sync_aggregate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/sync_aggregate.yaml -------------------------------------------------------------------------------- /types/altair/sync_committee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/altair/sync_committee.yaml -------------------------------------------------------------------------------- /types/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/api.yaml -------------------------------------------------------------------------------- /types/bellatrix/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/bellatrix/block.yaml -------------------------------------------------------------------------------- /types/bellatrix/execution_payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/bellatrix/execution_payload.yaml -------------------------------------------------------------------------------- /types/bellatrix/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/bellatrix/state.yaml -------------------------------------------------------------------------------- /types/bellatrix/transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/bellatrix/transactions.yaml -------------------------------------------------------------------------------- /types/capella/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/block.yaml -------------------------------------------------------------------------------- /types/capella/bls_to_execution_change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/bls_to_execution_change.yaml -------------------------------------------------------------------------------- /types/capella/execution_payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/execution_payload.yaml -------------------------------------------------------------------------------- /types/capella/historical_summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/historical_summary.yaml -------------------------------------------------------------------------------- /types/capella/light_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/light_client.yaml -------------------------------------------------------------------------------- /types/capella/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/state.yaml -------------------------------------------------------------------------------- /types/capella/withdrawal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/withdrawal.yaml -------------------------------------------------------------------------------- /types/capella/withdrawals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/capella/withdrawals.yaml -------------------------------------------------------------------------------- /types/deneb/blob_sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/blob_sidecar.yaml -------------------------------------------------------------------------------- /types/deneb/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/block.yaml -------------------------------------------------------------------------------- /types/deneb/block_contents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/block_contents.yaml -------------------------------------------------------------------------------- /types/deneb/execution_payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/execution_payload.yaml -------------------------------------------------------------------------------- /types/deneb/light_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/light_client.yaml -------------------------------------------------------------------------------- /types/deneb/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/deneb/state.yaml -------------------------------------------------------------------------------- /types/duty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/duty.yaml -------------------------------------------------------------------------------- /types/electra/attestation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/attestation.yaml -------------------------------------------------------------------------------- /types/electra/attester_slashing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/attester_slashing.yaml -------------------------------------------------------------------------------- /types/electra/blob_sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/blob_sidecar.yaml -------------------------------------------------------------------------------- /types/electra/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/block.yaml -------------------------------------------------------------------------------- /types/electra/block_contents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/block_contents.yaml -------------------------------------------------------------------------------- /types/electra/consolidation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/consolidation.yaml -------------------------------------------------------------------------------- /types/electra/deposit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/deposit.yaml -------------------------------------------------------------------------------- /types/electra/execution_requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/execution_requests.yaml -------------------------------------------------------------------------------- /types/electra/light_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/light_client.yaml -------------------------------------------------------------------------------- /types/electra/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/state.yaml -------------------------------------------------------------------------------- /types/electra/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/validator.yaml -------------------------------------------------------------------------------- /types/electra/withdrawal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/electra/withdrawal.yaml -------------------------------------------------------------------------------- /types/fork_choice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/fork_choice.yaml -------------------------------------------------------------------------------- /types/fulu/block_contents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/fulu/block_contents.yaml -------------------------------------------------------------------------------- /types/fulu/data_column_sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/fulu/data_column_sidecar.yaml -------------------------------------------------------------------------------- /types/fulu/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/fulu/state.yaml -------------------------------------------------------------------------------- /types/http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/http.yaml -------------------------------------------------------------------------------- /types/misc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/misc.yaml -------------------------------------------------------------------------------- /types/p2p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/p2p.yaml -------------------------------------------------------------------------------- /types/phase0/attestation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/attestation.yaml -------------------------------------------------------------------------------- /types/phase0/attestation_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/attestation_data.yaml -------------------------------------------------------------------------------- /types/phase0/attester_slashing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/attester_slashing.yaml -------------------------------------------------------------------------------- /types/phase0/block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/block.yaml -------------------------------------------------------------------------------- /types/phase0/deposit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/deposit.yaml -------------------------------------------------------------------------------- /types/phase0/eth1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/eth1.yaml -------------------------------------------------------------------------------- /types/phase0/proposer_slashing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/proposer_slashing.yaml -------------------------------------------------------------------------------- /types/phase0/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/state.yaml -------------------------------------------------------------------------------- /types/phase0/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/validator.yaml -------------------------------------------------------------------------------- /types/phase0/voluntary_exit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/phase0/voluntary_exit.yaml -------------------------------------------------------------------------------- /types/primitive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/primitive.yaml -------------------------------------------------------------------------------- /types/registration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/registration.yaml -------------------------------------------------------------------------------- /types/rewards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/rewards.yaml -------------------------------------------------------------------------------- /types/selection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/types/selection.yaml -------------------------------------------------------------------------------- /validator-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/validator-flow.md -------------------------------------------------------------------------------- /wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/beacon-APIs/HEAD/wordlist.txt --------------------------------------------------------------------------------