import '@polkadot/api-base/types/calls'; import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types'; import type { Bytes, Null, Option, Vec, u32 } from '@polkadot/types-codec'; import type { AnyNumber, ITuple } from '@polkadot/types-codec/types'; import type { BabeEquivocationProof, BabeGenesisConfiguration, Epoch, OpaqueKeyOwnershipProof } from '@polkadot/types/interfaces/babe'; import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder'; import type { BlockHash } from '@polkadot/types/interfaces/chain'; import type { AuthorityId } from '@polkadot/types/interfaces/consensus'; import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics'; import type { AuthorityList, GrandpaEquivocationProof, SetId } from '@polkadot/types/interfaces/grandpa'; import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata'; import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment'; import type { AccountId, Balance, Block, Header, Index, KeyTypeId, Slot, Weight } from '@polkadot/types/interfaces/runtime'; import type { RuntimeVersion } from '@polkadot/types/interfaces/state'; import type { ApplyExtrinsicResult } from '@polkadot/types/interfaces/system'; import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue'; import type { IExtrinsic, Observable } from '@polkadot/types/types'; export type __AugmentedCall = AugmentedCall; export type __DecoratedCallBase = DecoratedCallBase; declare module '@polkadot/api-base/types/calls' { interface AugmentedCalls { /** 0xbc9d89904f5b923f/1 */ accountNonceApi: { /** * The API to query account nonce (aka transaction index) **/ accountNonce: AugmentedCall Observable>; }; /** 0x687ad44ad37f03c2/1 */ authorityDiscoveryApi: { /** * Retrieve authority identifiers of the current and next authority set. **/ authorities: AugmentedCall Observable>>; }; /** 0xcbca25e39f142387/2 */ babeApi: { /** * Return the genesis configuration for BABE. The configuration is only read on genesis. **/ configuration: AugmentedCall Observable>; /** * Returns information regarding the current epoch. **/ currentEpoch: AugmentedCall Observable>; /** * Returns the slot that started the current epoch. **/ currentEpochStart: AugmentedCall Observable>; /** * Generates a proof of key ownership for the given authority in the current epoch. **/ generateKeyOwnershipProof: AugmentedCall Observable>>; /** * Returns information regarding the next epoch (which was already previously announced). **/ nextEpoch: AugmentedCall Observable>; /** * Submits an unsigned extrinsic to report an equivocation. **/ submitReportEquivocationUnsignedExtrinsic: AugmentedCall Observable>>; }; /** 0x40fe3ad401f8959a/6 */ blockBuilder: { /** * Apply the given extrinsic. **/ applyExtrinsic: AugmentedCall Observable>; /** * Check that the inherents are valid. **/ checkInherents: AugmentedCall Observable>; /** * Finish the current block. **/ finalizeBlock: AugmentedCall Observable
>; /** * Generate inherent extrinsics. **/ inherentExtrinsics: AugmentedCall Observable>>; }; /** 0xdf6acb689907609b/4 */ core: { /** * Execute the given block. **/ executeBlock: AugmentedCall Observable>; /** * Initialize a block with the given header. **/ initializeBlock: AugmentedCall Observable>; /** * Returns the version of the runtime. **/ version: AugmentedCall Observable>; }; /** 0xed99c5acb25eedf5/3 */ grandpaApi: { /** * Get current GRANDPA authority set id. **/ currentSetId: AugmentedCall Observable>; /** * Generates a proof of key ownership for the given authority in the given set. **/ generateKeyOwnershipProof: AugmentedCall Observable>>; /** * Get the current GRANDPA authorities and weights. This should not change except for when changes are scheduled and the corresponding delay has passed. **/ grandpaAuthorities: AugmentedCall Observable>; /** * Submits an unsigned extrinsic to report an equivocation. **/ submitReportEquivocationUnsignedExtrinsic: AugmentedCall Observable>>; }; /** 0x37e397fc7c91f5e4/1 */ metadata: { /** * Returns the metadata of a runtime **/ metadata: AugmentedCall Observable>; }; /** 0xf78b278be53f454c/2 */ offchainWorkerApi: { /** * Starts the off-chain task for given block header. **/ offchainWorker: AugmentedCall Observable>; }; /** 0xab3c0572291feb8b/1 */ sessionKeys: { /** * Decode the given public session keys. **/ decodeSessionKeys: AugmentedCall Observable>>>>; /** * Generate a set of session keys with optionally using the given seed. **/ generateSessionKeys: AugmentedCall | null | Uint8Array | Bytes | string) => Observable>; }; /** 0x18ef58a3b67ba770/1 */ stakingApi: { /** * Returns the nominations quota for a nominator with a given balance. **/ nominationsQuota: AugmentedCall Observable>; }; /** 0xd2bc9897eed08f15/3 */ taggedTransactionQueue: { /** * Validate the transaction. **/ validateTransaction: AugmentedCall Observable>; }; /** 0x37c8bb1350a9a2a8/3 */ transactionPaymentApi: { /** * The transaction fee details **/ queryFeeDetails: AugmentedCall Observable>; /** * The transaction info **/ queryInfo: AugmentedCall Observable>; /** * Query the output of the current LengthToFee given some input **/ queryLengthToFee: AugmentedCall Observable>; /** * Query the output of the current WeightToFee given some input **/ queryWeightToFee: AugmentedCall Observable>; }; } }