2023-01-20 14:14:37 +00:00
|
|
|
# Copyright (c) 2018-2023 Status Research & Development GmbH
|
2021-08-03 15:17:11 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2023-01-20 14:14:37 +00:00
|
|
|
{.push raises: [].}
|
2021-08-03 15:17:11 +00:00
|
|
|
|
|
|
|
import
|
2021-08-27 09:00:06 +00:00
|
|
|
chronos, presto/client,
|
2021-08-03 15:17:11 +00:00
|
|
|
"."/[rest_types, eth2_rest_serialization]
|
|
|
|
|
2021-08-27 09:00:06 +00:00
|
|
|
export chronos, client, rest_types, eth2_rest_serialization
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getAttesterDuties*(
|
|
|
|
epoch: Epoch,
|
|
|
|
body: seq[ValidatorIndex]
|
|
|
|
): RestResponse[GetAttesterDutiesResponse] {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/duties/attester/{epoch}",
|
|
|
|
meth: MethodPost.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getAttesterDuties
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getAttesterDutiesPlain*(
|
|
|
|
epoch: Epoch,
|
|
|
|
body: seq[ValidatorIndex]
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/duties/attester/{epoch}",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getAttesterDuties
|
|
|
|
|
|
|
|
proc getProposerDuties*(
|
|
|
|
epoch: Epoch
|
|
|
|
): RestResponse[GetProposerDutiesResponse] {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/duties/proposer/{epoch}",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getProposerDuties
|
|
|
|
|
|
|
|
proc getProposerDutiesPlain*(
|
|
|
|
epoch: Epoch
|
|
|
|
): RestPlainResponse {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/duties/proposer/{epoch}",
|
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getProposerDuties
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getSyncCommitteeDuties*(
|
|
|
|
epoch: Epoch,
|
|
|
|
body: seq[ValidatorIndex]
|
|
|
|
): RestResponse[GetSyncCommitteeDutiesResponse] {.
|
2021-10-19 17:44:05 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/duties/sync/{epoch}",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getSyncCommitteeDuties
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getSyncCommitteeDutiesPlain*(
|
|
|
|
epoch: Epoch,
|
|
|
|
body: seq[ValidatorIndex]
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/duties/sync/{epoch}",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getSyncCommitteeDuties
|
|
|
|
|
|
|
|
proc produceBlockV2*(
|
|
|
|
slot: Slot,
|
|
|
|
randao_reveal: ValidatorSig,
|
|
|
|
graffiti: GraffitiBytes
|
|
|
|
): RestResponse[ProduceBlockResponseV2] {.
|
|
|
|
rest, endpoint: "/eth/v2/validator/blocks/{slot}",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceBlockV2
|
|
|
|
|
|
|
|
proc produceBlockV2Plain*(
|
|
|
|
slot: Slot,
|
|
|
|
randao_reveal: ValidatorSig,
|
|
|
|
graffiti: GraffitiBytes
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v2/validator/blocks/{slot}",
|
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceBlockV2
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc produceBlindedBlock*(
|
|
|
|
slot: Slot,
|
|
|
|
randao_reveal: ValidatorSig,
|
|
|
|
graffiti: GraffitiBytes
|
|
|
|
): RestResponse[ProduceBlindedBlockResponse] {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/blinded_blocks/{slot}",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceBlindedBlock
|
|
|
|
|
|
|
|
proc produceBlindedBlockPlain*(
|
|
|
|
slot: Slot,
|
|
|
|
randao_reveal: ValidatorSig,
|
|
|
|
graffiti: GraffitiBytes
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/blinded_blocks/{slot}",
|
|
|
|
meth: MethodGet.}
|
2022-11-24 09:14:05 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceBlindedBlock
|
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc produceAttestationData*(
|
|
|
|
slot: Slot,
|
|
|
|
committee_index: CommitteeIndex
|
|
|
|
): RestResponse[ProduceAttestationDataResponse] {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/attestation_data",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceAttestationData
|
|
|
|
|
|
|
|
proc produceAttestationDataPlain*(
|
|
|
|
slot: Slot,
|
|
|
|
committee_index: CommitteeIndex
|
|
|
|
): RestPlainResponse {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/attestation_data",
|
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceAttestationData
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getAggregatedAttestation*(
|
|
|
|
attestation_data_root: Eth2Digest,
|
|
|
|
slot: Slot
|
|
|
|
): RestResponse[GetAggregatedAttestationResponse] {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/aggregate_attestation"
|
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getAggregatedAttestation
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc getAggregatedAttestationPlain*(
|
|
|
|
attestation_data_root: Eth2Digest,
|
|
|
|
slot: Slot
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/aggregate_attestation"
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/getAggregatedAttestation
|
|
|
|
|
|
|
|
proc publishAggregateAndProofs*(
|
|
|
|
body: seq[SignedAggregateAndProof]
|
|
|
|
): RestPlainResponse {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/aggregate_and_proofs",
|
|
|
|
meth: MethodPost.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/publishAggregateAndProofs
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc prepareBeaconCommitteeSubnet*(
|
|
|
|
body: seq[RestCommitteeSubscription]
|
|
|
|
): RestPlainResponse {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/beacon_committee_subscriptions",
|
|
|
|
meth: MethodPost.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/prepareBeaconCommitteeSubnet
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc prepareSyncCommitteeSubnets*(
|
|
|
|
body: seq[RestSyncCommitteeSubscription]
|
|
|
|
): RestPlainResponse {.
|
2021-10-19 17:44:05 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/sync_committee_subscriptions",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/prepareSyncCommitteeSubnets
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2023-03-03 20:20:01 +00:00
|
|
|
proc produceSyncCommitteeContribution*(
|
|
|
|
slot: Slot,
|
|
|
|
subcommittee_index: SyncSubcommitteeIndex,
|
|
|
|
beacon_block_root: Eth2Digest
|
|
|
|
): RestResponse[ProduceSyncCommitteeContributionResponse] {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/sync_committee_contribution",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceSyncCommitteeContribution
|
|
|
|
|
|
|
|
proc produceSyncCommitteeContributionPlain*(
|
|
|
|
slot: Slot,
|
|
|
|
subcommittee_index: SyncSubcommitteeIndex,
|
|
|
|
beacon_block_root: Eth2Digest
|
|
|
|
): RestPlainResponse {.
|
2021-10-19 17:44:05 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/sync_committee_contribution",
|
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/produceSyncCommitteeContribution
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2021-10-19 17:44:05 +00:00
|
|
|
proc publishContributionAndProofs*(body: seq[RestSignedContributionAndProof]): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/contribution_and_proofs",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/publishContributionAndProofs
|
2022-07-25 20:12:53 +00:00
|
|
|
|
2022-08-09 09:53:02 +00:00
|
|
|
proc prepareBeaconProposer*(body: seq[PrepareBeaconProposer]): RestPlainResponse {.
|
2022-07-25 20:12:53 +00:00
|
|
|
rest, endpoint: "/eth/v1/validator/prepare_beacon_proposer",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/ValidatorRequiredApi/prepareBeaconProposer
|
2022-10-29 09:00:51 +00:00
|
|
|
|
|
|
|
proc registerValidator*(body: seq[SignedValidatorRegistrationV1]): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/register_validator",
|
|
|
|
meth: MethodPost.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Validator/registerValidator
|
2022-12-06 11:29:00 +00:00
|
|
|
|
|
|
|
proc getValidatorsLiveness*(epoch: Epoch,
|
|
|
|
body: seq[ValidatorIndex]
|
|
|
|
): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v1/validator/liveness/{epoch}",
|
|
|
|
meth: MethodPost.}
|