Documentation ¶
Index ¶
- type StrictServerImpl
- func (srv *StrictServerImpl) GetConsensusAccounts(ctx context.Context, request apiTypes.GetConsensusAccountsRequestObject) (apiTypes.GetConsensusAccountsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusAccountsAddress(ctx context.Context, request apiTypes.GetConsensusAccountsAddressRequestObject) (apiTypes.GetConsensusAccountsAddressResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusAccountsAddressDebondingDelegations(ctx context.Context, ...) (apiTypes.GetConsensusAccountsAddressDebondingDelegationsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusAccountsAddressDebondingDelegationsTo(ctx context.Context, ...) (apiTypes.GetConsensusAccountsAddressDebondingDelegationsToResponseObject, ...)
- func (srv *StrictServerImpl) GetConsensusAccountsAddressDelegations(ctx context.Context, ...) (apiTypes.GetConsensusAccountsAddressDelegationsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusAccountsAddressDelegationsTo(ctx context.Context, ...) (apiTypes.GetConsensusAccountsAddressDelegationsToResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusBlocks(ctx context.Context, request apiTypes.GetConsensusBlocksRequestObject) (apiTypes.GetConsensusBlocksResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusBlocksHeight(ctx context.Context, request apiTypes.GetConsensusBlocksHeightRequestObject) (apiTypes.GetConsensusBlocksHeightResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEntities(ctx context.Context, request apiTypes.GetConsensusEntitiesRequestObject) (apiTypes.GetConsensusEntitiesResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEntitiesEntityId(ctx context.Context, ...) (apiTypes.GetConsensusEntitiesEntityIdResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEntitiesEntityIdNodes(ctx context.Context, ...) (apiTypes.GetConsensusEntitiesEntityIdNodesResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEntitiesEntityIdNodesNodeId(ctx context.Context, ...) (apiTypes.GetConsensusEntitiesEntityIdNodesNodeIdResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEpochs(ctx context.Context, request apiTypes.GetConsensusEpochsRequestObject) (apiTypes.GetConsensusEpochsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEpochsEpoch(ctx context.Context, request apiTypes.GetConsensusEpochsEpochRequestObject) (apiTypes.GetConsensusEpochsEpochResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusEvents(ctx context.Context, request apiTypes.GetConsensusEventsRequestObject) (apiTypes.GetConsensusEventsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusProposals(ctx context.Context, request apiTypes.GetConsensusProposalsRequestObject) (apiTypes.GetConsensusProposalsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusProposalsProposalId(ctx context.Context, ...) (apiTypes.GetConsensusProposalsProposalIdResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusProposalsProposalIdVotes(ctx context.Context, ...) (apiTypes.GetConsensusProposalsProposalIdVotesResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusTransactions(ctx context.Context, request apiTypes.GetConsensusTransactionsRequestObject) (apiTypes.GetConsensusTransactionsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusTransactionsTxHash(ctx context.Context, ...) (apiTypes.GetConsensusTransactionsTxHashResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusValidators(ctx context.Context, request apiTypes.GetConsensusValidatorsRequestObject) (apiTypes.GetConsensusValidatorsResponseObject, error)
- func (srv *StrictServerImpl) GetConsensusValidatorsEntityId(ctx context.Context, ...) (apiTypes.GetConsensusValidatorsEntityIdResponseObject, error)
- func (srv *StrictServerImpl) GetLayerStatsActiveAccounts(ctx context.Context, request apiTypes.GetLayerStatsActiveAccountsRequestObject) (apiTypes.GetLayerStatsActiveAccountsResponseObject, error)
- func (srv *StrictServerImpl) GetLayerStatsTxVolume(ctx context.Context, request apiTypes.GetLayerStatsTxVolumeRequestObject) (apiTypes.GetLayerStatsTxVolumeResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeAccountsAddress(ctx context.Context, request apiTypes.GetRuntimeAccountsAddressRequestObject) (apiTypes.GetRuntimeAccountsAddressResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeBlocks(ctx context.Context, request apiTypes.GetRuntimeBlocksRequestObject) (apiTypes.GetRuntimeBlocksResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeEvents(ctx context.Context, request apiTypes.GetRuntimeEventsRequestObject) (apiTypes.GetRuntimeEventsResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeEvmTokens(ctx context.Context, request apiTypes.GetRuntimeEvmTokensRequestObject) (apiTypes.GetRuntimeEvmTokensResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeEvmTokensAddress(ctx context.Context, request apiTypes.GetRuntimeEvmTokensAddressRequestObject) (apiTypes.GetRuntimeEvmTokensAddressResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeEvmTokensAddressHolders(ctx context.Context, ...) (apiTypes.GetRuntimeEvmTokensAddressHoldersResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeStatus(ctx context.Context, request apiTypes.GetRuntimeStatusRequestObject) (apiTypes.GetRuntimeStatusResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeTransactions(ctx context.Context, request apiTypes.GetRuntimeTransactionsRequestObject) (apiTypes.GetRuntimeTransactionsResponseObject, error)
- func (srv *StrictServerImpl) GetRuntimeTransactionsTxHash(ctx context.Context, ...) (apiTypes.GetRuntimeTransactionsTxHashResponseObject, error)
- func (srv *StrictServerImpl) GetStatus(ctx context.Context, request apiTypes.GetStatusRequestObject) (apiTypes.GetStatusResponseObject, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StrictServerImpl ¶
type StrictServerImpl struct {
// contains filtered or unexported fields
}
StrictServerImpl implements the oapi-codegen StrictServerInterface interface, which exposes our API endpoints as functions with strongly-typed params. This struct is a thin layer over the DB-querying client; it mostly just forwards the inputs and outputs, but sometimes it additionally processes them.
func NewStrictServerImpl ¶
func NewStrictServerImpl(client client.StorageClient, logger log.Logger) *StrictServerImpl
func (*StrictServerImpl) GetConsensusAccounts ¶
func (srv *StrictServerImpl) GetConsensusAccounts(ctx context.Context, request apiTypes.GetConsensusAccountsRequestObject) (apiTypes.GetConsensusAccountsResponseObject, error)
func (*StrictServerImpl) GetConsensusAccountsAddress ¶
func (srv *StrictServerImpl) GetConsensusAccountsAddress(ctx context.Context, request apiTypes.GetConsensusAccountsAddressRequestObject) (apiTypes.GetConsensusAccountsAddressResponseObject, error)
func (*StrictServerImpl) GetConsensusAccountsAddressDebondingDelegations ¶
func (srv *StrictServerImpl) GetConsensusAccountsAddressDebondingDelegations(ctx context.Context, request apiTypes.GetConsensusAccountsAddressDebondingDelegationsRequestObject) (apiTypes.GetConsensusAccountsAddressDebondingDelegationsResponseObject, error)
func (*StrictServerImpl) GetConsensusAccountsAddressDebondingDelegationsTo ¶
func (srv *StrictServerImpl) GetConsensusAccountsAddressDebondingDelegationsTo(ctx context.Context, request apiTypes.GetConsensusAccountsAddressDebondingDelegationsToRequestObject) (apiTypes.GetConsensusAccountsAddressDebondingDelegationsToResponseObject, error)
func (*StrictServerImpl) GetConsensusAccountsAddressDelegations ¶
func (srv *StrictServerImpl) GetConsensusAccountsAddressDelegations(ctx context.Context, request apiTypes.GetConsensusAccountsAddressDelegationsRequestObject) (apiTypes.GetConsensusAccountsAddressDelegationsResponseObject, error)
func (*StrictServerImpl) GetConsensusAccountsAddressDelegationsTo ¶
func (srv *StrictServerImpl) GetConsensusAccountsAddressDelegationsTo(ctx context.Context, request apiTypes.GetConsensusAccountsAddressDelegationsToRequestObject) (apiTypes.GetConsensusAccountsAddressDelegationsToResponseObject, error)
func (*StrictServerImpl) GetConsensusBlocks ¶
func (srv *StrictServerImpl) GetConsensusBlocks(ctx context.Context, request apiTypes.GetConsensusBlocksRequestObject) (apiTypes.GetConsensusBlocksResponseObject, error)
func (*StrictServerImpl) GetConsensusBlocksHeight ¶
func (srv *StrictServerImpl) GetConsensusBlocksHeight(ctx context.Context, request apiTypes.GetConsensusBlocksHeightRequestObject) (apiTypes.GetConsensusBlocksHeightResponseObject, error)
func (*StrictServerImpl) GetConsensusEntities ¶
func (srv *StrictServerImpl) GetConsensusEntities(ctx context.Context, request apiTypes.GetConsensusEntitiesRequestObject) (apiTypes.GetConsensusEntitiesResponseObject, error)
func (*StrictServerImpl) GetConsensusEntitiesEntityId ¶
func (srv *StrictServerImpl) GetConsensusEntitiesEntityId(ctx context.Context, request apiTypes.GetConsensusEntitiesEntityIdRequestObject) (apiTypes.GetConsensusEntitiesEntityIdResponseObject, error)
func (*StrictServerImpl) GetConsensusEntitiesEntityIdNodes ¶
func (srv *StrictServerImpl) GetConsensusEntitiesEntityIdNodes(ctx context.Context, request apiTypes.GetConsensusEntitiesEntityIdNodesRequestObject) (apiTypes.GetConsensusEntitiesEntityIdNodesResponseObject, error)
func (*StrictServerImpl) GetConsensusEntitiesEntityIdNodesNodeId ¶
func (srv *StrictServerImpl) GetConsensusEntitiesEntityIdNodesNodeId(ctx context.Context, request apiTypes.GetConsensusEntitiesEntityIdNodesNodeIdRequestObject) (apiTypes.GetConsensusEntitiesEntityIdNodesNodeIdResponseObject, error)
func (*StrictServerImpl) GetConsensusEpochs ¶
func (srv *StrictServerImpl) GetConsensusEpochs(ctx context.Context, request apiTypes.GetConsensusEpochsRequestObject) (apiTypes.GetConsensusEpochsResponseObject, error)
func (*StrictServerImpl) GetConsensusEpochsEpoch ¶
func (srv *StrictServerImpl) GetConsensusEpochsEpoch(ctx context.Context, request apiTypes.GetConsensusEpochsEpochRequestObject) (apiTypes.GetConsensusEpochsEpochResponseObject, error)
func (*StrictServerImpl) GetConsensusEvents ¶
func (srv *StrictServerImpl) GetConsensusEvents(ctx context.Context, request apiTypes.GetConsensusEventsRequestObject) (apiTypes.GetConsensusEventsResponseObject, error)
func (*StrictServerImpl) GetConsensusProposals ¶
func (srv *StrictServerImpl) GetConsensusProposals(ctx context.Context, request apiTypes.GetConsensusProposalsRequestObject) (apiTypes.GetConsensusProposalsResponseObject, error)
func (*StrictServerImpl) GetConsensusProposalsProposalId ¶
func (srv *StrictServerImpl) GetConsensusProposalsProposalId(ctx context.Context, request apiTypes.GetConsensusProposalsProposalIdRequestObject) (apiTypes.GetConsensusProposalsProposalIdResponseObject, error)
func (*StrictServerImpl) GetConsensusProposalsProposalIdVotes ¶
func (srv *StrictServerImpl) GetConsensusProposalsProposalIdVotes(ctx context.Context, request apiTypes.GetConsensusProposalsProposalIdVotesRequestObject) (apiTypes.GetConsensusProposalsProposalIdVotesResponseObject, error)
func (*StrictServerImpl) GetConsensusTransactions ¶
func (srv *StrictServerImpl) GetConsensusTransactions(ctx context.Context, request apiTypes.GetConsensusTransactionsRequestObject) (apiTypes.GetConsensusTransactionsResponseObject, error)
func (*StrictServerImpl) GetConsensusTransactionsTxHash ¶
func (srv *StrictServerImpl) GetConsensusTransactionsTxHash(ctx context.Context, request apiTypes.GetConsensusTransactionsTxHashRequestObject) (apiTypes.GetConsensusTransactionsTxHashResponseObject, error)
func (*StrictServerImpl) GetConsensusValidators ¶
func (srv *StrictServerImpl) GetConsensusValidators(ctx context.Context, request apiTypes.GetConsensusValidatorsRequestObject) (apiTypes.GetConsensusValidatorsResponseObject, error)
func (*StrictServerImpl) GetConsensusValidatorsEntityId ¶
func (srv *StrictServerImpl) GetConsensusValidatorsEntityId(ctx context.Context, request apiTypes.GetConsensusValidatorsEntityIdRequestObject) (apiTypes.GetConsensusValidatorsEntityIdResponseObject, error)
func (*StrictServerImpl) GetLayerStatsActiveAccounts ¶
func (srv *StrictServerImpl) GetLayerStatsActiveAccounts(ctx context.Context, request apiTypes.GetLayerStatsActiveAccountsRequestObject) (apiTypes.GetLayerStatsActiveAccountsResponseObject, error)
func (*StrictServerImpl) GetLayerStatsTxVolume ¶
func (srv *StrictServerImpl) GetLayerStatsTxVolume(ctx context.Context, request apiTypes.GetLayerStatsTxVolumeRequestObject) (apiTypes.GetLayerStatsTxVolumeResponseObject, error)
func (*StrictServerImpl) GetRuntimeAccountsAddress ¶
func (srv *StrictServerImpl) GetRuntimeAccountsAddress(ctx context.Context, request apiTypes.GetRuntimeAccountsAddressRequestObject) (apiTypes.GetRuntimeAccountsAddressResponseObject, error)
func (*StrictServerImpl) GetRuntimeBlocks ¶
func (srv *StrictServerImpl) GetRuntimeBlocks(ctx context.Context, request apiTypes.GetRuntimeBlocksRequestObject) (apiTypes.GetRuntimeBlocksResponseObject, error)
func (*StrictServerImpl) GetRuntimeEvents ¶
func (srv *StrictServerImpl) GetRuntimeEvents(ctx context.Context, request apiTypes.GetRuntimeEventsRequestObject) (apiTypes.GetRuntimeEventsResponseObject, error)
func (*StrictServerImpl) GetRuntimeEvmTokens ¶
func (srv *StrictServerImpl) GetRuntimeEvmTokens(ctx context.Context, request apiTypes.GetRuntimeEvmTokensRequestObject) (apiTypes.GetRuntimeEvmTokensResponseObject, error)
func (*StrictServerImpl) GetRuntimeEvmTokensAddress ¶
func (srv *StrictServerImpl) GetRuntimeEvmTokensAddress(ctx context.Context, request apiTypes.GetRuntimeEvmTokensAddressRequestObject) (apiTypes.GetRuntimeEvmTokensAddressResponseObject, error)
func (*StrictServerImpl) GetRuntimeEvmTokensAddressHolders ¶
func (srv *StrictServerImpl) GetRuntimeEvmTokensAddressHolders(ctx context.Context, request apiTypes.GetRuntimeEvmTokensAddressHoldersRequestObject) (apiTypes.GetRuntimeEvmTokensAddressHoldersResponseObject, error)
func (*StrictServerImpl) GetRuntimeStatus ¶
func (srv *StrictServerImpl) GetRuntimeStatus(ctx context.Context, request apiTypes.GetRuntimeStatusRequestObject) (apiTypes.GetRuntimeStatusResponseObject, error)
func (*StrictServerImpl) GetRuntimeTransactions ¶
func (srv *StrictServerImpl) GetRuntimeTransactions(ctx context.Context, request apiTypes.GetRuntimeTransactionsRequestObject) (apiTypes.GetRuntimeTransactionsResponseObject, error)
func (*StrictServerImpl) GetRuntimeTransactionsTxHash ¶
func (srv *StrictServerImpl) GetRuntimeTransactionsTxHash(ctx context.Context, request apiTypes.GetRuntimeTransactionsTxHashRequestObject) (apiTypes.GetRuntimeTransactionsTxHashResponseObject, error)
func (*StrictServerImpl) GetStatus ¶
func (srv *StrictServerImpl) GetStatus(ctx context.Context, request apiTypes.GetStatusRequestObject) (apiTypes.GetStatusResponseObject, error)
Click to show internal directories.
Click to hide internal directories.