@storagehub/api-augment 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/biome.json +2 -9
- package/dist/parachain/index.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-consts.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-errors.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-events.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-query.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-tx.js.map +1 -0
- package/dist/parachain/interfaces/augment-api.js.map +1 -0
- package/dist/parachain/interfaces/augment-types.js.map +1 -0
- package/dist/parachain/interfaces/definitions.js.map +1 -0
- package/dist/parachain/interfaces/index.js.map +1 -0
- package/dist/{interfaces → parachain/interfaces}/lookup.js +1465 -813
- package/dist/parachain/interfaces/lookup.js.map +1 -0
- package/dist/parachain/interfaces/registry.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/parachain/interfaces/types-lookup.js.map +1 -0
- package/dist/parachain/interfaces/types.js.map +1 -0
- package/dist/solochain-evm/index.js +4 -0
- package/dist/solochain-evm/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api.js +10 -0
- package/dist/solochain-evm/interfaces/augment-api.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-types.js +6 -0
- package/dist/solochain-evm/interfaces/augment-types.js.map +1 -0
- package/dist/solochain-evm/interfaces/definitions.js +2 -0
- package/dist/solochain-evm/interfaces/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/index.js +4 -0
- package/dist/solochain-evm/interfaces/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/lookup.js +3744 -0
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/registry.js +6 -0
- package/dist/solochain-evm/interfaces/registry.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/solochain-evm/interfaces/types-lookup.js +6 -0
- package/dist/solochain-evm/interfaces/types-lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/types.js +4 -0
- package/dist/solochain-evm/interfaces/types.js.map +1 -0
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-consts.d.ts +147 -20
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-errors.d.ts +235 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-events.d.ts +542 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-query.d.ts +208 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-rpc.d.ts +61 -4
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-runtime.d.ts +97 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-tx.d.ts +356 -181
- package/dist/types/{interfaces → parachain/interfaces}/augment-types.d.ts +144 -11
- package/dist/types/{interfaces → parachain/interfaces}/lookup.d.ts +1067 -513
- package/dist/types/parachain/interfaces/registry.d.ts +311 -0
- package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/types.d.ts +129 -18
- package/dist/types/{interfaces → parachain/interfaces}/types-lookup.d.ts +1619 -887
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +641 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +1260 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +2058 -0
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +1317 -0
- package/dist/types/solochain-evm/interfaces/augment-api-rpc.d.ts +775 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +535 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +2381 -0
- package/dist/types/solochain-evm/interfaces/augment-api.d.ts +7 -0
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +1418 -0
- package/dist/types/solochain-evm/interfaces/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +3363 -0
- package/dist/types/solochain-evm/interfaces/registry.d.ts +252 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/definitions.d.ts +6 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +319 -0
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +3577 -0
- package/dist/types/solochain-evm/interfaces/types.d.ts +1 -0
- package/metadata-sh-parachain.json +5 -0
- package/metadata-sh-solochain-evm.json +5 -0
- package/package.json +41 -26
- package/scripts/scrapeMetadata.ts +41 -29
- package/src/parachain/index.ts +3 -0
- package/src/{interfaces → parachain/interfaces}/augment-api-consts.ts +147 -20
- package/src/{interfaces → parachain/interfaces}/augment-api-errors.ts +235 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-events.ts +527 -137
- package/src/{interfaces → parachain/interfaces}/augment-api-query.ts +272 -145
- package/src/{interfaces → parachain/interfaces}/augment-api-rpc.ts +123 -5
- package/src/{interfaces → parachain/interfaces}/augment-api-runtime.ts +183 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-tx.ts +374 -182
- package/src/{interfaces → parachain/interfaces}/augment-types.ts +278 -12
- package/src/parachain/interfaces/definitions.ts +1 -0
- package/src/{interfaces → parachain/interfaces}/lookup.ts +1497 -813
- package/src/{interfaces → parachain/interfaces}/registry.ts +176 -98
- package/src/parachain/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/{interfaces → parachain/interfaces}/storagehubclient/types.ts +158 -18
- package/src/{interfaces → parachain/interfaces}/types-lookup.ts +1970 -896
- package/src/solochain-evm/index.ts +3 -0
- package/src/solochain-evm/interfaces/augment-api-consts.ts +655 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +1268 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +1813 -0
- package/src/solochain-evm/interfaces/augment-api-query.ts +1838 -0
- package/src/solochain-evm/interfaces/augment-api-rpc.ts +1319 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +958 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +2818 -0
- package/src/solochain-evm/interfaces/augment-api.ts +10 -0
- package/src/solochain-evm/interfaces/augment-types.ts +2774 -0
- package/src/solochain-evm/interfaces/definitions.ts +1 -0
- package/src/solochain-evm/interfaces/index.ts +4 -0
- package/src/solochain-evm/interfaces/lookup.ts +3788 -0
- package/src/solochain-evm/interfaces/registry.ts +506 -0
- package/src/solochain-evm/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/solochain-evm/interfaces/storagehubclient/index.ts +4 -0
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +391 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +4616 -0
- package/src/solochain-evm/interfaces/types.ts +4 -0
- package/tsconfig.json +17 -20
- package/tsconfig.parachain.json +17 -0
- package/tsconfig.solochain-evm.json +17 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/dist/index.js.map +0 -1
- package/dist/interfaces/augment-api-consts.js.map +0 -1
- package/dist/interfaces/augment-api-errors.js.map +0 -1
- package/dist/interfaces/augment-api-events.js.map +0 -1
- package/dist/interfaces/augment-api-query.js.map +0 -1
- package/dist/interfaces/augment-api-rpc.js.map +0 -1
- package/dist/interfaces/augment-api-runtime.js.map +0 -1
- package/dist/interfaces/augment-api-tx.js.map +0 -1
- package/dist/interfaces/augment-api.js.map +0 -1
- package/dist/interfaces/augment-types.js.map +0 -1
- package/dist/interfaces/definitions.js.map +0 -1
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/lookup.js.map +0 -1
- package/dist/interfaces/registry.js.map +0 -1
- package/dist/interfaces/storagehubclient/definitions.js +0 -7
- package/dist/interfaces/storagehubclient/definitions.js.map +0 -1
- package/dist/interfaces/storagehubclient/index.js.map +0 -1
- package/dist/interfaces/storagehubclient/runtime.js.map +0 -1
- package/dist/interfaces/storagehubclient/types.js.map +0 -1
- package/dist/interfaces/types-lookup.js.map +0 -1
- package/dist/interfaces/types.js.map +0 -1
- package/dist/types/interfaces/registry.d.ts +0 -272
- package/src/interfaces/storagehubclient/definitions.ts +0 -7
- package/storagehub.json +0 -1
- /package/dist/{index.js → parachain/index.js} +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-consts.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-errors.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-events.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-query.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-rpc.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-tx.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/definitions.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/registry.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types-lookup.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types.js +0 -0
- /package/dist/types/{index.d.ts → parachain/index.d.ts} +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/augment-api.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/runtime.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/types.d.ts +0 -0
- /package/{src/index.ts → dist/types/solochain-evm/index.d.ts} +0 -0
- /package/{src/interfaces/definitions.ts → dist/types/solochain-evm/interfaces/definitions.d.ts} +0 -0
- /package/src/{interfaces → parachain/interfaces}/augment-api.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/runtime.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/types.ts +0 -0
|
@@ -19,16 +19,17 @@ import type { StatementKind } from "@polkadot/types/interfaces/claims";
|
|
|
19
19
|
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from "@polkadot/types/interfaces/collective";
|
|
20
20
|
import type { AuthorityId, RawVRFOutput } from "@polkadot/types/interfaces/consensus";
|
|
21
21
|
import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from "@polkadot/types/interfaces/contracts";
|
|
22
|
-
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractConstructorSpecV4, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractContractSpecV5, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEnvironmentV4, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractEventSpecV3, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMessageSpecV3, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractMetadataV5, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from "@polkadot/types/interfaces/contractsAbi";
|
|
22
|
+
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractConstructorSpecV4, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractContractSpecV5, ContractContractSpecV6, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEnvironmentV4, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractEventSpecV3, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMessageSpecV3, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractMetadataV5, ContractMetadataV6, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractReviveProjectInfo, ContractReviveProjectSource, ContractSelector, ContractStorageLayout, ContractTypeSpec } from "@polkadot/types/interfaces/contractsAbi";
|
|
23
23
|
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from "@polkadot/types/interfaces/crowdloan";
|
|
24
24
|
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from "@polkadot/types/interfaces/cumulus";
|
|
25
25
|
import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from "@polkadot/types/interfaces/democracy";
|
|
26
26
|
import type { BlockStats } from "@polkadot/types/interfaces/dev";
|
|
27
|
+
import type { CallDryRunEffects, DispatchResultWithPostInfo, PostDispatchInfo, XcmDryRunApiError, XcmDryRunEffects } from "@polkadot/types/interfaces/dryRunApi";
|
|
27
28
|
import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from "@polkadot/types/interfaces/elections";
|
|
28
29
|
import type { CreatedBlock, ImportedAux } from "@polkadot/types/interfaces/engine";
|
|
29
|
-
import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from "@polkadot/types/interfaces/eth";
|
|
30
|
+
import type { BlockV0, BlockV1, BlockV2, BlockV3, EIP1559Transaction, EIP2930Transaction, EIP7702Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthAuthorizationList, EthAuthorizationListItem, EthAuthorizationSignature, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLegacyTransactionSignature, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthReceiptV4, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2, TransactionV3 } from "@polkadot/types/interfaces/eth";
|
|
30
31
|
import type { EvmAccount, EvmCallInfo, EvmCallInfoV2, EvmCreateInfo, EvmCreateInfoV2, EvmLog, EvmVicinity, EvmWeightInfo, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from "@polkadot/types/interfaces/evm";
|
|
31
|
-
import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from "@polkadot/types/interfaces/extrinsics";
|
|
32
|
+
import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicPayloadV5, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicSignatureV5, ExtrinsicUnknown, ExtrinsicV4, ExtrinsicV5, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from "@polkadot/types/interfaces/extrinsics";
|
|
32
33
|
import type { FungiblesAccessError } from "@polkadot/types/interfaces/fungibles";
|
|
33
34
|
import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from "@polkadot/types/interfaces/genericAsset";
|
|
34
35
|
import type { GenesisBuildErr } from "@polkadot/types/interfaces/genesisBuilder";
|
|
@@ -37,7 +38,7 @@ import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, A
|
|
|
37
38
|
import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from "@polkadot/types/interfaces/identity";
|
|
38
39
|
import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from "@polkadot/types/interfaces/imOnline";
|
|
39
40
|
import type { CallIndex, LotteryConfig } from "@polkadot/types/interfaces/lottery";
|
|
40
|
-
import type { CustomMetadata15, CustomValueMetadata15, ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, ExtrinsicMetadataV15, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, OuterEnums15, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from "@polkadot/types/interfaces/metadata";
|
|
41
|
+
import type { CustomMetadata15, CustomValueMetadata15, EnumDeprecationInfoV16, ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, ExtrinsicMetadataV15, ExtrinsicMetadataV16, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, ItemDeprecationInfoV16, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV16, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, OuterEnums15, PalletAssociatedTypeMetadataV16, PalletCallMetadataLatest, PalletCallMetadataV14, PalletCallMetadataV16, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletConstantMetadataV16, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletErrorMetadataV16, PalletEventMetadataLatest, PalletEventMetadataV14, PalletEventMetadataV16, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletMetadataV16, PalletStorageMetadataLatest, PalletStorageMetadataV14, PalletStorageMetadataV16, PalletViewFunctionMetadataV16, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMetadataV16, RuntimeApiMethodMetadataV15, RuntimeApiMethodMetadataV16, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV16, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9, TransactionExtensionMetadataLatest, TransactionExtensionMetadataV16, VariantDeprecationInfoV16 } from "@polkadot/types/interfaces/metadata";
|
|
41
42
|
import type { Mixnode, MixnodesErr, SessionPhase, SessionStatus } from "@polkadot/types/interfaces/mixnet";
|
|
42
43
|
import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from "@polkadot/types/interfaces/mmr";
|
|
43
44
|
import type { NftCollectionId, NftItemId } from "@polkadot/types/interfaces/nfts";
|
|
@@ -56,7 +57,7 @@ import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDe
|
|
|
56
57
|
import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from "@polkadot/types/interfaces/scheduler";
|
|
57
58
|
import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from "@polkadot/types/interfaces/session";
|
|
58
59
|
import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from "@polkadot/types/interfaces/society";
|
|
59
|
-
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from "@polkadot/types/interfaces/staking";
|
|
60
|
+
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionResultToSpec10, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from "@polkadot/types/interfaces/staking";
|
|
60
61
|
import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from "@polkadot/types/interfaces/state";
|
|
61
62
|
import type { StatementStoreInvalidStatement, StatementStoreStatementSource, StatementStoreValidStatement } from "@polkadot/types/interfaces/statement";
|
|
62
63
|
import type { WeightToFeeCoefficient } from "@polkadot/types/interfaces/support";
|
|
@@ -67,10 +68,10 @@ import type { TransactionSource, TransactionValidity, ValidTransaction } from "@
|
|
|
67
68
|
import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from "@polkadot/types/interfaces/uniques";
|
|
68
69
|
import type { Multisig, Timepoint } from "@polkadot/types/interfaces/utility";
|
|
69
70
|
import type { VestingInfo } from "@polkadot/types/interfaces/vesting";
|
|
70
|
-
import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error,
|
|
71
|
+
import type { AssetIdV2, AssetIdV3, AssetIdV4, AssetIdV5, AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, AssetInstanceV3, AssetInstanceV4, AssetInstanceV5, BodyId, BodyIdV2, BodyIdV3, BodyPart, BodyPartV2, BodyPartV3, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, FungibilityV3, FungibilityV4, FungibilityV5, HintV5, InboundStatus, InstructionV2, InstructionV3, InstructionV4, InstructionV5, InteriorMultiLocation, InteriorMultiLocationV2, InteriorMultiLocationV3, InteriorMultiLocationV5, Junction, JunctionV0, JunctionV1, JunctionV2, JunctionV3, JunctionV4, JunctionV5, Junctions, JunctionsV1, JunctionsV2, JunctionsV3, JunctionsV4, JunctionsV5, MaxPalletNameLen, MaxPalletsInfo, MaybeErrorCodeV3, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetFilterV3, MultiAssetFilterV4, MultiAssetFilterV5, MultiAssetTransferFilterV5, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssetV3, MultiAssetV4, MultiAssetV5, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiAssetsV3, MultiAssetsV4, MultiAssetsV5, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, MultiLocationV3, MultiLocationV4, MultiLocationV5, NetworkId, NetworkIdV2, NetworkIdV3, NetworkIdV4, NetworkIdV5, OriginKindV0, OriginKindV1, OriginKindV2, OriginKindV3, OriginKindV4, OutboundStatus, Outcome, OutcomeV4, PalletInfoV3, PalletInfoV4, PalletInfoV5, QueryId, QueryResponseInfoV3, QueryResponseInfoV4, QueryResponseInfoV5, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV3, ResponseV3Error, ResponseV3Result, ResponseV4, ResponseV5, UncheckedFungibilityV4, UncheckedFungibilityV5, VersionMigrationStage, VersionV3, VersionV4, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WeightLimitV3, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildFungibilityV3, WildFungibilityV4, WildFungibilityV5, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, WildMultiAssetV3, WildMultiAssetV4, WildMultiAssetV5, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmErrorV3, XcmErrorV4, XcmErrorV5, XcmOrderV0, XcmOrderV1, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmV3, XcmV4, XcmV5, XcmVersion, XcmpMessageFormat } from "@polkadot/types/interfaces/xcm";
|
|
71
72
|
import type { XcmPaymentApiError } from "@polkadot/types/interfaces/xcmPaymentApi";
|
|
72
73
|
import type { Error } from "@polkadot/types/interfaces/xcmRuntimeApi";
|
|
73
|
-
import type { BackupStorageProvider, BackupStorageProviderId, ChunkId, FileMetadata, GetBspInfoError, GetChallengePeriodError, GetChallengeSeedError, GetCheckpointChallengesError, GetFileFromFileStorageResult,
|
|
74
|
+
import type { AddFilesToForestStorageResult, BackupStorageProvider, BackupStorageProviderId, BucketId, CheckpointChallenge, ChunkId, FileMetadata, GenericApplyDeltaEventInfoError, GetBspInfoError, GetChallengePeriodError, GetChallengeSeedError, GetCheckpointChallengesError, GetFileFromFileStorageResult, GetNextDeadlineTickError, GetProofSubmissionRecordError, GetStakeError, GetUsersWithDebtOverThresholdError, IncompleteFileStatus, IncompleteStorageRequestMetadataResponse, IsStorageRequestOpenToVolunteersError, LoadFileInStorageResult, MainStorageProviderId, MerklePatriciaRoot, Multiaddresses, ProviderId, QueryAvailableStorageCapacityError, QueryBspConfirmChunksToProveForFileError, QueryBucketsForMspError, QueryBucketsOfUserStoredByMspError, QueryConfirmChunksToProveForFileError, QueryEarliestChangeCapacityBlockError, QueryFileEarliestVolunteerBlockError, QueryIncompleteStorageRequestMetadataError, QueryMspConfirmChunksToProveForFileError, QueryMspIdOfBucketIdError, QueryProviderMultiaddressesError, QueryStorageProviderCapacityError, RandomnessOutput, RemoveFilesFromForestStorageResult, ReputationWeightType, SaveFileToDisk, ShouldRemoveFile, StorageDataUnit, StorageProviderId, StorageRequestMetadata, TrieRemoveMutation, ValuePropId, ValueProposition, ValuePropositionWithId } from "@storagehub/api-augment/parachain/interfaces/storagehubclient";
|
|
74
75
|
declare module "@polkadot/types/types/registry" {
|
|
75
76
|
interface InterfaceTypes {
|
|
76
77
|
AbridgedCandidateReceipt: AbridgedCandidateReceipt;
|
|
@@ -99,6 +100,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
99
100
|
ActiveGiltsTotal: ActiveGiltsTotal;
|
|
100
101
|
ActiveIndex: ActiveIndex;
|
|
101
102
|
ActiveRecovery: ActiveRecovery;
|
|
103
|
+
AddFilesToForestStorageResult: AddFilesToForestStorageResult;
|
|
102
104
|
Address: Address;
|
|
103
105
|
AliveContractInfo: AliveContractInfo;
|
|
104
106
|
AllowedSlots: AllowedSlots;
|
|
@@ -116,10 +118,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
116
118
|
AssetDestroyWitness: AssetDestroyWitness;
|
|
117
119
|
AssetDetails: AssetDetails;
|
|
118
120
|
AssetId: AssetId;
|
|
121
|
+
AssetIdV2: AssetIdV2;
|
|
122
|
+
AssetIdV3: AssetIdV3;
|
|
123
|
+
AssetIdV4: AssetIdV4;
|
|
124
|
+
AssetIdV5: AssetIdV5;
|
|
119
125
|
AssetInstance: AssetInstance;
|
|
120
126
|
AssetInstanceV0: AssetInstanceV0;
|
|
121
127
|
AssetInstanceV1: AssetInstanceV1;
|
|
122
128
|
AssetInstanceV2: AssetInstanceV2;
|
|
129
|
+
AssetInstanceV3: AssetInstanceV3;
|
|
130
|
+
AssetInstanceV4: AssetInstanceV4;
|
|
131
|
+
AssetInstanceV5: AssetInstanceV5;
|
|
123
132
|
AssetMetadata: AssetMetadata;
|
|
124
133
|
AssetOptions: AssetOptions;
|
|
125
134
|
AssignmentId: AssignmentId;
|
|
@@ -192,9 +201,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
192
201
|
BlockV0: BlockV0;
|
|
193
202
|
BlockV1: BlockV1;
|
|
194
203
|
BlockV2: BlockV2;
|
|
204
|
+
BlockV3: BlockV3;
|
|
195
205
|
BlockWeights: BlockWeights;
|
|
196
206
|
BodyId: BodyId;
|
|
207
|
+
BodyIdV2: BodyIdV2;
|
|
208
|
+
BodyIdV3: BodyIdV3;
|
|
197
209
|
BodyPart: BodyPart;
|
|
210
|
+
BodyPartV2: BodyPartV2;
|
|
211
|
+
BodyPartV3: BodyPartV3;
|
|
198
212
|
bool: bool;
|
|
199
213
|
Bool: Bool;
|
|
200
214
|
Bounty: Bounty;
|
|
@@ -207,9 +221,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
207
221
|
BridgedBlockNumber: BridgedBlockNumber;
|
|
208
222
|
BridgedHeader: BridgedHeader;
|
|
209
223
|
BridgeMessageId: BridgeMessageId;
|
|
224
|
+
BucketId: BucketId;
|
|
210
225
|
BufferedSessionChange: BufferedSessionChange;
|
|
211
226
|
Bytes: Bytes;
|
|
212
227
|
Call: Call;
|
|
228
|
+
CallDryRunEffects: CallDryRunEffects;
|
|
213
229
|
CallHash: CallHash;
|
|
214
230
|
CallHashOf: CallHashOf;
|
|
215
231
|
CallIndex: CallIndex;
|
|
@@ -227,6 +243,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
227
243
|
ChangesTrieConfiguration: ChangesTrieConfiguration;
|
|
228
244
|
ChangesTrieSignal: ChangesTrieSignal;
|
|
229
245
|
CheckInherentsResult: CheckInherentsResult;
|
|
246
|
+
CheckpointChallenge: CheckpointChallenge;
|
|
230
247
|
ChunkId: ChunkId;
|
|
231
248
|
ClassDetails: ClassDetails;
|
|
232
249
|
ClassId: ClassId;
|
|
@@ -269,6 +286,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
269
286
|
ContractContractSpecV3: ContractContractSpecV3;
|
|
270
287
|
ContractContractSpecV4: ContractContractSpecV4;
|
|
271
288
|
ContractContractSpecV5: ContractContractSpecV5;
|
|
289
|
+
ContractContractSpecV6: ContractContractSpecV6;
|
|
272
290
|
ContractCryptoHasher: ContractCryptoHasher;
|
|
273
291
|
ContractDiscriminant: ContractDiscriminant;
|
|
274
292
|
ContractDisplayName: ContractDisplayName;
|
|
@@ -319,12 +337,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
319
337
|
ContractMetadataV3: ContractMetadataV3;
|
|
320
338
|
ContractMetadataV4: ContractMetadataV4;
|
|
321
339
|
ContractMetadataV5: ContractMetadataV5;
|
|
340
|
+
ContractMetadataV6: ContractMetadataV6;
|
|
322
341
|
ContractProject: ContractProject;
|
|
323
342
|
ContractProjectContract: ContractProjectContract;
|
|
324
343
|
ContractProjectInfo: ContractProjectInfo;
|
|
325
344
|
ContractProjectSource: ContractProjectSource;
|
|
326
345
|
ContractProjectV0: ContractProjectV0;
|
|
327
346
|
ContractReturnFlags: ContractReturnFlags;
|
|
347
|
+
ContractReviveProjectInfo: ContractReviveProjectInfo;
|
|
348
|
+
ContractReviveProjectSource: ContractReviveProjectSource;
|
|
328
349
|
ContractSelector: ContractSelector;
|
|
329
350
|
ContractStorageKey: ContractStorageKey;
|
|
330
351
|
ContractStorageLayout: ContractStorageLayout;
|
|
@@ -370,6 +391,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
370
391
|
DispatchResult: DispatchResult;
|
|
371
392
|
DispatchResultOf: DispatchResultOf;
|
|
372
393
|
DispatchResultTo198: DispatchResultTo198;
|
|
394
|
+
DispatchResultWithPostInfo: DispatchResultWithPostInfo;
|
|
373
395
|
DisputeLocation: DisputeLocation;
|
|
374
396
|
DisputeProof: DisputeProof;
|
|
375
397
|
DisputeResult: DisputeResult;
|
|
@@ -384,14 +406,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
384
406
|
Ed25519Signature: Ed25519Signature;
|
|
385
407
|
EIP1559Transaction: EIP1559Transaction;
|
|
386
408
|
EIP2930Transaction: EIP2930Transaction;
|
|
409
|
+
EIP7702Transaction: EIP7702Transaction;
|
|
387
410
|
ElectionCompute: ElectionCompute;
|
|
388
411
|
ElectionPhase: ElectionPhase;
|
|
389
412
|
ElectionResult: ElectionResult;
|
|
413
|
+
ElectionResultToSpec10: ElectionResultToSpec10;
|
|
390
414
|
ElectionScore: ElectionScore;
|
|
391
415
|
ElectionSize: ElectionSize;
|
|
392
416
|
ElectionStatus: ElectionStatus;
|
|
393
417
|
EncodedFinalityProofs: EncodedFinalityProofs;
|
|
394
418
|
EncodedJustification: EncodedJustification;
|
|
419
|
+
EnumDeprecationInfoV16: EnumDeprecationInfoV16;
|
|
395
420
|
Epoch: Epoch;
|
|
396
421
|
EpochAuthorship: EpochAuthorship;
|
|
397
422
|
Era: Era;
|
|
@@ -411,6 +436,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
411
436
|
EthAccessListItem: EthAccessListItem;
|
|
412
437
|
EthAccount: EthAccount;
|
|
413
438
|
EthAddress: EthAddress;
|
|
439
|
+
EthAuthorizationList: EthAuthorizationList;
|
|
440
|
+
EthAuthorizationListItem: EthAuthorizationListItem;
|
|
441
|
+
EthAuthorizationSignature: EthAuthorizationSignature;
|
|
414
442
|
EthBlock: EthBlock;
|
|
415
443
|
EthBloom: EthBloom;
|
|
416
444
|
EthCallRequest: EthCallRequest;
|
|
@@ -426,10 +454,12 @@ declare module "@polkadot/types/types/registry" {
|
|
|
426
454
|
EthFilterTopicEntry: EthFilterTopicEntry;
|
|
427
455
|
EthFilterTopicInner: EthFilterTopicInner;
|
|
428
456
|
EthHeader: EthHeader;
|
|
457
|
+
EthLegacyTransactionSignature: EthLegacyTransactionSignature;
|
|
429
458
|
EthLog: EthLog;
|
|
430
459
|
EthReceipt: EthReceipt;
|
|
431
460
|
EthReceiptV0: EthReceiptV0;
|
|
432
461
|
EthReceiptV3: EthReceiptV3;
|
|
462
|
+
EthReceiptV4: EthReceiptV4;
|
|
433
463
|
EthRichBlock: EthRichBlock;
|
|
434
464
|
EthRichHeader: EthRichHeader;
|
|
435
465
|
EthStorageProof: EthStorageProof;
|
|
@@ -485,16 +515,20 @@ declare module "@polkadot/types/types/registry" {
|
|
|
485
515
|
ExtrinsicMetadataV13: ExtrinsicMetadataV13;
|
|
486
516
|
ExtrinsicMetadataV14: ExtrinsicMetadataV14;
|
|
487
517
|
ExtrinsicMetadataV15: ExtrinsicMetadataV15;
|
|
518
|
+
ExtrinsicMetadataV16: ExtrinsicMetadataV16;
|
|
488
519
|
ExtrinsicOrHash: ExtrinsicOrHash;
|
|
489
520
|
ExtrinsicPayload: ExtrinsicPayload;
|
|
490
521
|
ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
|
|
491
522
|
ExtrinsicPayloadV4: ExtrinsicPayloadV4;
|
|
523
|
+
ExtrinsicPayloadV5: ExtrinsicPayloadV5;
|
|
492
524
|
ExtrinsicSignature: ExtrinsicSignature;
|
|
493
525
|
ExtrinsicSignatureV4: ExtrinsicSignatureV4;
|
|
526
|
+
ExtrinsicSignatureV5: ExtrinsicSignatureV5;
|
|
494
527
|
ExtrinsicStatus: ExtrinsicStatus;
|
|
495
528
|
ExtrinsicsWeight: ExtrinsicsWeight;
|
|
496
529
|
ExtrinsicUnknown: ExtrinsicUnknown;
|
|
497
530
|
ExtrinsicV4: ExtrinsicV4;
|
|
531
|
+
ExtrinsicV5: ExtrinsicV5;
|
|
498
532
|
f32: f32;
|
|
499
533
|
F32: F32;
|
|
500
534
|
f64: f64;
|
|
@@ -531,16 +565,21 @@ declare module "@polkadot/types/types/registry" {
|
|
|
531
565
|
FungibilityV0: FungibilityV0;
|
|
532
566
|
FungibilityV1: FungibilityV1;
|
|
533
567
|
FungibilityV2: FungibilityV2;
|
|
568
|
+
FungibilityV3: FungibilityV3;
|
|
569
|
+
FungibilityV4: FungibilityV4;
|
|
570
|
+
FungibilityV5: FungibilityV5;
|
|
534
571
|
FungiblesAccessError: FungiblesAccessError;
|
|
535
572
|
Gas: Gas;
|
|
573
|
+
GenericApplyDeltaEventInfoError: GenericApplyDeltaEventInfoError;
|
|
536
574
|
GenesisBuildErr: GenesisBuildErr;
|
|
537
575
|
GetBspInfoError: GetBspInfoError;
|
|
538
576
|
GetChallengePeriodError: GetChallengePeriodError;
|
|
539
577
|
GetChallengeSeedError: GetChallengeSeedError;
|
|
540
578
|
GetCheckpointChallengesError: GetCheckpointChallengesError;
|
|
541
579
|
GetFileFromFileStorageResult: GetFileFromFileStorageResult;
|
|
542
|
-
GetLastTickProviderSubmittedProofError: GetLastTickProviderSubmittedProofError;
|
|
543
580
|
GetNextDeadlineTickError: GetNextDeadlineTickError;
|
|
581
|
+
GetProofSubmissionRecordError: GetProofSubmissionRecordError;
|
|
582
|
+
GetStakeError: GetStakeError;
|
|
544
583
|
GetUsersWithDebtOverThresholdError: GetUsersWithDebtOverThresholdError;
|
|
545
584
|
GiltBid: GiltBid;
|
|
546
585
|
GlobalValidationData: GlobalValidationData;
|
|
@@ -570,6 +609,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
570
609
|
Health: Health;
|
|
571
610
|
Heartbeat: Heartbeat;
|
|
572
611
|
HeartbeatTo244: HeartbeatTo244;
|
|
612
|
+
HintV5: HintV5;
|
|
573
613
|
HostConfiguration: HostConfiguration;
|
|
574
614
|
HostFnWeights: HostFnWeights;
|
|
575
615
|
HostFnWeightsTo264: HostFnWeightsTo264;
|
|
@@ -610,6 +650,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
610
650
|
IncomingParachainDeploy: IncomingParachainDeploy;
|
|
611
651
|
IncomingParachainFixed: IncomingParachainFixed;
|
|
612
652
|
IncompleteFileStatus: IncompleteFileStatus;
|
|
653
|
+
IncompleteStorageRequestMetadataResponse: IncompleteStorageRequestMetadataResponse;
|
|
613
654
|
Index: Index;
|
|
614
655
|
IndicesLookupSource: IndicesLookupSource;
|
|
615
656
|
IndividualExposure: IndividualExposure;
|
|
@@ -626,20 +667,34 @@ declare module "@polkadot/types/types/registry" {
|
|
|
626
667
|
InstantiateReturnValueOk: InstantiateReturnValueOk;
|
|
627
668
|
InstantiateReturnValueTo267: InstantiateReturnValueTo267;
|
|
628
669
|
InstructionV2: InstructionV2;
|
|
670
|
+
InstructionV3: InstructionV3;
|
|
671
|
+
InstructionV4: InstructionV4;
|
|
672
|
+
InstructionV5: InstructionV5;
|
|
629
673
|
InstructionWeights: InstructionWeights;
|
|
630
674
|
InteriorMultiLocation: InteriorMultiLocation;
|
|
675
|
+
InteriorMultiLocationV2: InteriorMultiLocationV2;
|
|
676
|
+
InteriorMultiLocationV3: InteriorMultiLocationV3;
|
|
677
|
+
InteriorMultiLocationV5: InteriorMultiLocationV5;
|
|
631
678
|
InvalidDisputeStatementKind: InvalidDisputeStatementKind;
|
|
632
679
|
InvalidTransaction: InvalidTransaction;
|
|
633
680
|
isize: isize;
|
|
634
681
|
ISize: ISize;
|
|
682
|
+
IsStorageRequestOpenToVolunteersError: IsStorageRequestOpenToVolunteersError;
|
|
683
|
+
ItemDeprecationInfoV16: ItemDeprecationInfoV16;
|
|
635
684
|
Json: Json;
|
|
636
685
|
Junction: Junction;
|
|
637
686
|
Junctions: Junctions;
|
|
638
687
|
JunctionsV1: JunctionsV1;
|
|
639
688
|
JunctionsV2: JunctionsV2;
|
|
689
|
+
JunctionsV3: JunctionsV3;
|
|
690
|
+
JunctionsV4: JunctionsV4;
|
|
691
|
+
JunctionsV5: JunctionsV5;
|
|
640
692
|
JunctionV0: JunctionV0;
|
|
641
693
|
JunctionV1: JunctionV1;
|
|
642
694
|
JunctionV2: JunctionV2;
|
|
695
|
+
JunctionV3: JunctionV3;
|
|
696
|
+
JunctionV4: JunctionV4;
|
|
697
|
+
JunctionV5: JunctionV5;
|
|
643
698
|
Justification: Justification;
|
|
644
699
|
JustificationNotification: JustificationNotification;
|
|
645
700
|
Justifications: Justifications;
|
|
@@ -659,12 +714,16 @@ declare module "@polkadot/types/types/registry" {
|
|
|
659
714
|
LegacyTransaction: LegacyTransaction;
|
|
660
715
|
Limits: Limits;
|
|
661
716
|
LimitsTo264: LimitsTo264;
|
|
717
|
+
LoadFileInStorageResult: LoadFileInStorageResult;
|
|
662
718
|
LocalValidationData: LocalValidationData;
|
|
663
719
|
LockIdentifier: LockIdentifier;
|
|
664
720
|
LookupSource: LookupSource;
|
|
665
721
|
LookupTarget: LookupTarget;
|
|
666
722
|
LotteryConfig: LotteryConfig;
|
|
667
723
|
MainStorageProviderId: MainStorageProviderId;
|
|
724
|
+
MaxPalletNameLen: MaxPalletNameLen;
|
|
725
|
+
MaxPalletsInfo: MaxPalletsInfo;
|
|
726
|
+
MaybeErrorCodeV3: MaybeErrorCodeV3;
|
|
668
727
|
MaybeRandomness: MaybeRandomness;
|
|
669
728
|
MaybeVrf: MaybeVrf;
|
|
670
729
|
MemberCount: MemberCount;
|
|
@@ -688,6 +747,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
688
747
|
MetadataV13: MetadataV13;
|
|
689
748
|
MetadataV14: MetadataV14;
|
|
690
749
|
MetadataV15: MetadataV15;
|
|
750
|
+
MetadataV16: MetadataV16;
|
|
691
751
|
MetadataV9: MetadataV9;
|
|
692
752
|
MigrationStatusResult: MigrationStatusResult;
|
|
693
753
|
Mixnode: Mixnode;
|
|
@@ -723,22 +783,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
723
783
|
MultiAssetFilter: MultiAssetFilter;
|
|
724
784
|
MultiAssetFilterV1: MultiAssetFilterV1;
|
|
725
785
|
MultiAssetFilterV2: MultiAssetFilterV2;
|
|
786
|
+
MultiAssetFilterV3: MultiAssetFilterV3;
|
|
787
|
+
MultiAssetFilterV4: MultiAssetFilterV4;
|
|
788
|
+
MultiAssetFilterV5: MultiAssetFilterV5;
|
|
726
789
|
MultiAssets: MultiAssets;
|
|
727
790
|
MultiAssetsV1: MultiAssetsV1;
|
|
728
791
|
MultiAssetsV2: MultiAssetsV2;
|
|
792
|
+
MultiAssetsV3: MultiAssetsV3;
|
|
793
|
+
MultiAssetsV4: MultiAssetsV4;
|
|
794
|
+
MultiAssetsV5: MultiAssetsV5;
|
|
795
|
+
MultiAssetTransferFilterV5: MultiAssetTransferFilterV5;
|
|
729
796
|
MultiAssetV0: MultiAssetV0;
|
|
730
797
|
MultiAssetV1: MultiAssetV1;
|
|
731
798
|
MultiAssetV2: MultiAssetV2;
|
|
799
|
+
MultiAssetV3: MultiAssetV3;
|
|
800
|
+
MultiAssetV4: MultiAssetV4;
|
|
801
|
+
MultiAssetV5: MultiAssetV5;
|
|
732
802
|
MultiDisputeStatementSet: MultiDisputeStatementSet;
|
|
733
803
|
MultiLocation: MultiLocation;
|
|
734
804
|
MultiLocationV0: MultiLocationV0;
|
|
735
805
|
MultiLocationV1: MultiLocationV1;
|
|
736
806
|
MultiLocationV2: MultiLocationV2;
|
|
807
|
+
MultiLocationV3: MultiLocationV3;
|
|
808
|
+
MultiLocationV4: MultiLocationV4;
|
|
809
|
+
MultiLocationV5: MultiLocationV5;
|
|
737
810
|
Multiplier: Multiplier;
|
|
738
811
|
Multisig: Multisig;
|
|
739
812
|
MultiSignature: MultiSignature;
|
|
740
813
|
MultiSigner: MultiSigner;
|
|
741
814
|
NetworkId: NetworkId;
|
|
815
|
+
NetworkIdV2: NetworkIdV2;
|
|
816
|
+
NetworkIdV3: NetworkIdV3;
|
|
817
|
+
NetworkIdV4: NetworkIdV4;
|
|
818
|
+
NetworkIdV5: NetworkIdV5;
|
|
742
819
|
NetworkState: NetworkState;
|
|
743
820
|
NetworkStatePeerset: NetworkStatePeerset;
|
|
744
821
|
NetworkStatePeersetInfo: NetworkStatePeersetInfo;
|
|
@@ -782,6 +859,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
782
859
|
OriginKindV0: OriginKindV0;
|
|
783
860
|
OriginKindV1: OriginKindV1;
|
|
784
861
|
OriginKindV2: OriginKindV2;
|
|
862
|
+
OriginKindV3: OriginKindV3;
|
|
863
|
+
OriginKindV4: OriginKindV4;
|
|
785
864
|
OutboundHrmpChannelLimitations: OutboundHrmpChannelLimitations;
|
|
786
865
|
OutboundHrmpMessage: OutboundHrmpMessage;
|
|
787
866
|
OutboundLaneData: OutboundLaneData;
|
|
@@ -789,27 +868,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
789
868
|
OutboundPayload: OutboundPayload;
|
|
790
869
|
OutboundStatus: OutboundStatus;
|
|
791
870
|
Outcome: Outcome;
|
|
871
|
+
OutcomeV4: OutcomeV4;
|
|
792
872
|
OuterEnums15: OuterEnums15;
|
|
793
873
|
OverweightIndex: OverweightIndex;
|
|
794
874
|
Owner: Owner;
|
|
795
875
|
PageCounter: PageCounter;
|
|
796
876
|
PageIndexData: PageIndexData;
|
|
877
|
+
PalletAssociatedTypeMetadataV16: PalletAssociatedTypeMetadataV16;
|
|
797
878
|
PalletCallMetadataLatest: PalletCallMetadataLatest;
|
|
798
879
|
PalletCallMetadataV14: PalletCallMetadataV14;
|
|
880
|
+
PalletCallMetadataV16: PalletCallMetadataV16;
|
|
799
881
|
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
|
|
800
882
|
PalletConstantMetadataV14: PalletConstantMetadataV14;
|
|
883
|
+
PalletConstantMetadataV16: PalletConstantMetadataV16;
|
|
801
884
|
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
|
|
802
885
|
PalletErrorMetadataV14: PalletErrorMetadataV14;
|
|
886
|
+
PalletErrorMetadataV16: PalletErrorMetadataV16;
|
|
803
887
|
PalletEventMetadataLatest: PalletEventMetadataLatest;
|
|
804
888
|
PalletEventMetadataV14: PalletEventMetadataV14;
|
|
889
|
+
PalletEventMetadataV16: PalletEventMetadataV16;
|
|
805
890
|
PalletId: PalletId;
|
|
891
|
+
PalletInfoV3: PalletInfoV3;
|
|
892
|
+
PalletInfoV4: PalletInfoV4;
|
|
893
|
+
PalletInfoV5: PalletInfoV5;
|
|
806
894
|
PalletMetadataLatest: PalletMetadataLatest;
|
|
807
895
|
PalletMetadataV14: PalletMetadataV14;
|
|
808
896
|
PalletMetadataV15: PalletMetadataV15;
|
|
897
|
+
PalletMetadataV16: PalletMetadataV16;
|
|
809
898
|
PalletsOrigin: PalletsOrigin;
|
|
810
899
|
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
|
|
811
900
|
PalletStorageMetadataV14: PalletStorageMetadataV14;
|
|
901
|
+
PalletStorageMetadataV16: PalletStorageMetadataV16;
|
|
812
902
|
PalletVersion: PalletVersion;
|
|
903
|
+
PalletViewFunctionMetadataV16: PalletViewFunctionMetadataV16;
|
|
813
904
|
ParachainDispatchOrigin: ParachainDispatchOrigin;
|
|
814
905
|
ParachainInherentData: ParachainInherentData;
|
|
815
906
|
ParachainProposal: ParachainProposal;
|
|
@@ -855,6 +946,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
855
946
|
Points: Points;
|
|
856
947
|
PortableType: PortableType;
|
|
857
948
|
PortableTypeV14: PortableTypeV14;
|
|
949
|
+
PostDispatchInfo: PostDispatchInfo;
|
|
858
950
|
Precommits: Precommits;
|
|
859
951
|
PrefabWasmModule: PrefabWasmModule;
|
|
860
952
|
PrefixedStorageKey: PrefixedStorageKey;
|
|
@@ -877,13 +969,19 @@ declare module "@polkadot/types/types/registry" {
|
|
|
877
969
|
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
|
|
878
970
|
QueryAvailableStorageCapacityError: QueryAvailableStorageCapacityError;
|
|
879
971
|
QueryBspConfirmChunksToProveForFileError: QueryBspConfirmChunksToProveForFileError;
|
|
972
|
+
QueryBucketsForMspError: QueryBucketsForMspError;
|
|
973
|
+
QueryBucketsOfUserStoredByMspError: QueryBucketsOfUserStoredByMspError;
|
|
880
974
|
QueryConfirmChunksToProveForFileError: QueryConfirmChunksToProveForFileError;
|
|
881
975
|
QueryEarliestChangeCapacityBlockError: QueryEarliestChangeCapacityBlockError;
|
|
882
976
|
QueryFileEarliestVolunteerBlockError: QueryFileEarliestVolunteerBlockError;
|
|
883
977
|
QueryId: QueryId;
|
|
978
|
+
QueryIncompleteStorageRequestMetadataError: QueryIncompleteStorageRequestMetadataError;
|
|
884
979
|
QueryMspConfirmChunksToProveForFileError: QueryMspConfirmChunksToProveForFileError;
|
|
885
980
|
QueryMspIdOfBucketIdError: QueryMspIdOfBucketIdError;
|
|
886
981
|
QueryProviderMultiaddressesError: QueryProviderMultiaddressesError;
|
|
982
|
+
QueryResponseInfoV3: QueryResponseInfoV3;
|
|
983
|
+
QueryResponseInfoV4: QueryResponseInfoV4;
|
|
984
|
+
QueryResponseInfoV5: QueryResponseInfoV5;
|
|
887
985
|
QueryStatus: QueryStatus;
|
|
888
986
|
QueryStorageProviderCapacityError: QueryStorageProviderCapacityError;
|
|
889
987
|
QueueConfigData: QueueConfigData;
|
|
@@ -930,12 +1028,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
930
1028
|
RelayHash: RelayHash;
|
|
931
1029
|
Releases: Releases;
|
|
932
1030
|
Remark: Remark;
|
|
1031
|
+
RemoveFilesFromForestStorageResult: RemoveFilesFromForestStorageResult;
|
|
933
1032
|
Renouncing: Renouncing;
|
|
934
1033
|
RentProjection: RentProjection;
|
|
935
1034
|
ReplacementTimes: ReplacementTimes;
|
|
936
1035
|
ReportedRoundStates: ReportedRoundStates;
|
|
937
1036
|
Reporter: Reporter;
|
|
938
1037
|
ReportIdOf: ReportIdOf;
|
|
1038
|
+
ReputationWeightType: ReputationWeightType;
|
|
939
1039
|
ReserveData: ReserveData;
|
|
940
1040
|
ReserveIdentifier: ReserveIdentifier;
|
|
941
1041
|
Response: Response;
|
|
@@ -943,7 +1043,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
943
1043
|
ResponseV1: ResponseV1;
|
|
944
1044
|
ResponseV2: ResponseV2;
|
|
945
1045
|
ResponseV2Error: ResponseV2Error;
|
|
946
|
-
|
|
1046
|
+
ResponseV3: ResponseV3;
|
|
1047
|
+
ResponseV3Error: ResponseV3Error;
|
|
1048
|
+
ResponseV3Result: ResponseV3Result;
|
|
1049
|
+
ResponseV4: ResponseV4;
|
|
1050
|
+
ResponseV5: ResponseV5;
|
|
947
1051
|
Retriable: Retriable;
|
|
948
1052
|
RewardDestination: RewardDestination;
|
|
949
1053
|
RewardPoint: RewardPoint;
|
|
@@ -952,7 +1056,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
952
1056
|
RpcMethods: RpcMethods;
|
|
953
1057
|
RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
|
|
954
1058
|
RuntimeApiMetadataV15: RuntimeApiMetadataV15;
|
|
1059
|
+
RuntimeApiMetadataV16: RuntimeApiMetadataV16;
|
|
955
1060
|
RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
|
|
1061
|
+
RuntimeApiMethodMetadataV16: RuntimeApiMethodMetadataV16;
|
|
956
1062
|
RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
|
|
957
1063
|
RuntimeCall: RuntimeCall;
|
|
958
1064
|
RuntimeDbWeight: RuntimeDbWeight;
|
|
@@ -1004,6 +1110,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1004
1110
|
SessionStatus: SessionStatus;
|
|
1005
1111
|
SetId: SetId;
|
|
1006
1112
|
SetIndex: SetIndex;
|
|
1113
|
+
ShouldRemoveFile: ShouldRemoveFile;
|
|
1007
1114
|
Si0Field: Si0Field;
|
|
1008
1115
|
Si0LookupTypeId: Si0LookupTypeId;
|
|
1009
1116
|
Si0Path: Si0Path;
|
|
@@ -1099,6 +1206,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1099
1206
|
StorageEntryMetadataV12: StorageEntryMetadataV12;
|
|
1100
1207
|
StorageEntryMetadataV13: StorageEntryMetadataV13;
|
|
1101
1208
|
StorageEntryMetadataV14: StorageEntryMetadataV14;
|
|
1209
|
+
StorageEntryMetadataV16: StorageEntryMetadataV16;
|
|
1102
1210
|
StorageEntryMetadataV9: StorageEntryMetadataV9;
|
|
1103
1211
|
StorageEntryModifierLatest: StorageEntryModifierLatest;
|
|
1104
1212
|
StorageEntryModifierV10: StorageEntryModifierV10;
|
|
@@ -1131,6 +1239,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1131
1239
|
StorageMetadataV9: StorageMetadataV9;
|
|
1132
1240
|
StorageProof: StorageProof;
|
|
1133
1241
|
StorageProviderId: StorageProviderId;
|
|
1242
|
+
StorageRequestMetadata: StorageRequestMetadata;
|
|
1134
1243
|
StoredPendingChange: StoredPendingChange;
|
|
1135
1244
|
StoredState: StoredState;
|
|
1136
1245
|
StrikeCount: StrikeCount;
|
|
@@ -1152,6 +1261,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1152
1261
|
TraceBlockResponse: TraceBlockResponse;
|
|
1153
1262
|
TraceError: TraceError;
|
|
1154
1263
|
TransactionalError: TransactionalError;
|
|
1264
|
+
TransactionExtensionMetadataLatest: TransactionExtensionMetadataLatest;
|
|
1265
|
+
TransactionExtensionMetadataV16: TransactionExtensionMetadataV16;
|
|
1155
1266
|
TransactionInfo: TransactionInfo;
|
|
1156
1267
|
TransactionLongevity: TransactionLongevity;
|
|
1157
1268
|
TransactionPriority: TransactionPriority;
|
|
@@ -1161,6 +1272,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1161
1272
|
TransactionV0: TransactionV0;
|
|
1162
1273
|
TransactionV1: TransactionV1;
|
|
1163
1274
|
TransactionV2: TransactionV2;
|
|
1275
|
+
TransactionV3: TransactionV3;
|
|
1164
1276
|
TransactionValidity: TransactionValidity;
|
|
1165
1277
|
TransactionValidityError: TransactionValidityError;
|
|
1166
1278
|
TransientValidationData: TransientValidationData;
|
|
@@ -1184,6 +1296,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1184
1296
|
U8: U8;
|
|
1185
1297
|
UnappliedSlash: UnappliedSlash;
|
|
1186
1298
|
UnappliedSlashOther: UnappliedSlashOther;
|
|
1299
|
+
UncheckedFungibilityV4: UncheckedFungibilityV4;
|
|
1300
|
+
UncheckedFungibilityV5: UncheckedFungibilityV5;
|
|
1187
1301
|
UncleEntryItem: UncleEntryItem;
|
|
1188
1302
|
UnknownTransaction: UnknownTransaction;
|
|
1189
1303
|
UnlockChunk: UnlockChunk;
|
|
@@ -1215,6 +1329,10 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1215
1329
|
ValidDisputeStatementKind: ValidDisputeStatementKind;
|
|
1216
1330
|
ValidityAttestation: ValidityAttestation;
|
|
1217
1331
|
ValidTransaction: ValidTransaction;
|
|
1332
|
+
ValuePropId: ValuePropId;
|
|
1333
|
+
ValueProposition: ValueProposition;
|
|
1334
|
+
ValuePropositionWithId: ValuePropositionWithId;
|
|
1335
|
+
VariantDeprecationInfoV16: VariantDeprecationInfoV16;
|
|
1218
1336
|
VecInboundHrmpMessage: VecInboundHrmpMessage;
|
|
1219
1337
|
VersionedMultiAsset: VersionedMultiAsset;
|
|
1220
1338
|
VersionedMultiAssets: VersionedMultiAssets;
|
|
@@ -1222,6 +1340,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1222
1340
|
VersionedResponse: VersionedResponse;
|
|
1223
1341
|
VersionedXcm: VersionedXcm;
|
|
1224
1342
|
VersionMigrationStage: VersionMigrationStage;
|
|
1343
|
+
VersionV3: VersionV3;
|
|
1344
|
+
VersionV4: VersionV4;
|
|
1225
1345
|
VestingInfo: VestingInfo;
|
|
1226
1346
|
VestingSchedule: VestingSchedule;
|
|
1227
1347
|
Vote: Vote;
|
|
@@ -1242,6 +1362,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1242
1362
|
VrfProof: VrfProof;
|
|
1243
1363
|
Weight: Weight;
|
|
1244
1364
|
WeightLimitV2: WeightLimitV2;
|
|
1365
|
+
WeightLimitV3: WeightLimitV3;
|
|
1245
1366
|
WeightMultiplier: WeightMultiplier;
|
|
1246
1367
|
WeightPerClass: WeightPerClass;
|
|
1247
1368
|
WeightToFeeCoefficient: WeightToFeeCoefficient;
|
|
@@ -1252,9 +1373,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1252
1373
|
WildFungibilityV0: WildFungibilityV0;
|
|
1253
1374
|
WildFungibilityV1: WildFungibilityV1;
|
|
1254
1375
|
WildFungibilityV2: WildFungibilityV2;
|
|
1376
|
+
WildFungibilityV3: WildFungibilityV3;
|
|
1377
|
+
WildFungibilityV4: WildFungibilityV4;
|
|
1378
|
+
WildFungibilityV5: WildFungibilityV5;
|
|
1255
1379
|
WildMultiAsset: WildMultiAsset;
|
|
1256
1380
|
WildMultiAssetV1: WildMultiAssetV1;
|
|
1257
1381
|
WildMultiAssetV2: WildMultiAssetV2;
|
|
1382
|
+
WildMultiAssetV3: WildMultiAssetV3;
|
|
1383
|
+
WildMultiAssetV4: WildMultiAssetV4;
|
|
1384
|
+
WildMultiAssetV5: WildMultiAssetV5;
|
|
1258
1385
|
WinnersData: WinnersData;
|
|
1259
1386
|
WinnersData10: WinnersData10;
|
|
1260
1387
|
WinnersDataTuple: WinnersDataTuple;
|
|
@@ -1265,14 +1392,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1265
1392
|
WithdrawReasons: WithdrawReasons;
|
|
1266
1393
|
Xcm: Xcm;
|
|
1267
1394
|
XcmAssetId: XcmAssetId;
|
|
1395
|
+
XcmDryRunApiError: XcmDryRunApiError;
|
|
1396
|
+
XcmDryRunEffects: XcmDryRunEffects;
|
|
1268
1397
|
XcmError: XcmError;
|
|
1269
1398
|
XcmErrorV0: XcmErrorV0;
|
|
1270
1399
|
XcmErrorV1: XcmErrorV1;
|
|
1271
1400
|
XcmErrorV2: XcmErrorV2;
|
|
1272
|
-
|
|
1401
|
+
XcmErrorV3: XcmErrorV3;
|
|
1402
|
+
XcmErrorV4: XcmErrorV4;
|
|
1403
|
+
XcmErrorV5: XcmErrorV5;
|
|
1273
1404
|
XcmOrderV0: XcmOrderV0;
|
|
1274
1405
|
XcmOrderV1: XcmOrderV1;
|
|
1275
|
-
XcmOrderV2: XcmOrderV2;
|
|
1276
1406
|
XcmOrigin: XcmOrigin;
|
|
1277
1407
|
XcmOriginKind: XcmOriginKind;
|
|
1278
1408
|
XcmPaymentApiError: XcmPaymentApiError;
|
|
@@ -1280,6 +1410,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1280
1410
|
XcmV0: XcmV0;
|
|
1281
1411
|
XcmV1: XcmV1;
|
|
1282
1412
|
XcmV2: XcmV2;
|
|
1413
|
+
XcmV3: XcmV3;
|
|
1414
|
+
XcmV4: XcmV4;
|
|
1415
|
+
XcmV5: XcmV5;
|
|
1283
1416
|
XcmVersion: XcmVersion;
|
|
1284
1417
|
}
|
|
1285
1418
|
}
|