@argonprotocol/mainchain 1.4.3-dev.5e4d8d6a → 1.4.3-dev.6de0a801
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/browser/index.d.ts +409 -1556
- package/browser/index.js +45 -11
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +45 -11
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +409 -1556
- package/lib/index.d.ts +409 -1556
- package/lib/index.js +45 -11
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +23 -29
- package/src/interfaces/augment-api-errors.ts +5 -3
- package/src/interfaces/augment-api-events.ts +167 -1272
- package/src/interfaces/augment-api-query.ts +148 -787
- package/src/interfaces/augment-api-rpc.ts +85 -597
- package/src/interfaces/augment-api-runtime.ts +24 -177
- package/src/interfaces/augment-api-tx.ts +275 -1400
- package/src/interfaces/augment-types.ts +46 -1352
- package/src/interfaces/ethereum/types.ts +1 -7
- package/src/interfaces/lookup.ts +371 -682
- package/src/interfaces/registry.ts +1 -275
- package/src/interfaces/types-lookup.ts +56 -698
|
@@ -5,281 +5,7 @@
|
|
|
5
5
|
// this is required to allow for ambient/previous definitions
|
|
6
6
|
import '@polkadot/types/types/registry';
|
|
7
7
|
|
|
8
|
-
import type {
|
|
9
|
-
ArgonNotaryAuditAccountHistoryLookupError,
|
|
10
|
-
ArgonNotaryAuditErrorVerifyError,
|
|
11
|
-
ArgonPrimitivesAccountAccountType,
|
|
12
|
-
ArgonPrimitivesBalanceChangeAccountOrigin,
|
|
13
|
-
ArgonPrimitivesBalanceChangeMerkleProof,
|
|
14
|
-
ArgonPrimitivesBitcoinBitcoinBlock,
|
|
15
|
-
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey,
|
|
16
|
-
ArgonPrimitivesBitcoinBitcoinNetwork,
|
|
17
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason,
|
|
18
|
-
ArgonPrimitivesBitcoinBitcoinXPub,
|
|
19
|
-
ArgonPrimitivesBitcoinCompressedBitcoinPubkey,
|
|
20
|
-
ArgonPrimitivesBitcoinH256Le,
|
|
21
|
-
ArgonPrimitivesBitcoinNetworkKind,
|
|
22
|
-
ArgonPrimitivesBitcoinOpaqueBitcoinXpub,
|
|
23
|
-
ArgonPrimitivesBitcoinUtxoRef,
|
|
24
|
-
ArgonPrimitivesBitcoinUtxoValue,
|
|
25
|
-
ArgonPrimitivesBlockSealAppPublic,
|
|
26
|
-
ArgonPrimitivesBlockSealBlockPayout,
|
|
27
|
-
ArgonPrimitivesBlockSealBlockRewardType,
|
|
28
|
-
ArgonPrimitivesBlockSealMiningBidStats,
|
|
29
|
-
ArgonPrimitivesBlockSealMiningRegistration,
|
|
30
|
-
ArgonPrimitivesBlockSealMiningSlotConfig,
|
|
31
|
-
ArgonPrimitivesBlockVoteBlockVoteT,
|
|
32
|
-
ArgonPrimitivesDigestsBlockVoteDigest,
|
|
33
|
-
ArgonPrimitivesDigestsDigestset,
|
|
34
|
-
ArgonPrimitivesDigestsFrameInfo,
|
|
35
|
-
ArgonPrimitivesDigestsNotebookDigest,
|
|
36
|
-
ArgonPrimitivesDigestsParentVotingKeyDigest,
|
|
37
|
-
ArgonPrimitivesDomainSemver,
|
|
38
|
-
ArgonPrimitivesDomainVersionHost,
|
|
39
|
-
ArgonPrimitivesDomainZoneRecord,
|
|
40
|
-
ArgonPrimitivesEthereumEthereumBeaconPreset,
|
|
41
|
-
ArgonPrimitivesEthereumEthereumExecutionBlockProof,
|
|
42
|
-
ArgonPrimitivesEthereumEthereumExecutionHeader,
|
|
43
|
-
ArgonPrimitivesEthereumEthereumLog,
|
|
44
|
-
ArgonPrimitivesEthereumEthereumProof,
|
|
45
|
-
ArgonPrimitivesEthereumEthereumReceiptProof,
|
|
46
|
-
ArgonPrimitivesForkPower,
|
|
47
|
-
ArgonPrimitivesInherentsBitcoinUtxoFunding,
|
|
48
|
-
ArgonPrimitivesInherentsBitcoinUtxoSpend,
|
|
49
|
-
ArgonPrimitivesInherentsBitcoinUtxoSync,
|
|
50
|
-
ArgonPrimitivesInherentsBlockSealInherent,
|
|
51
|
-
ArgonPrimitivesNotaryNotaryMeta,
|
|
52
|
-
ArgonPrimitivesNotaryNotaryNotebookKeyDetails,
|
|
53
|
-
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails,
|
|
54
|
-
ArgonPrimitivesNotaryNotaryRecord,
|
|
55
|
-
ArgonPrimitivesNotebookChainTransfer,
|
|
56
|
-
ArgonPrimitivesNotebookNotebookAuditResult,
|
|
57
|
-
ArgonPrimitivesNotebookNotebookHeader,
|
|
58
|
-
ArgonPrimitivesNotebookSignedNotebookHeader,
|
|
59
|
-
ArgonPrimitivesProvidersBlockSealerInfo,
|
|
60
|
-
ArgonPrimitivesProvidersOperationalRewardKind,
|
|
61
|
-
ArgonPrimitivesTickTicker,
|
|
62
|
-
ArgonPrimitivesVault,
|
|
63
|
-
ArgonPrimitivesVaultVaultError,
|
|
64
|
-
ArgonPrimitivesVaultVaultTerms,
|
|
65
|
-
ArgonRuntimeOriginCaller,
|
|
66
|
-
ArgonRuntimeProxyType,
|
|
67
|
-
ArgonRuntimeRuntime,
|
|
68
|
-
ArgonRuntimeRuntimeFreezeReason,
|
|
69
|
-
ArgonRuntimeRuntimeHoldReason,
|
|
70
|
-
ArgonRuntimeSessionKeys,
|
|
71
|
-
FinalityGrandpaEquivocationPrecommit,
|
|
72
|
-
FinalityGrandpaEquivocationPrevote,
|
|
73
|
-
FinalityGrandpaPrecommit,
|
|
74
|
-
FinalityGrandpaPrevote,
|
|
75
|
-
FrameMetadataHashExtensionCheckMetadataHash,
|
|
76
|
-
FrameMetadataHashExtensionMode,
|
|
77
|
-
FrameSupportDispatchDispatchClass,
|
|
78
|
-
FrameSupportDispatchPays,
|
|
79
|
-
FrameSupportDispatchPerDispatchClassU32,
|
|
80
|
-
FrameSupportDispatchPerDispatchClassWeight,
|
|
81
|
-
FrameSupportDispatchPerDispatchClassWeightsPerClass,
|
|
82
|
-
FrameSupportDispatchRawOrigin,
|
|
83
|
-
FrameSupportPalletId,
|
|
84
|
-
FrameSupportStorageNoDrop,
|
|
85
|
-
FrameSupportTokensFungibleImbalance,
|
|
86
|
-
FrameSupportTokensMiscBalanceStatus,
|
|
87
|
-
FrameSupportTokensMiscIdAmountRuntimeFreezeReason,
|
|
88
|
-
FrameSupportTokensMiscIdAmountRuntimeHoldReason,
|
|
89
|
-
FrameSystemAccountInfo,
|
|
90
|
-
FrameSystemCall,
|
|
91
|
-
FrameSystemCodeUpgradeAuthorization,
|
|
92
|
-
FrameSystemDispatchEventInfo,
|
|
93
|
-
FrameSystemError,
|
|
94
|
-
FrameSystemEvent,
|
|
95
|
-
FrameSystemEventRecord,
|
|
96
|
-
FrameSystemExtensionsAuthorizeCall,
|
|
97
|
-
FrameSystemExtensionsCheckGenesis,
|
|
98
|
-
FrameSystemExtensionsCheckNonZeroSender,
|
|
99
|
-
FrameSystemExtensionsCheckNonce,
|
|
100
|
-
FrameSystemExtensionsCheckSpecVersion,
|
|
101
|
-
FrameSystemExtensionsCheckTxVersion,
|
|
102
|
-
FrameSystemExtensionsCheckWeight,
|
|
103
|
-
FrameSystemExtensionsWeightReclaim,
|
|
104
|
-
FrameSystemLastRuntimeUpgradeInfo,
|
|
105
|
-
FrameSystemLimitsBlockLength,
|
|
106
|
-
FrameSystemLimitsBlockWeights,
|
|
107
|
-
FrameSystemLimitsWeightsPerClass,
|
|
108
|
-
FrameSystemPhase,
|
|
109
|
-
PalletBalancesAccountData,
|
|
110
|
-
PalletBalancesAdjustmentDirection,
|
|
111
|
-
PalletBalancesBalanceLock,
|
|
112
|
-
PalletBalancesCall,
|
|
113
|
-
PalletBalancesError,
|
|
114
|
-
PalletBalancesEvent,
|
|
115
|
-
PalletBalancesReasons,
|
|
116
|
-
PalletBalancesReserveData,
|
|
117
|
-
PalletBalancesUnexpectedKind,
|
|
118
|
-
PalletBitcoinLocksCall,
|
|
119
|
-
PalletBitcoinLocksError,
|
|
120
|
-
PalletBitcoinLocksEvent,
|
|
121
|
-
PalletBitcoinLocksHoldReason,
|
|
122
|
-
PalletBitcoinLocksLockOptions,
|
|
123
|
-
PalletBitcoinLocksLockReleaseRequest,
|
|
124
|
-
PalletBitcoinLocksLockedBitcoin,
|
|
125
|
-
PalletBitcoinLocksOrphanedUtxo,
|
|
126
|
-
PalletBitcoinLocksOrphanedUtxoCosignRequest,
|
|
127
|
-
PalletBitcoinUtxosCall,
|
|
128
|
-
PalletBitcoinUtxosError,
|
|
129
|
-
PalletBitcoinUtxosEvent,
|
|
130
|
-
PalletBlockRewardsCall,
|
|
131
|
-
PalletBlockRewardsError,
|
|
132
|
-
PalletBlockRewardsEvent,
|
|
133
|
-
PalletBlockRewardsFreezeReason,
|
|
134
|
-
PalletBlockRewardsHoldReason,
|
|
135
|
-
PalletBlockSealCall,
|
|
136
|
-
PalletBlockSealError,
|
|
137
|
-
PalletBlockSealSpecCall,
|
|
138
|
-
PalletBlockSealSpecError,
|
|
139
|
-
PalletBlockSealSpecEvent,
|
|
140
|
-
PalletCrosschainTransferAssetKind,
|
|
141
|
-
PalletCrosschainTransferBurnNotice,
|
|
142
|
-
PalletCrosschainTransferCall,
|
|
143
|
-
PalletCrosschainTransferChainConfig,
|
|
144
|
-
PalletCrosschainTransferError,
|
|
145
|
-
PalletCrosschainTransferEvent,
|
|
146
|
-
PalletCrosschainTransferSourceChain,
|
|
147
|
-
PalletCrosschainTransferTransferProof,
|
|
148
|
-
PalletDigestsError,
|
|
149
|
-
PalletDigestsEvent,
|
|
150
|
-
PalletDomainsCall,
|
|
151
|
-
PalletDomainsDomainRegistration,
|
|
152
|
-
PalletDomainsError,
|
|
153
|
-
PalletDomainsEvent,
|
|
154
|
-
PalletEthereumVerifierBasicOperatingMode,
|
|
155
|
-
PalletEthereumVerifierCall,
|
|
156
|
-
PalletEthereumVerifierCheckpointUpdate,
|
|
157
|
-
PalletEthereumVerifierError,
|
|
158
|
-
PalletEthereumVerifierEvent,
|
|
159
|
-
PalletEthereumVerifierExecutionHeaderAnchor,
|
|
160
|
-
PalletEthereumVerifierExecutionProof,
|
|
161
|
-
PalletEthereumVerifierFinalizedBeaconHeaderState,
|
|
162
|
-
PalletEthereumVerifierFork,
|
|
163
|
-
PalletEthereumVerifierForkVersions,
|
|
164
|
-
PalletEthereumVerifierNextSyncCommitteeUpdate,
|
|
165
|
-
PalletEthereumVerifierSyncAggregate,
|
|
166
|
-
PalletEthereumVerifierSyncCommittee,
|
|
167
|
-
PalletEthereumVerifierSyncCommitteePrepared,
|
|
168
|
-
PalletEthereumVerifierUpdate,
|
|
169
|
-
PalletFeeControlError,
|
|
170
|
-
PalletFeeControlEvent,
|
|
171
|
-
PalletGrandpaCall,
|
|
172
|
-
PalletGrandpaError,
|
|
173
|
-
PalletGrandpaEvent,
|
|
174
|
-
PalletGrandpaStoredPendingChange,
|
|
175
|
-
PalletGrandpaStoredState,
|
|
176
|
-
PalletLocalchainTransferCall,
|
|
177
|
-
PalletLocalchainTransferError,
|
|
178
|
-
PalletLocalchainTransferEvent,
|
|
179
|
-
PalletLocalchainTransferQueuedTransferOut,
|
|
180
|
-
PalletMiningSlotCall,
|
|
181
|
-
PalletMiningSlotError,
|
|
182
|
-
PalletMiningSlotEvent,
|
|
183
|
-
PalletMiningSlotHoldReason,
|
|
184
|
-
PalletMiningSlotMinerNonceScoring,
|
|
185
|
-
PalletMintCall,
|
|
186
|
-
PalletMintError,
|
|
187
|
-
PalletMintEvent,
|
|
188
|
-
PalletMintMintAction,
|
|
189
|
-
PalletMintMintType,
|
|
190
|
-
PalletMultisigCall,
|
|
191
|
-
PalletMultisigError,
|
|
192
|
-
PalletMultisigEvent,
|
|
193
|
-
PalletMultisigMultisig,
|
|
194
|
-
PalletMultisigTimepoint,
|
|
195
|
-
PalletNotariesCall,
|
|
196
|
-
PalletNotariesError,
|
|
197
|
-
PalletNotariesEvent,
|
|
198
|
-
PalletNotebookCall,
|
|
199
|
-
PalletNotebookError,
|
|
200
|
-
PalletNotebookEvent,
|
|
201
|
-
PalletOperationalAccountsAccountOwnershipProof,
|
|
202
|
-
PalletOperationalAccountsCall,
|
|
203
|
-
PalletOperationalAccountsError,
|
|
204
|
-
PalletOperationalAccountsEvent,
|
|
205
|
-
PalletOperationalAccountsOpaqueEncryptionPubkey,
|
|
206
|
-
PalletOperationalAccountsOperationalAccount,
|
|
207
|
-
PalletOperationalAccountsOperationalProgressPatch,
|
|
208
|
-
PalletOperationalAccountsReferralProof,
|
|
209
|
-
PalletOperationalAccountsRegistration,
|
|
210
|
-
PalletOperationalAccountsRegistrationV1,
|
|
211
|
-
PalletOperationalAccountsRewardsConfig,
|
|
212
|
-
PalletPriceIndexCall,
|
|
213
|
-
PalletPriceIndexCpiMeasurementBucket,
|
|
214
|
-
PalletPriceIndexError,
|
|
215
|
-
PalletPriceIndexEvent,
|
|
216
|
-
PalletPriceIndexPriceIndex,
|
|
217
|
-
PalletProxyAnnouncement,
|
|
218
|
-
PalletProxyCall,
|
|
219
|
-
PalletProxyDepositKind,
|
|
220
|
-
PalletProxyError,
|
|
221
|
-
PalletProxyEvent,
|
|
222
|
-
PalletProxyProxyDefinition,
|
|
223
|
-
PalletSudoCall,
|
|
224
|
-
PalletSudoError,
|
|
225
|
-
PalletSudoEvent,
|
|
226
|
-
PalletTicksCall,
|
|
227
|
-
PalletTicksError,
|
|
228
|
-
PalletTimestampCall,
|
|
229
|
-
PalletTransactionPaymentChargeTransactionPayment,
|
|
230
|
-
PalletTransactionPaymentEvent,
|
|
231
|
-
PalletTransactionPaymentReleases,
|
|
232
|
-
PalletTreasuryBondLot,
|
|
233
|
-
PalletTreasuryBondLotAllocation,
|
|
234
|
-
PalletTreasuryBondLotSummary,
|
|
235
|
-
PalletTreasuryBondReleaseReason,
|
|
236
|
-
PalletTreasuryCall,
|
|
237
|
-
PalletTreasuryError,
|
|
238
|
-
PalletTreasuryEvent,
|
|
239
|
-
PalletTreasuryFrameVaultCapital,
|
|
240
|
-
PalletTreasuryHoldReason,
|
|
241
|
-
PalletTreasuryVaultCapital,
|
|
242
|
-
PalletTxPauseCall,
|
|
243
|
-
PalletTxPauseError,
|
|
244
|
-
PalletTxPauseEvent,
|
|
245
|
-
PalletUtilityCall,
|
|
246
|
-
PalletUtilityError,
|
|
247
|
-
PalletUtilityEvent,
|
|
248
|
-
PalletVaultsCall,
|
|
249
|
-
PalletVaultsError,
|
|
250
|
-
PalletVaultsEvent,
|
|
251
|
-
PalletVaultsHoldReason,
|
|
252
|
-
PalletVaultsRecentCapacityDrop,
|
|
253
|
-
PalletVaultsVaultConfig,
|
|
254
|
-
PalletVaultsVaultFrameRevenue,
|
|
255
|
-
SnowbridgeAmclBls381Big,
|
|
256
|
-
SnowbridgeAmclBls381Ecp,
|
|
257
|
-
SnowbridgeAmclBls381Fp,
|
|
258
|
-
SnowbridgeBeaconPrimitivesBeaconHeader,
|
|
259
|
-
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader,
|
|
260
|
-
SnowbridgeBeaconPrimitivesExecutionPayloadHeader,
|
|
261
|
-
SnowbridgeBeaconPrimitivesPublicKey,
|
|
262
|
-
SnowbridgeBeaconPrimitivesSignature,
|
|
263
|
-
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader,
|
|
264
|
-
SnowbridgeMilagroBlsKeysPublicKey,
|
|
265
|
-
SpArithmeticArithmeticError,
|
|
266
|
-
SpConsensusGrandpaAppPublic,
|
|
267
|
-
SpConsensusGrandpaAppSignature,
|
|
268
|
-
SpConsensusGrandpaEquivocation,
|
|
269
|
-
SpConsensusGrandpaEquivocationProof,
|
|
270
|
-
SpCoreVoid,
|
|
271
|
-
SpRuntimeDigest,
|
|
272
|
-
SpRuntimeDigestDigestItem,
|
|
273
|
-
SpRuntimeDispatchError,
|
|
274
|
-
SpRuntimeModuleError,
|
|
275
|
-
SpRuntimeMultiSignature,
|
|
276
|
-
SpRuntimeProvingTrieTrieError,
|
|
277
|
-
SpRuntimeTokenError,
|
|
278
|
-
SpRuntimeTransactionalError,
|
|
279
|
-
SpVersionRuntimeVersion,
|
|
280
|
-
SpWeightsRuntimeDbWeight,
|
|
281
|
-
SpWeightsWeightV2Weight,
|
|
282
|
-
} from '@polkadot/types/lookup';
|
|
8
|
+
import type { ArgonNotaryAuditAccountHistoryLookupError, ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesAccountAccountType, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBalanceChangeMerkleProof, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinRejectedReason, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, ArgonPrimitivesBitcoinH256Le, ArgonPrimitivesBitcoinNetworkKind, ArgonPrimitivesBitcoinOpaqueBitcoinXpub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealAppPublic, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealBlockRewardType, ArgonPrimitivesBlockSealMiningBidStats, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBlockVoteBlockVoteT, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsDigestset, ArgonPrimitivesDigestsFrameInfo, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesEthereumEthereumBeaconPreset, ArgonPrimitivesEthereumEthereumExecutionBlockProof, ArgonPrimitivesEthereumEthereumExecutionHeader, ArgonPrimitivesEthereumEthereumLog, ArgonPrimitivesEthereumEthereumProof, ArgonPrimitivesEthereumEthereumReceiptProof, ArgonPrimitivesForkPower, ArgonPrimitivesInherentsBitcoinUtxoFunding, ArgonPrimitivesInherentsBitcoinUtxoSpend, ArgonPrimitivesInherentsBitcoinUtxoSync, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesNotebookChainTransfer, ArgonPrimitivesNotebookNotebookAuditResult, ArgonPrimitivesNotebookNotebookHeader, ArgonPrimitivesNotebookSignedNotebookHeader, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesProvidersOperationalRewardKind, ArgonPrimitivesTickTicker, ArgonPrimitivesVault, ArgonPrimitivesVaultVaultError, ArgonPrimitivesVaultVaultTerms, ArgonRuntimeOriginCaller, ArgonRuntimeProxyType, ArgonRuntimeRuntime, ArgonRuntimeRuntimeFreezeReason, ArgonRuntimeRuntimeHoldReason, ArgonRuntimeSessionKeys, FinalityGrandpaEquivocationPrecommit, FinalityGrandpaEquivocationPrevote, FinalityGrandpaPrecommit, FinalityGrandpaPrevote, FrameMetadataHashExtensionCheckMetadataHash, FrameMetadataHashExtensionMode, FrameSupportDispatchDispatchClass, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportStorageNoDrop, FrameSupportTokensFungibleImbalance, FrameSupportTokensMiscBalanceStatus, FrameSupportTokensMiscIdAmountRuntimeFreezeReason, FrameSupportTokensMiscIdAmountRuntimeHoldReason, FrameSystemAccountInfo, FrameSystemCall, FrameSystemCodeUpgradeAuthorization, FrameSystemDispatchEventInfo, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsAuthorizeCall, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemExtensionsWeightReclaim, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesAdjustmentDirection, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletBalancesUnexpectedKind, PalletBitcoinLocksCall, PalletBitcoinLocksError, PalletBitcoinLocksEvent, PalletBitcoinLocksHoldReason, PalletBitcoinLocksLockOptions, PalletBitcoinLocksLockReleaseRequest, PalletBitcoinLocksLockedBitcoin, PalletBitcoinLocksOrphanedUtxo, PalletBitcoinLocksOrphanedUtxoCosignRequest, PalletBitcoinUtxosCall, PalletBitcoinUtxosError, PalletBitcoinUtxosEvent, PalletBlockRewardsCall, PalletBlockRewardsError, PalletBlockRewardsEvent, PalletBlockRewardsFreezeReason, PalletBlockRewardsHoldReason, PalletBlockSealCall, PalletBlockSealError, PalletBlockSealSpecCall, PalletBlockSealSpecError, PalletBlockSealSpecEvent, PalletCrosschainTransferAssetKind, PalletCrosschainTransferBurnNotice, PalletCrosschainTransferCall, PalletCrosschainTransferChainConfig, PalletCrosschainTransferError, PalletCrosschainTransferEvent, PalletCrosschainTransferSourceChain, PalletCrosschainTransferTransferProof, PalletDigestsError, PalletDigestsEvent, PalletDomainsCall, PalletDomainsDomainRegistration, PalletDomainsError, PalletDomainsEvent, PalletEthereumVerifierBasicOperatingMode, PalletEthereumVerifierCall, PalletEthereumVerifierCheckpointUpdate, PalletEthereumVerifierError, PalletEthereumVerifierEvent, PalletEthereumVerifierExecutionHeaderAnchor, PalletEthereumVerifierExecutionProof, PalletEthereumVerifierFinalizedBeaconHeaderState, PalletEthereumVerifierFork, PalletEthereumVerifierForkVersions, PalletEthereumVerifierNextSyncCommitteeUpdate, PalletEthereumVerifierSyncAggregate, PalletEthereumVerifierSyncCommittee, PalletEthereumVerifierSyncCommitteePrepared, PalletEthereumVerifierUpdate, PalletFeeControlError, PalletFeeControlEvent, PalletGrandpaCall, PalletGrandpaError, PalletGrandpaEvent, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletLocalchainTransferCall, PalletLocalchainTransferError, PalletLocalchainTransferEvent, PalletLocalchainTransferQueuedTransferOut, PalletMiningSlotCall, PalletMiningSlotError, PalletMiningSlotEvent, PalletMiningSlotHoldReason, PalletMiningSlotMinerNonceScoring, PalletMintCall, PalletMintError, PalletMintEvent, PalletMintMintAction, PalletMintMintType, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletNotariesCall, PalletNotariesError, PalletNotariesEvent, PalletNotebookCall, PalletNotebookError, PalletNotebookEvent, PalletOperationalAccountsAccountOwnershipProof, PalletOperationalAccountsCall, PalletOperationalAccountsError, PalletOperationalAccountsEvent, PalletOperationalAccountsOpaqueEncryptionPubkey, PalletOperationalAccountsOperationalAccount, PalletOperationalAccountsOperationalProgressPatch, PalletOperationalAccountsReferralProof, PalletOperationalAccountsRegistration, PalletOperationalAccountsRegistrationV1, PalletOperationalAccountsRewardsConfig, PalletPriceIndexCall, PalletPriceIndexCpiMeasurementBucket, PalletPriceIndexError, PalletPriceIndexEvent, PalletPriceIndexPriceIndex, PalletProxyAnnouncement, PalletProxyCall, PalletProxyDepositKind, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTicksCall, PalletTicksError, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryBondLot, PalletTreasuryBondLotAllocation, PalletTreasuryBondLotSummary, PalletTreasuryBondReleaseReason, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryFrameVaultCapital, PalletTreasuryHoldReason, PalletTreasuryVaultCapital, PalletTxPauseCall, PalletTxPauseError, PalletTxPauseEvent, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletVaultsCall, PalletVaultsError, PalletVaultsEvent, PalletVaultsHoldReason, PalletVaultsRecentCapacityDrop, PalletVaultsVaultConfig, PalletVaultsVaultFrameRevenue, SnowbridgeAmclBls381Big, SnowbridgeAmclBls381Ecp, SnowbridgeAmclBls381Fp, SnowbridgeBeaconPrimitivesBeaconHeader, SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader, SnowbridgeBeaconPrimitivesExecutionPayloadHeader, SnowbridgeBeaconPrimitivesPublicKey, SnowbridgeBeaconPrimitivesSignature, SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader, SnowbridgeMilagroBlsKeysPublicKey, SpArithmeticArithmeticError, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeProvingTrieTrieError, SpRuntimeTokenError, SpRuntimeTransactionalError, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight } from '@polkadot/types/lookup';
|
|
283
9
|
|
|
284
10
|
declare module '@polkadot/types/types/registry' {
|
|
285
11
|
interface InterfaceTypes {
|