@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,1383 +5,77 @@
|
|
|
5
5
|
// this is required to allow for ambient/previous definitions
|
|
6
6
|
import type {} from '@polkadot/types/types/registry';
|
|
7
7
|
|
|
8
|
-
import type {
|
|
9
|
-
ArgonPrimitivesEthereumEthereumExecutionBlockProof,
|
|
10
|
-
ArgonPrimitivesEthereumEthereumExecutionHeader,
|
|
11
|
-
ArgonPrimitivesEthereumEthereumLog,
|
|
12
|
-
ArgonPrimitivesEthereumEthereumProof,
|
|
13
|
-
ArgonPrimitivesEthereumEthereumReceiptProof,
|
|
14
|
-
ArgonPrimitivesEthereumEthereumVerifyError,
|
|
15
|
-
} from '@argonprotocol/mainchain/interfaces/ethereum';
|
|
8
|
+
import type { ArgonPrimitivesEthereumEthereumExecutionBlockProof, ArgonPrimitivesEthereumEthereumExecutionHeader, ArgonPrimitivesEthereumEthereumLog, ArgonPrimitivesEthereumEthereumProof, ArgonPrimitivesEthereumEthereumReceiptProof, ArgonPrimitivesEthereumEthereumVerifyError } from '@argonprotocol/mainchain/interfaces/ethereum';
|
|
16
9
|
import type { Data, StorageKey } from '@polkadot/types';
|
|
17
|
-
import type {
|
|
18
|
-
BitVec,
|
|
19
|
-
Bool,
|
|
20
|
-
Bytes,
|
|
21
|
-
F32,
|
|
22
|
-
F64,
|
|
23
|
-
I128,
|
|
24
|
-
I16,
|
|
25
|
-
I256,
|
|
26
|
-
I32,
|
|
27
|
-
I64,
|
|
28
|
-
I8,
|
|
29
|
-
ISize,
|
|
30
|
-
Json,
|
|
31
|
-
Null,
|
|
32
|
-
OptionBool,
|
|
33
|
-
Raw,
|
|
34
|
-
Text,
|
|
35
|
-
Type,
|
|
36
|
-
U128,
|
|
37
|
-
U16,
|
|
38
|
-
U256,
|
|
39
|
-
U32,
|
|
40
|
-
U64,
|
|
41
|
-
U8,
|
|
42
|
-
USize,
|
|
43
|
-
bool,
|
|
44
|
-
f32,
|
|
45
|
-
f64,
|
|
46
|
-
i128,
|
|
47
|
-
i16,
|
|
48
|
-
i256,
|
|
49
|
-
i32,
|
|
50
|
-
i64,
|
|
51
|
-
i8,
|
|
52
|
-
isize,
|
|
53
|
-
u128,
|
|
54
|
-
u16,
|
|
55
|
-
u256,
|
|
56
|
-
u32,
|
|
57
|
-
u64,
|
|
58
|
-
u8,
|
|
59
|
-
usize,
|
|
60
|
-
} from '@polkadot/types-codec';
|
|
10
|
+
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
|
|
61
11
|
import type { TAssetConversion } from '@polkadot/types/interfaces/assetConversion';
|
|
62
|
-
import type {
|
|
63
|
-
|
|
64
|
-
AssetApprovalKey,
|
|
65
|
-
AssetBalance,
|
|
66
|
-
AssetDestroyWitness,
|
|
67
|
-
AssetDetails,
|
|
68
|
-
AssetMetadata,
|
|
69
|
-
TAssetBalance,
|
|
70
|
-
TAssetDepositBalance,
|
|
71
|
-
} from '@polkadot/types/interfaces/assets';
|
|
72
|
-
import type {
|
|
73
|
-
BlockAttestations,
|
|
74
|
-
IncludedBlocks,
|
|
75
|
-
MoreAttestations,
|
|
76
|
-
} from '@polkadot/types/interfaces/attestations';
|
|
12
|
+
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
|
|
13
|
+
import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
|
|
77
14
|
import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
|
|
78
15
|
import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';
|
|
79
16
|
import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';
|
|
80
|
-
import type {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
BabeGenesisConfiguration,
|
|
87
|
-
BabeGenesisConfigurationV1,
|
|
88
|
-
BabeWeight,
|
|
89
|
-
Epoch,
|
|
90
|
-
EpochAuthorship,
|
|
91
|
-
MaybeRandomness,
|
|
92
|
-
MaybeVrf,
|
|
93
|
-
NextConfigDescriptor,
|
|
94
|
-
NextConfigDescriptorV1,
|
|
95
|
-
OpaqueKeyOwnershipProof,
|
|
96
|
-
Randomness,
|
|
97
|
-
RawBabePreDigest,
|
|
98
|
-
RawBabePreDigestCompat,
|
|
99
|
-
RawBabePreDigestPrimary,
|
|
100
|
-
RawBabePreDigestPrimaryTo159,
|
|
101
|
-
RawBabePreDigestSecondaryPlain,
|
|
102
|
-
RawBabePreDigestSecondaryTo159,
|
|
103
|
-
RawBabePreDigestSecondaryVRF,
|
|
104
|
-
RawBabePreDigestTo159,
|
|
105
|
-
SlotNumber,
|
|
106
|
-
VrfData,
|
|
107
|
-
VrfOutput,
|
|
108
|
-
VrfProof,
|
|
109
|
-
} from '@polkadot/types/interfaces/babe';
|
|
110
|
-
import type {
|
|
111
|
-
AccountData,
|
|
112
|
-
BalanceLock,
|
|
113
|
-
BalanceLockTo212,
|
|
114
|
-
BalanceStatus,
|
|
115
|
-
Reasons,
|
|
116
|
-
ReserveData,
|
|
117
|
-
ReserveIdentifier,
|
|
118
|
-
VestingSchedule,
|
|
119
|
-
WithdrawReasons,
|
|
120
|
-
} from '@polkadot/types/interfaces/balances';
|
|
121
|
-
import type {
|
|
122
|
-
BeefyAuthoritySet,
|
|
123
|
-
BeefyCommitment,
|
|
124
|
-
BeefyCompactSignedCommitment,
|
|
125
|
-
BeefyEquivocationProof,
|
|
126
|
-
BeefyId,
|
|
127
|
-
BeefyNextAuthoritySet,
|
|
128
|
-
BeefyPayload,
|
|
129
|
-
BeefyPayloadId,
|
|
130
|
-
BeefySignedCommitment,
|
|
131
|
-
BeefyVersionedFinalityProof,
|
|
132
|
-
BeefyVoteMessage,
|
|
133
|
-
MmrRootHash,
|
|
134
|
-
ValidatorSet,
|
|
135
|
-
ValidatorSetId,
|
|
136
|
-
} from '@polkadot/types/interfaces/beefy';
|
|
137
|
-
import type {
|
|
138
|
-
BenchmarkBatch,
|
|
139
|
-
BenchmarkConfig,
|
|
140
|
-
BenchmarkList,
|
|
141
|
-
BenchmarkMetadata,
|
|
142
|
-
BenchmarkParameter,
|
|
143
|
-
BenchmarkResult,
|
|
144
|
-
} from '@polkadot/types/interfaces/benchmark';
|
|
145
|
-
import type {
|
|
146
|
-
CheckInherentsResult,
|
|
147
|
-
InherentData,
|
|
148
|
-
InherentIdentifier,
|
|
149
|
-
} from '@polkadot/types/interfaces/blockbuilder';
|
|
150
|
-
import type {
|
|
151
|
-
BridgeMessageId,
|
|
152
|
-
BridgedBlockHash,
|
|
153
|
-
BridgedBlockNumber,
|
|
154
|
-
BridgedHeader,
|
|
155
|
-
CallOrigin,
|
|
156
|
-
ChainId,
|
|
157
|
-
DeliveredMessages,
|
|
158
|
-
DispatchFeePayment,
|
|
159
|
-
InboundLaneData,
|
|
160
|
-
InboundRelayer,
|
|
161
|
-
InitializationData,
|
|
162
|
-
LaneId,
|
|
163
|
-
MessageData,
|
|
164
|
-
MessageKey,
|
|
165
|
-
MessageNonce,
|
|
166
|
-
MessagesDeliveryProofOf,
|
|
167
|
-
MessagesProofOf,
|
|
168
|
-
OperatingMode,
|
|
169
|
-
OutboundLaneData,
|
|
170
|
-
OutboundMessageFee,
|
|
171
|
-
OutboundPayload,
|
|
172
|
-
Parameter,
|
|
173
|
-
RelayerId,
|
|
174
|
-
UnrewardedRelayer,
|
|
175
|
-
UnrewardedRelayersState,
|
|
176
|
-
} from '@polkadot/types/interfaces/bridges';
|
|
17
|
+
import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';
|
|
18
|
+
import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';
|
|
19
|
+
import type { BeefyAuthoritySet, BeefyCommitment, BeefyCompactSignedCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVersionedFinalityProof, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';
|
|
20
|
+
import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';
|
|
21
|
+
import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';
|
|
22
|
+
import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';
|
|
177
23
|
import type { BlockHash } from '@polkadot/types/interfaces/chain';
|
|
178
24
|
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
|
|
179
25
|
import type { StatementKind } from '@polkadot/types/interfaces/claims';
|
|
180
|
-
import type {
|
|
181
|
-
CollectiveOrigin,
|
|
182
|
-
MemberCount,
|
|
183
|
-
ProposalIndex,
|
|
184
|
-
Votes,
|
|
185
|
-
VotesTo230,
|
|
186
|
-
} from '@polkadot/types/interfaces/collective';
|
|
26
|
+
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
|
|
187
27
|
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
|
|
188
|
-
import type {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
CodeUploadResult,
|
|
194
|
-
CodeUploadResultValue,
|
|
195
|
-
ContractCallFlags,
|
|
196
|
-
ContractCallRequest,
|
|
197
|
-
ContractExecResult,
|
|
198
|
-
ContractExecResultOk,
|
|
199
|
-
ContractExecResultResult,
|
|
200
|
-
ContractExecResultSuccessTo255,
|
|
201
|
-
ContractExecResultSuccessTo260,
|
|
202
|
-
ContractExecResultTo255,
|
|
203
|
-
ContractExecResultTo260,
|
|
204
|
-
ContractExecResultTo267,
|
|
205
|
-
ContractExecResultU64,
|
|
206
|
-
ContractInfo,
|
|
207
|
-
ContractInstantiateResult,
|
|
208
|
-
ContractInstantiateResultTo267,
|
|
209
|
-
ContractInstantiateResultTo299,
|
|
210
|
-
ContractInstantiateResultU64,
|
|
211
|
-
ContractReturnFlags,
|
|
212
|
-
ContractStorageKey,
|
|
213
|
-
DeletedContract,
|
|
214
|
-
ExecReturnValue,
|
|
215
|
-
Gas,
|
|
216
|
-
HostFnWeights,
|
|
217
|
-
HostFnWeightsTo264,
|
|
218
|
-
InstantiateRequest,
|
|
219
|
-
InstantiateRequestV1,
|
|
220
|
-
InstantiateRequestV2,
|
|
221
|
-
InstantiateReturnValue,
|
|
222
|
-
InstantiateReturnValueOk,
|
|
223
|
-
InstantiateReturnValueTo267,
|
|
224
|
-
InstructionWeights,
|
|
225
|
-
Limits,
|
|
226
|
-
LimitsTo264,
|
|
227
|
-
PrefabWasmModule,
|
|
228
|
-
RentProjection,
|
|
229
|
-
Schedule,
|
|
230
|
-
ScheduleTo212,
|
|
231
|
-
ScheduleTo258,
|
|
232
|
-
ScheduleTo264,
|
|
233
|
-
SeedOf,
|
|
234
|
-
StorageDeposit,
|
|
235
|
-
TombstoneContractInfo,
|
|
236
|
-
TrieId,
|
|
237
|
-
} from '@polkadot/types/interfaces/contracts';
|
|
238
|
-
import type {
|
|
239
|
-
ContractConstructorSpecLatest,
|
|
240
|
-
ContractConstructorSpecV0,
|
|
241
|
-
ContractConstructorSpecV1,
|
|
242
|
-
ContractConstructorSpecV2,
|
|
243
|
-
ContractConstructorSpecV3,
|
|
244
|
-
ContractConstructorSpecV4,
|
|
245
|
-
ContractContractSpecV0,
|
|
246
|
-
ContractContractSpecV1,
|
|
247
|
-
ContractContractSpecV2,
|
|
248
|
-
ContractContractSpecV3,
|
|
249
|
-
ContractContractSpecV4,
|
|
250
|
-
ContractContractSpecV5,
|
|
251
|
-
ContractContractSpecV6,
|
|
252
|
-
ContractCryptoHasher,
|
|
253
|
-
ContractDiscriminant,
|
|
254
|
-
ContractDisplayName,
|
|
255
|
-
ContractEnvironmentV4,
|
|
256
|
-
ContractEventParamSpecLatest,
|
|
257
|
-
ContractEventParamSpecV0,
|
|
258
|
-
ContractEventParamSpecV2,
|
|
259
|
-
ContractEventSpecLatest,
|
|
260
|
-
ContractEventSpecV0,
|
|
261
|
-
ContractEventSpecV1,
|
|
262
|
-
ContractEventSpecV2,
|
|
263
|
-
ContractEventSpecV3,
|
|
264
|
-
ContractLayoutArray,
|
|
265
|
-
ContractLayoutCell,
|
|
266
|
-
ContractLayoutEnum,
|
|
267
|
-
ContractLayoutHash,
|
|
268
|
-
ContractLayoutHashingStrategy,
|
|
269
|
-
ContractLayoutKey,
|
|
270
|
-
ContractLayoutStruct,
|
|
271
|
-
ContractLayoutStructField,
|
|
272
|
-
ContractMessageParamSpecLatest,
|
|
273
|
-
ContractMessageParamSpecV0,
|
|
274
|
-
ContractMessageParamSpecV2,
|
|
275
|
-
ContractMessageSpecLatest,
|
|
276
|
-
ContractMessageSpecV0,
|
|
277
|
-
ContractMessageSpecV1,
|
|
278
|
-
ContractMessageSpecV2,
|
|
279
|
-
ContractMessageSpecV3,
|
|
280
|
-
ContractMetadata,
|
|
281
|
-
ContractMetadataLatest,
|
|
282
|
-
ContractMetadataV0,
|
|
283
|
-
ContractMetadataV1,
|
|
284
|
-
ContractMetadataV2,
|
|
285
|
-
ContractMetadataV3,
|
|
286
|
-
ContractMetadataV4,
|
|
287
|
-
ContractMetadataV5,
|
|
288
|
-
ContractMetadataV6,
|
|
289
|
-
ContractProject,
|
|
290
|
-
ContractProjectContract,
|
|
291
|
-
ContractProjectInfo,
|
|
292
|
-
ContractProjectSource,
|
|
293
|
-
ContractProjectV0,
|
|
294
|
-
ContractReviveProjectInfo,
|
|
295
|
-
ContractReviveProjectSource,
|
|
296
|
-
ContractSelector,
|
|
297
|
-
ContractStorageLayout,
|
|
298
|
-
ContractTypeSpec,
|
|
299
|
-
} from '@polkadot/types/interfaces/contractsAbi';
|
|
300
|
-
import type {
|
|
301
|
-
FundIndex,
|
|
302
|
-
FundInfo,
|
|
303
|
-
LastContribution,
|
|
304
|
-
TrieIndex,
|
|
305
|
-
} from '@polkadot/types/interfaces/crowdloan';
|
|
306
|
-
import type {
|
|
307
|
-
CollationInfo,
|
|
308
|
-
CollationInfoV1,
|
|
309
|
-
ConfigData,
|
|
310
|
-
MessageId,
|
|
311
|
-
OverweightIndex,
|
|
312
|
-
PageCounter,
|
|
313
|
-
PageIndexData,
|
|
314
|
-
} from '@polkadot/types/interfaces/cumulus';
|
|
315
|
-
import type {
|
|
316
|
-
AccountVote,
|
|
317
|
-
AccountVoteSplit,
|
|
318
|
-
AccountVoteStandard,
|
|
319
|
-
Conviction,
|
|
320
|
-
Delegations,
|
|
321
|
-
PreimageStatus,
|
|
322
|
-
PreimageStatusAvailable,
|
|
323
|
-
PriorLock,
|
|
324
|
-
PropIndex,
|
|
325
|
-
Proposal,
|
|
326
|
-
ProxyState,
|
|
327
|
-
ReferendumIndex,
|
|
328
|
-
ReferendumInfo,
|
|
329
|
-
ReferendumInfoFinished,
|
|
330
|
-
ReferendumInfoTo239,
|
|
331
|
-
ReferendumStatus,
|
|
332
|
-
Tally,
|
|
333
|
-
Voting,
|
|
334
|
-
VotingDelegating,
|
|
335
|
-
VotingDirect,
|
|
336
|
-
VotingDirectVote,
|
|
337
|
-
} from '@polkadot/types/interfaces/democracy';
|
|
28
|
+
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';
|
|
29
|
+
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';
|
|
30
|
+
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
|
|
31
|
+
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
|
|
32
|
+
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';
|
|
338
33
|
import type { BlockStats } from '@polkadot/types/interfaces/dev';
|
|
339
|
-
import type {
|
|
340
|
-
|
|
341
|
-
DispatchResultWithPostInfo,
|
|
342
|
-
PostDispatchInfo,
|
|
343
|
-
XcmDryRunApiError,
|
|
344
|
-
XcmDryRunEffects,
|
|
345
|
-
} from '@polkadot/types/interfaces/dryRunApi';
|
|
346
|
-
import type {
|
|
347
|
-
ApprovalFlag,
|
|
348
|
-
DefunctVoter,
|
|
349
|
-
Renouncing,
|
|
350
|
-
SetIndex,
|
|
351
|
-
Vote,
|
|
352
|
-
VoteIndex,
|
|
353
|
-
VoteThreshold,
|
|
354
|
-
VoterInfo,
|
|
355
|
-
} from '@polkadot/types/interfaces/elections';
|
|
34
|
+
import type { CallDryRunEffects, DispatchResultWithPostInfo, PostDispatchInfo, XcmDryRunApiError, XcmDryRunEffects } from '@polkadot/types/interfaces/dryRunApi';
|
|
35
|
+
import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';
|
|
356
36
|
import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';
|
|
357
|
-
import type {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
BlockV2,
|
|
361
|
-
BlockV3,
|
|
362
|
-
EIP1559Transaction,
|
|
363
|
-
EIP2930Transaction,
|
|
364
|
-
EIP7702Transaction,
|
|
365
|
-
EthAccessList,
|
|
366
|
-
EthAccessListItem,
|
|
367
|
-
EthAccount,
|
|
368
|
-
EthAddress,
|
|
369
|
-
EthAuthorizationList,
|
|
370
|
-
EthAuthorizationListItem,
|
|
371
|
-
EthAuthorizationSignature,
|
|
372
|
-
EthBlock,
|
|
373
|
-
EthBloom,
|
|
374
|
-
EthCallRequest,
|
|
375
|
-
EthFeeHistory,
|
|
376
|
-
EthFilter,
|
|
377
|
-
EthFilterAddress,
|
|
378
|
-
EthFilterChanges,
|
|
379
|
-
EthFilterTopic,
|
|
380
|
-
EthFilterTopicEntry,
|
|
381
|
-
EthFilterTopicInner,
|
|
382
|
-
EthHeader,
|
|
383
|
-
EthLegacyTransactionSignature,
|
|
384
|
-
EthLog,
|
|
385
|
-
EthReceipt,
|
|
386
|
-
EthReceiptV0,
|
|
387
|
-
EthReceiptV3,
|
|
388
|
-
EthReceiptV4,
|
|
389
|
-
EthRichBlock,
|
|
390
|
-
EthRichHeader,
|
|
391
|
-
EthStorageProof,
|
|
392
|
-
EthSubKind,
|
|
393
|
-
EthSubParams,
|
|
394
|
-
EthSubResult,
|
|
395
|
-
EthSyncInfo,
|
|
396
|
-
EthSyncStatus,
|
|
397
|
-
EthTransaction,
|
|
398
|
-
EthTransactionAction,
|
|
399
|
-
EthTransactionCondition,
|
|
400
|
-
EthTransactionRequest,
|
|
401
|
-
EthTransactionSignature,
|
|
402
|
-
EthTransactionStatus,
|
|
403
|
-
EthWork,
|
|
404
|
-
EthereumAccountId,
|
|
405
|
-
EthereumAddress,
|
|
406
|
-
EthereumLookupSource,
|
|
407
|
-
EthereumSignature,
|
|
408
|
-
LegacyTransaction,
|
|
409
|
-
TransactionV0,
|
|
410
|
-
TransactionV1,
|
|
411
|
-
TransactionV2,
|
|
412
|
-
TransactionV3,
|
|
413
|
-
} from '@polkadot/types/interfaces/eth';
|
|
414
|
-
import type {
|
|
415
|
-
EvmAccount,
|
|
416
|
-
EvmCallInfo,
|
|
417
|
-
EvmCallInfoV2,
|
|
418
|
-
EvmCreateInfo,
|
|
419
|
-
EvmCreateInfoV2,
|
|
420
|
-
EvmLog,
|
|
421
|
-
EvmVicinity,
|
|
422
|
-
EvmWeightInfo,
|
|
423
|
-
ExitError,
|
|
424
|
-
ExitFatal,
|
|
425
|
-
ExitReason,
|
|
426
|
-
ExitRevert,
|
|
427
|
-
ExitSucceed,
|
|
428
|
-
} from '@polkadot/types/interfaces/evm';
|
|
429
|
-
import type {
|
|
430
|
-
AnySignature,
|
|
431
|
-
EcdsaSignature,
|
|
432
|
-
Ed25519Signature,
|
|
433
|
-
Era,
|
|
434
|
-
Extrinsic,
|
|
435
|
-
ExtrinsicEra,
|
|
436
|
-
ExtrinsicPayload,
|
|
437
|
-
ExtrinsicPayloadUnknown,
|
|
438
|
-
ExtrinsicPayloadV4,
|
|
439
|
-
ExtrinsicPayloadV5,
|
|
440
|
-
ExtrinsicSignature,
|
|
441
|
-
ExtrinsicSignatureV4,
|
|
442
|
-
ExtrinsicSignatureV5,
|
|
443
|
-
ExtrinsicUnknown,
|
|
444
|
-
ExtrinsicV4,
|
|
445
|
-
ExtrinsicV5,
|
|
446
|
-
ImmortalEra,
|
|
447
|
-
MortalEra,
|
|
448
|
-
MultiSignature,
|
|
449
|
-
Signature,
|
|
450
|
-
SignerPayload,
|
|
451
|
-
Sr25519Signature,
|
|
452
|
-
} from '@polkadot/types/interfaces/extrinsics';
|
|
37
|
+
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';
|
|
38
|
+
import type { EvmAccount, EvmCallInfo, EvmCallInfoV2, EvmCreateInfo, EvmCreateInfoV2, EvmLog, EvmVicinity, EvmWeightInfo, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';
|
|
39
|
+
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';
|
|
453
40
|
import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';
|
|
454
|
-
import type {
|
|
455
|
-
AssetOptions,
|
|
456
|
-
Owner,
|
|
457
|
-
PermissionLatest,
|
|
458
|
-
PermissionVersions,
|
|
459
|
-
PermissionsV1,
|
|
460
|
-
} from '@polkadot/types/interfaces/genericAsset';
|
|
41
|
+
import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';
|
|
461
42
|
import type { GenesisBuildErr } from '@polkadot/types/interfaces/genesisBuilder';
|
|
462
|
-
import type {
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
GiltBid,
|
|
467
|
-
} from '@polkadot/types/interfaces/gilt';
|
|
468
|
-
import type {
|
|
469
|
-
AuthorityIndex,
|
|
470
|
-
AuthorityList,
|
|
471
|
-
AuthoritySet,
|
|
472
|
-
AuthoritySetChange,
|
|
473
|
-
AuthoritySetChanges,
|
|
474
|
-
AuthorityWeight,
|
|
475
|
-
DelayKind,
|
|
476
|
-
DelayKindBest,
|
|
477
|
-
EncodedFinalityProofs,
|
|
478
|
-
ForkTreePendingChange,
|
|
479
|
-
ForkTreePendingChangeNode,
|
|
480
|
-
GrandpaCommit,
|
|
481
|
-
GrandpaEquivocation,
|
|
482
|
-
GrandpaEquivocationProof,
|
|
483
|
-
GrandpaEquivocationValue,
|
|
484
|
-
GrandpaJustification,
|
|
485
|
-
GrandpaPrecommit,
|
|
486
|
-
GrandpaPrevote,
|
|
487
|
-
GrandpaSignedPrecommit,
|
|
488
|
-
JustificationNotification,
|
|
489
|
-
KeyOwnerProof,
|
|
490
|
-
NextAuthority,
|
|
491
|
-
PendingChange,
|
|
492
|
-
PendingPause,
|
|
493
|
-
PendingResume,
|
|
494
|
-
Precommits,
|
|
495
|
-
Prevotes,
|
|
496
|
-
ReportedRoundStates,
|
|
497
|
-
RoundState,
|
|
498
|
-
SetId,
|
|
499
|
-
StoredPendingChange,
|
|
500
|
-
StoredState,
|
|
501
|
-
} from '@polkadot/types/interfaces/grandpa';
|
|
502
|
-
import type {
|
|
503
|
-
IdentityFields,
|
|
504
|
-
IdentityInfo,
|
|
505
|
-
IdentityInfoAdditional,
|
|
506
|
-
IdentityInfoTo198,
|
|
507
|
-
IdentityJudgement,
|
|
508
|
-
RegistrarIndex,
|
|
509
|
-
RegistrarInfo,
|
|
510
|
-
Registration,
|
|
511
|
-
RegistrationJudgement,
|
|
512
|
-
RegistrationTo198,
|
|
513
|
-
} from '@polkadot/types/interfaces/identity';
|
|
514
|
-
import type {
|
|
515
|
-
AuthIndex,
|
|
516
|
-
AuthoritySignature,
|
|
517
|
-
Heartbeat,
|
|
518
|
-
HeartbeatTo244,
|
|
519
|
-
OpaqueMultiaddr,
|
|
520
|
-
OpaqueNetworkState,
|
|
521
|
-
OpaquePeerId,
|
|
522
|
-
} from '@polkadot/types/interfaces/imOnline';
|
|
43
|
+
import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';
|
|
44
|
+
import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';
|
|
45
|
+
import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';
|
|
46
|
+
import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
|
|
523
47
|
import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
|
|
524
|
-
import type {
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
EnumDeprecationInfoV16,
|
|
528
|
-
ErrorMetadataLatest,
|
|
529
|
-
ErrorMetadataV10,
|
|
530
|
-
ErrorMetadataV11,
|
|
531
|
-
ErrorMetadataV12,
|
|
532
|
-
ErrorMetadataV13,
|
|
533
|
-
ErrorMetadataV14,
|
|
534
|
-
ErrorMetadataV9,
|
|
535
|
-
EventMetadataLatest,
|
|
536
|
-
EventMetadataV10,
|
|
537
|
-
EventMetadataV11,
|
|
538
|
-
EventMetadataV12,
|
|
539
|
-
EventMetadataV13,
|
|
540
|
-
EventMetadataV14,
|
|
541
|
-
EventMetadataV9,
|
|
542
|
-
ExtrinsicMetadataLatest,
|
|
543
|
-
ExtrinsicMetadataV11,
|
|
544
|
-
ExtrinsicMetadataV12,
|
|
545
|
-
ExtrinsicMetadataV13,
|
|
546
|
-
ExtrinsicMetadataV14,
|
|
547
|
-
ExtrinsicMetadataV15,
|
|
548
|
-
ExtrinsicMetadataV16,
|
|
549
|
-
FunctionArgumentMetadataLatest,
|
|
550
|
-
FunctionArgumentMetadataV10,
|
|
551
|
-
FunctionArgumentMetadataV11,
|
|
552
|
-
FunctionArgumentMetadataV12,
|
|
553
|
-
FunctionArgumentMetadataV13,
|
|
554
|
-
FunctionArgumentMetadataV14,
|
|
555
|
-
FunctionArgumentMetadataV9,
|
|
556
|
-
FunctionMetadataLatest,
|
|
557
|
-
FunctionMetadataV10,
|
|
558
|
-
FunctionMetadataV11,
|
|
559
|
-
FunctionMetadataV12,
|
|
560
|
-
FunctionMetadataV13,
|
|
561
|
-
FunctionMetadataV14,
|
|
562
|
-
FunctionMetadataV9,
|
|
563
|
-
ItemDeprecationInfoV16,
|
|
564
|
-
MetadataAll,
|
|
565
|
-
MetadataLatest,
|
|
566
|
-
MetadataV10,
|
|
567
|
-
MetadataV11,
|
|
568
|
-
MetadataV12,
|
|
569
|
-
MetadataV13,
|
|
570
|
-
MetadataV14,
|
|
571
|
-
MetadataV15,
|
|
572
|
-
MetadataV16,
|
|
573
|
-
MetadataV9,
|
|
574
|
-
ModuleConstantMetadataV10,
|
|
575
|
-
ModuleConstantMetadataV11,
|
|
576
|
-
ModuleConstantMetadataV12,
|
|
577
|
-
ModuleConstantMetadataV13,
|
|
578
|
-
ModuleConstantMetadataV9,
|
|
579
|
-
ModuleMetadataV10,
|
|
580
|
-
ModuleMetadataV11,
|
|
581
|
-
ModuleMetadataV12,
|
|
582
|
-
ModuleMetadataV13,
|
|
583
|
-
ModuleMetadataV9,
|
|
584
|
-
OpaqueMetadata,
|
|
585
|
-
OuterEnums15,
|
|
586
|
-
PalletAssociatedTypeMetadataV16,
|
|
587
|
-
PalletCallMetadataLatest,
|
|
588
|
-
PalletCallMetadataV14,
|
|
589
|
-
PalletCallMetadataV16,
|
|
590
|
-
PalletConstantMetadataLatest,
|
|
591
|
-
PalletConstantMetadataV14,
|
|
592
|
-
PalletConstantMetadataV16,
|
|
593
|
-
PalletErrorMetadataLatest,
|
|
594
|
-
PalletErrorMetadataV14,
|
|
595
|
-
PalletErrorMetadataV16,
|
|
596
|
-
PalletEventMetadataLatest,
|
|
597
|
-
PalletEventMetadataV14,
|
|
598
|
-
PalletEventMetadataV16,
|
|
599
|
-
PalletMetadataLatest,
|
|
600
|
-
PalletMetadataV14,
|
|
601
|
-
PalletMetadataV15,
|
|
602
|
-
PalletMetadataV16,
|
|
603
|
-
PalletStorageMetadataLatest,
|
|
604
|
-
PalletStorageMetadataV14,
|
|
605
|
-
PalletStorageMetadataV16,
|
|
606
|
-
PalletViewFunctionMetadataV16,
|
|
607
|
-
PortableType,
|
|
608
|
-
PortableTypeV14,
|
|
609
|
-
RuntimeApiMetadataLatest,
|
|
610
|
-
RuntimeApiMetadataV15,
|
|
611
|
-
RuntimeApiMetadataV16,
|
|
612
|
-
RuntimeApiMethodMetadataV15,
|
|
613
|
-
RuntimeApiMethodMetadataV16,
|
|
614
|
-
RuntimeApiMethodParamMetadataV15,
|
|
615
|
-
SignedExtensionMetadataLatest,
|
|
616
|
-
SignedExtensionMetadataV14,
|
|
617
|
-
StorageEntryMetadataLatest,
|
|
618
|
-
StorageEntryMetadataV10,
|
|
619
|
-
StorageEntryMetadataV11,
|
|
620
|
-
StorageEntryMetadataV12,
|
|
621
|
-
StorageEntryMetadataV13,
|
|
622
|
-
StorageEntryMetadataV14,
|
|
623
|
-
StorageEntryMetadataV16,
|
|
624
|
-
StorageEntryMetadataV9,
|
|
625
|
-
StorageEntryModifierLatest,
|
|
626
|
-
StorageEntryModifierV10,
|
|
627
|
-
StorageEntryModifierV11,
|
|
628
|
-
StorageEntryModifierV12,
|
|
629
|
-
StorageEntryModifierV13,
|
|
630
|
-
StorageEntryModifierV14,
|
|
631
|
-
StorageEntryModifierV9,
|
|
632
|
-
StorageEntryTypeLatest,
|
|
633
|
-
StorageEntryTypeV10,
|
|
634
|
-
StorageEntryTypeV11,
|
|
635
|
-
StorageEntryTypeV12,
|
|
636
|
-
StorageEntryTypeV13,
|
|
637
|
-
StorageEntryTypeV14,
|
|
638
|
-
StorageEntryTypeV9,
|
|
639
|
-
StorageHasher,
|
|
640
|
-
StorageHasherV10,
|
|
641
|
-
StorageHasherV11,
|
|
642
|
-
StorageHasherV12,
|
|
643
|
-
StorageHasherV13,
|
|
644
|
-
StorageHasherV14,
|
|
645
|
-
StorageHasherV9,
|
|
646
|
-
StorageMetadataV10,
|
|
647
|
-
StorageMetadataV11,
|
|
648
|
-
StorageMetadataV12,
|
|
649
|
-
StorageMetadataV13,
|
|
650
|
-
StorageMetadataV9,
|
|
651
|
-
TransactionExtensionMetadataLatest,
|
|
652
|
-
TransactionExtensionMetadataV16,
|
|
653
|
-
VariantDeprecationInfoV16,
|
|
654
|
-
} from '@polkadot/types/interfaces/metadata';
|
|
655
|
-
import type {
|
|
656
|
-
Mixnode,
|
|
657
|
-
MixnodesErr,
|
|
658
|
-
SessionPhase,
|
|
659
|
-
SessionStatus,
|
|
660
|
-
} from '@polkadot/types/interfaces/mixnet';
|
|
661
|
-
import type {
|
|
662
|
-
MmrBatchProof,
|
|
663
|
-
MmrEncodableOpaqueLeaf,
|
|
664
|
-
MmrError,
|
|
665
|
-
MmrHash,
|
|
666
|
-
MmrLeafBatchProof,
|
|
667
|
-
MmrLeafIndex,
|
|
668
|
-
MmrLeafProof,
|
|
669
|
-
MmrNodeIndex,
|
|
670
|
-
MmrProof,
|
|
671
|
-
} from '@polkadot/types/interfaces/mmr';
|
|
48
|
+
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';
|
|
49
|
+
import type { Mixnode, MixnodesErr, SessionPhase, SessionStatus } from '@polkadot/types/interfaces/mixnet';
|
|
50
|
+
import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
|
|
672
51
|
import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
|
|
673
52
|
import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
|
|
674
53
|
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
|
|
675
|
-
import type {
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
OffenceDetails,
|
|
679
|
-
Offender,
|
|
680
|
-
OpaqueTimeSlot,
|
|
681
|
-
ReportIdOf,
|
|
682
|
-
Reporter,
|
|
683
|
-
} from '@polkadot/types/interfaces/offences';
|
|
684
|
-
import type {
|
|
685
|
-
AbridgedCandidateReceipt,
|
|
686
|
-
AbridgedHostConfiguration,
|
|
687
|
-
AbridgedHrmpChannel,
|
|
688
|
-
ApprovalVotingParams,
|
|
689
|
-
AssignmentId,
|
|
690
|
-
AssignmentKind,
|
|
691
|
-
AsyncBackingParams,
|
|
692
|
-
AttestedCandidate,
|
|
693
|
-
AuctionIndex,
|
|
694
|
-
AuthorityDiscoveryId,
|
|
695
|
-
AvailabilityBitfield,
|
|
696
|
-
AvailabilityBitfieldRecord,
|
|
697
|
-
BackedCandidate,
|
|
698
|
-
BackingState,
|
|
699
|
-
Bidder,
|
|
700
|
-
BufferedSessionChange,
|
|
701
|
-
CandidateCommitments,
|
|
702
|
-
CandidateDescriptor,
|
|
703
|
-
CandidateEvent,
|
|
704
|
-
CandidateHash,
|
|
705
|
-
CandidateInfo,
|
|
706
|
-
CandidatePendingAvailability,
|
|
707
|
-
CandidateReceipt,
|
|
708
|
-
CollatorId,
|
|
709
|
-
CollatorSignature,
|
|
710
|
-
CommittedCandidateReceipt,
|
|
711
|
-
Constraints,
|
|
712
|
-
CoreAssignment,
|
|
713
|
-
CoreIndex,
|
|
714
|
-
CoreOccupied,
|
|
715
|
-
CoreState,
|
|
716
|
-
DisputeLocation,
|
|
717
|
-
DisputeProof,
|
|
718
|
-
DisputeResult,
|
|
719
|
-
DisputeState,
|
|
720
|
-
DisputeStatement,
|
|
721
|
-
DisputeStatementSet,
|
|
722
|
-
DisputesTimeSlot,
|
|
723
|
-
DoubleVoteReport,
|
|
724
|
-
DownwardMessage,
|
|
725
|
-
ExecutorParam,
|
|
726
|
-
ExecutorParams,
|
|
727
|
-
ExecutorParamsHash,
|
|
728
|
-
ExplicitDisputeStatement,
|
|
729
|
-
GlobalValidationData,
|
|
730
|
-
GlobalValidationSchedule,
|
|
731
|
-
GroupIndex,
|
|
732
|
-
GroupRotationInfo,
|
|
733
|
-
HeadData,
|
|
734
|
-
HostConfiguration,
|
|
735
|
-
HrmpChannel,
|
|
736
|
-
HrmpChannelId,
|
|
737
|
-
HrmpOpenChannelRequest,
|
|
738
|
-
InboundDownwardMessage,
|
|
739
|
-
InboundHrmpLimitations,
|
|
740
|
-
InboundHrmpMessage,
|
|
741
|
-
InboundHrmpMessages,
|
|
742
|
-
IncomingParachain,
|
|
743
|
-
IncomingParachainDeploy,
|
|
744
|
-
IncomingParachainFixed,
|
|
745
|
-
InvalidDisputeStatementKind,
|
|
746
|
-
LeasePeriod,
|
|
747
|
-
LeasePeriodOf,
|
|
748
|
-
LocalValidationData,
|
|
749
|
-
MessageIngestionType,
|
|
750
|
-
MessageQueueChain,
|
|
751
|
-
MessagingStateSnapshot,
|
|
752
|
-
MessagingStateSnapshotEgressEntry,
|
|
753
|
-
MultiDisputeStatementSet,
|
|
754
|
-
NewBidder,
|
|
755
|
-
NodeFeatures,
|
|
756
|
-
OccupiedCore,
|
|
757
|
-
OccupiedCoreAssumption,
|
|
758
|
-
OldV1SessionInfo,
|
|
759
|
-
OutboundHrmpChannelLimitations,
|
|
760
|
-
OutboundHrmpMessage,
|
|
761
|
-
ParaGenesisArgs,
|
|
762
|
-
ParaId,
|
|
763
|
-
ParaInfo,
|
|
764
|
-
ParaLifecycle,
|
|
765
|
-
ParaPastCodeMeta,
|
|
766
|
-
ParaScheduling,
|
|
767
|
-
ParaValidatorIndex,
|
|
768
|
-
ParachainDispatchOrigin,
|
|
769
|
-
ParachainInherentData,
|
|
770
|
-
ParachainProposal,
|
|
771
|
-
ParachainsInherentData,
|
|
772
|
-
ParathreadClaim,
|
|
773
|
-
ParathreadClaimQueue,
|
|
774
|
-
ParathreadEntry,
|
|
775
|
-
PendingSlashes,
|
|
776
|
-
PersistedValidationData,
|
|
777
|
-
PvfCheckStatement,
|
|
778
|
-
PvfExecTimeoutKind,
|
|
779
|
-
PvfPrepTimeoutKind,
|
|
780
|
-
QueuedParathread,
|
|
781
|
-
RegisteredParachainInfo,
|
|
782
|
-
RelayBlockNumber,
|
|
783
|
-
RelayChainBlockNumber,
|
|
784
|
-
RelayChainHash,
|
|
785
|
-
RelayHash,
|
|
786
|
-
Remark,
|
|
787
|
-
ReplacementTimes,
|
|
788
|
-
Retriable,
|
|
789
|
-
ScheduledCore,
|
|
790
|
-
Scheduling,
|
|
791
|
-
ScrapedOnChainVotes,
|
|
792
|
-
ServiceQuality,
|
|
793
|
-
SessionInfo,
|
|
794
|
-
SessionInfoValidatorGroup,
|
|
795
|
-
SignedAvailabilityBitfield,
|
|
796
|
-
SignedAvailabilityBitfields,
|
|
797
|
-
SigningContext,
|
|
798
|
-
SlashingOffenceKind,
|
|
799
|
-
SlotRange,
|
|
800
|
-
SlotRange10,
|
|
801
|
-
Statement,
|
|
802
|
-
SubId,
|
|
803
|
-
SystemInherentData,
|
|
804
|
-
TransientValidationData,
|
|
805
|
-
UpgradeGoAhead,
|
|
806
|
-
UpgradeRestriction,
|
|
807
|
-
UpwardMessage,
|
|
808
|
-
ValidDisputeStatementKind,
|
|
809
|
-
ValidationCode,
|
|
810
|
-
ValidationCodeHash,
|
|
811
|
-
ValidationData,
|
|
812
|
-
ValidationDataType,
|
|
813
|
-
ValidationFunctionParams,
|
|
814
|
-
ValidatorSignature,
|
|
815
|
-
ValidityAttestation,
|
|
816
|
-
VecInboundHrmpMessage,
|
|
817
|
-
WinnersData,
|
|
818
|
-
WinnersData10,
|
|
819
|
-
WinnersDataTuple,
|
|
820
|
-
WinnersDataTuple10,
|
|
821
|
-
WinningData,
|
|
822
|
-
WinningData10,
|
|
823
|
-
WinningDataEntry,
|
|
824
|
-
} from '@polkadot/types/interfaces/parachains';
|
|
825
|
-
import type {
|
|
826
|
-
FeeDetails,
|
|
827
|
-
InclusionFee,
|
|
828
|
-
RuntimeDispatchInfo,
|
|
829
|
-
RuntimeDispatchInfoV1,
|
|
830
|
-
RuntimeDispatchInfoV2,
|
|
831
|
-
} from '@polkadot/types/interfaces/payment';
|
|
54
|
+
import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
|
|
55
|
+
import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, ApprovalVotingParams, AssignmentId, AssignmentKind, AsyncBackingParams, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, BackingState, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, Constraints, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeProof, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DisputesTimeSlot, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpLimitations, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, NodeFeatures, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpChannelLimitations, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PendingSlashes, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlashingOffenceKind, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
|
|
56
|
+
import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
|
|
832
57
|
import type { Approvals } from '@polkadot/types/interfaces/poll';
|
|
833
|
-
import type {
|
|
834
|
-
ProxyAnnouncement,
|
|
835
|
-
ProxyDefinition,
|
|
836
|
-
ProxyType,
|
|
837
|
-
} from '@polkadot/types/interfaces/proxy';
|
|
58
|
+
import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
|
|
838
59
|
import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
|
|
839
60
|
import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';
|
|
840
61
|
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
|
|
841
|
-
import type {
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
AssetId,
|
|
850
|
-
Balance,
|
|
851
|
-
BalanceOf,
|
|
852
|
-
Block,
|
|
853
|
-
BlockNumber,
|
|
854
|
-
BlockNumberFor,
|
|
855
|
-
BlockNumberOf,
|
|
856
|
-
Call,
|
|
857
|
-
CallHash,
|
|
858
|
-
CallHashOf,
|
|
859
|
-
ChangesTrieConfiguration,
|
|
860
|
-
ChangesTrieSignal,
|
|
861
|
-
CodecHash,
|
|
862
|
-
Consensus,
|
|
863
|
-
ConsensusEngineId,
|
|
864
|
-
CrateVersion,
|
|
865
|
-
Digest,
|
|
866
|
-
DigestItem,
|
|
867
|
-
EncodedJustification,
|
|
868
|
-
ExtrinsicInclusionMode,
|
|
869
|
-
ExtrinsicsWeight,
|
|
870
|
-
Fixed128,
|
|
871
|
-
Fixed64,
|
|
872
|
-
FixedI128,
|
|
873
|
-
FixedI64,
|
|
874
|
-
FixedU128,
|
|
875
|
-
FixedU64,
|
|
876
|
-
H1024,
|
|
877
|
-
H128,
|
|
878
|
-
H160,
|
|
879
|
-
H2048,
|
|
880
|
-
H256,
|
|
881
|
-
H32,
|
|
882
|
-
H512,
|
|
883
|
-
H64,
|
|
884
|
-
Hash,
|
|
885
|
-
Header,
|
|
886
|
-
HeaderPartial,
|
|
887
|
-
I32F32,
|
|
888
|
-
Index,
|
|
889
|
-
IndicesLookupSource,
|
|
890
|
-
Justification,
|
|
891
|
-
Justifications,
|
|
892
|
-
KeyTypeId,
|
|
893
|
-
KeyValue,
|
|
894
|
-
LockIdentifier,
|
|
895
|
-
LookupSource,
|
|
896
|
-
LookupTarget,
|
|
897
|
-
ModuleId,
|
|
898
|
-
Moment,
|
|
899
|
-
MultiAddress,
|
|
900
|
-
MultiSigner,
|
|
901
|
-
OpaqueCall,
|
|
902
|
-
Origin,
|
|
903
|
-
OriginCaller,
|
|
904
|
-
PalletId,
|
|
905
|
-
PalletVersion,
|
|
906
|
-
PalletsOrigin,
|
|
907
|
-
Pays,
|
|
908
|
-
PerU16,
|
|
909
|
-
Perbill,
|
|
910
|
-
Percent,
|
|
911
|
-
Permill,
|
|
912
|
-
Perquintill,
|
|
913
|
-
Phantom,
|
|
914
|
-
PhantomData,
|
|
915
|
-
PreRuntime,
|
|
916
|
-
Releases,
|
|
917
|
-
RuntimeCall,
|
|
918
|
-
RuntimeDbWeight,
|
|
919
|
-
RuntimeEvent,
|
|
920
|
-
Seal,
|
|
921
|
-
SealV0,
|
|
922
|
-
SignedBlock,
|
|
923
|
-
SignedBlockWithJustification,
|
|
924
|
-
SignedBlockWithJustifications,
|
|
925
|
-
Slot,
|
|
926
|
-
SlotDuration,
|
|
927
|
-
StorageData,
|
|
928
|
-
StorageInfo,
|
|
929
|
-
StorageProof,
|
|
930
|
-
TransactionInfo,
|
|
931
|
-
TransactionLongevity,
|
|
932
|
-
TransactionPriority,
|
|
933
|
-
TransactionStorageProof,
|
|
934
|
-
TransactionTag,
|
|
935
|
-
U32F32,
|
|
936
|
-
ValidatorId,
|
|
937
|
-
ValidatorIdOf,
|
|
938
|
-
Weight,
|
|
939
|
-
WeightMultiplier,
|
|
940
|
-
WeightV0,
|
|
941
|
-
WeightV1,
|
|
942
|
-
WeightV2,
|
|
943
|
-
} from '@polkadot/types/interfaces/runtime';
|
|
944
|
-
import type {
|
|
945
|
-
Si0Field,
|
|
946
|
-
Si0LookupTypeId,
|
|
947
|
-
Si0Path,
|
|
948
|
-
Si0Type,
|
|
949
|
-
Si0TypeDef,
|
|
950
|
-
Si0TypeDefArray,
|
|
951
|
-
Si0TypeDefBitSequence,
|
|
952
|
-
Si0TypeDefCompact,
|
|
953
|
-
Si0TypeDefComposite,
|
|
954
|
-
Si0TypeDefPhantom,
|
|
955
|
-
Si0TypeDefPrimitive,
|
|
956
|
-
Si0TypeDefSequence,
|
|
957
|
-
Si0TypeDefTuple,
|
|
958
|
-
Si0TypeDefVariant,
|
|
959
|
-
Si0TypeParameter,
|
|
960
|
-
Si0Variant,
|
|
961
|
-
Si1Field,
|
|
962
|
-
Si1LookupTypeId,
|
|
963
|
-
Si1Path,
|
|
964
|
-
Si1Type,
|
|
965
|
-
Si1TypeDef,
|
|
966
|
-
Si1TypeDefArray,
|
|
967
|
-
Si1TypeDefBitSequence,
|
|
968
|
-
Si1TypeDefCompact,
|
|
969
|
-
Si1TypeDefComposite,
|
|
970
|
-
Si1TypeDefPrimitive,
|
|
971
|
-
Si1TypeDefSequence,
|
|
972
|
-
Si1TypeDefTuple,
|
|
973
|
-
Si1TypeDefVariant,
|
|
974
|
-
Si1TypeParameter,
|
|
975
|
-
Si1Variant,
|
|
976
|
-
SiField,
|
|
977
|
-
SiLookupTypeId,
|
|
978
|
-
SiPath,
|
|
979
|
-
SiType,
|
|
980
|
-
SiTypeDef,
|
|
981
|
-
SiTypeDefArray,
|
|
982
|
-
SiTypeDefBitSequence,
|
|
983
|
-
SiTypeDefCompact,
|
|
984
|
-
SiTypeDefComposite,
|
|
985
|
-
SiTypeDefPrimitive,
|
|
986
|
-
SiTypeDefSequence,
|
|
987
|
-
SiTypeDefTuple,
|
|
988
|
-
SiTypeDefVariant,
|
|
989
|
-
SiTypeParameter,
|
|
990
|
-
SiVariant,
|
|
991
|
-
} from '@polkadot/types/interfaces/scaleInfo';
|
|
992
|
-
import type {
|
|
993
|
-
Period,
|
|
994
|
-
Priority,
|
|
995
|
-
SchedulePeriod,
|
|
996
|
-
SchedulePriority,
|
|
997
|
-
Scheduled,
|
|
998
|
-
ScheduledTo254,
|
|
999
|
-
TaskAddress,
|
|
1000
|
-
} from '@polkadot/types/interfaces/scheduler';
|
|
1001
|
-
import type {
|
|
1002
|
-
BeefyKey,
|
|
1003
|
-
FullIdentification,
|
|
1004
|
-
IdentificationTuple,
|
|
1005
|
-
Keys,
|
|
1006
|
-
MembershipProof,
|
|
1007
|
-
SessionIndex,
|
|
1008
|
-
SessionKeys1,
|
|
1009
|
-
SessionKeys10,
|
|
1010
|
-
SessionKeys10B,
|
|
1011
|
-
SessionKeys2,
|
|
1012
|
-
SessionKeys3,
|
|
1013
|
-
SessionKeys4,
|
|
1014
|
-
SessionKeys5,
|
|
1015
|
-
SessionKeys6,
|
|
1016
|
-
SessionKeys6B,
|
|
1017
|
-
SessionKeys7,
|
|
1018
|
-
SessionKeys7B,
|
|
1019
|
-
SessionKeys8,
|
|
1020
|
-
SessionKeys8B,
|
|
1021
|
-
SessionKeys9,
|
|
1022
|
-
SessionKeys9B,
|
|
1023
|
-
ValidatorCount,
|
|
1024
|
-
} from '@polkadot/types/interfaces/session';
|
|
1025
|
-
import type {
|
|
1026
|
-
Bid,
|
|
1027
|
-
BidKind,
|
|
1028
|
-
SocietyJudgement,
|
|
1029
|
-
SocietyVote,
|
|
1030
|
-
StrikeCount,
|
|
1031
|
-
VouchingStatus,
|
|
1032
|
-
} from '@polkadot/types/interfaces/society';
|
|
1033
|
-
import type {
|
|
1034
|
-
ActiveEraInfo,
|
|
1035
|
-
CompactAssignments,
|
|
1036
|
-
CompactAssignmentsTo257,
|
|
1037
|
-
CompactAssignmentsTo265,
|
|
1038
|
-
CompactAssignmentsWith16,
|
|
1039
|
-
CompactAssignmentsWith24,
|
|
1040
|
-
CompactScore,
|
|
1041
|
-
CompactScoreCompact,
|
|
1042
|
-
ElectionCompute,
|
|
1043
|
-
ElectionPhase,
|
|
1044
|
-
ElectionResult,
|
|
1045
|
-
ElectionResultToSpec10,
|
|
1046
|
-
ElectionScore,
|
|
1047
|
-
ElectionSize,
|
|
1048
|
-
ElectionStatus,
|
|
1049
|
-
EraIndex,
|
|
1050
|
-
EraPoints,
|
|
1051
|
-
EraRewardPoints,
|
|
1052
|
-
EraRewards,
|
|
1053
|
-
Exposure,
|
|
1054
|
-
ExtendedBalance,
|
|
1055
|
-
Forcing,
|
|
1056
|
-
IndividualExposure,
|
|
1057
|
-
KeyType,
|
|
1058
|
-
MomentOf,
|
|
1059
|
-
Nominations,
|
|
1060
|
-
NominatorIndex,
|
|
1061
|
-
NominatorIndexCompact,
|
|
1062
|
-
OffchainAccuracy,
|
|
1063
|
-
OffchainAccuracyCompact,
|
|
1064
|
-
PhragmenScore,
|
|
1065
|
-
Points,
|
|
1066
|
-
RawSolution,
|
|
1067
|
-
RawSolutionTo265,
|
|
1068
|
-
RawSolutionWith16,
|
|
1069
|
-
RawSolutionWith24,
|
|
1070
|
-
ReadySolution,
|
|
1071
|
-
RewardDestination,
|
|
1072
|
-
RewardPoint,
|
|
1073
|
-
RoundSnapshot,
|
|
1074
|
-
SeatHolder,
|
|
1075
|
-
SignedSubmission,
|
|
1076
|
-
SignedSubmissionOf,
|
|
1077
|
-
SignedSubmissionTo276,
|
|
1078
|
-
SlashJournalEntry,
|
|
1079
|
-
SlashingSpans,
|
|
1080
|
-
SlashingSpansTo204,
|
|
1081
|
-
SolutionOrSnapshotSize,
|
|
1082
|
-
SolutionSupport,
|
|
1083
|
-
SolutionSupports,
|
|
1084
|
-
SpanIndex,
|
|
1085
|
-
SpanRecord,
|
|
1086
|
-
StakingLedger,
|
|
1087
|
-
StakingLedgerTo223,
|
|
1088
|
-
StakingLedgerTo240,
|
|
1089
|
-
SubmissionIndicesOf,
|
|
1090
|
-
Supports,
|
|
1091
|
-
UnappliedSlash,
|
|
1092
|
-
UnappliedSlashOther,
|
|
1093
|
-
UnlockChunk,
|
|
1094
|
-
ValidatorIndex,
|
|
1095
|
-
ValidatorIndexCompact,
|
|
1096
|
-
ValidatorPrefs,
|
|
1097
|
-
ValidatorPrefsTo145,
|
|
1098
|
-
ValidatorPrefsTo196,
|
|
1099
|
-
ValidatorPrefsWithBlocked,
|
|
1100
|
-
ValidatorPrefsWithCommission,
|
|
1101
|
-
VoteWeight,
|
|
1102
|
-
Voter,
|
|
1103
|
-
} from '@polkadot/types/interfaces/staking';
|
|
1104
|
-
import type {
|
|
1105
|
-
ApiId,
|
|
1106
|
-
BlockTrace,
|
|
1107
|
-
BlockTraceEvent,
|
|
1108
|
-
BlockTraceEventData,
|
|
1109
|
-
BlockTraceSpan,
|
|
1110
|
-
KeyValueOption,
|
|
1111
|
-
MigrationStatusResult,
|
|
1112
|
-
ReadProof,
|
|
1113
|
-
RuntimeVersion,
|
|
1114
|
-
RuntimeVersionApi,
|
|
1115
|
-
RuntimeVersionPartial,
|
|
1116
|
-
RuntimeVersionPre3,
|
|
1117
|
-
RuntimeVersionPre4,
|
|
1118
|
-
SpecVersion,
|
|
1119
|
-
StorageChangeSet,
|
|
1120
|
-
TraceBlockResponse,
|
|
1121
|
-
TraceError,
|
|
1122
|
-
} from '@polkadot/types/interfaces/state';
|
|
1123
|
-
import type {
|
|
1124
|
-
StatementStoreInvalidStatement,
|
|
1125
|
-
StatementStoreStatementSource,
|
|
1126
|
-
StatementStoreValidStatement,
|
|
1127
|
-
} from '@polkadot/types/interfaces/statement';
|
|
62
|
+
import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicInclusionMode, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
|
|
63
|
+
import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';
|
|
64
|
+
import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
|
|
65
|
+
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';
|
|
66
|
+
import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';
|
|
67
|
+
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';
|
|
68
|
+
import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
|
|
69
|
+
import type { StatementStoreInvalidStatement, StatementStoreStatementSource, StatementStoreValidStatement } from '@polkadot/types/interfaces/statement';
|
|
1128
70
|
import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
|
|
1129
|
-
import type {
|
|
1130
|
-
|
|
1131
|
-
AccountInfoWithDualRefCount,
|
|
1132
|
-
AccountInfoWithProviders,
|
|
1133
|
-
AccountInfoWithRefCount,
|
|
1134
|
-
AccountInfoWithRefCountU8,
|
|
1135
|
-
AccountInfoWithTripleRefCount,
|
|
1136
|
-
ApplyExtrinsicResult,
|
|
1137
|
-
ApplyExtrinsicResultPre6,
|
|
1138
|
-
ArithmeticError,
|
|
1139
|
-
BlockLength,
|
|
1140
|
-
BlockWeights,
|
|
1141
|
-
ChainProperties,
|
|
1142
|
-
ChainType,
|
|
1143
|
-
ConsumedWeight,
|
|
1144
|
-
DigestOf,
|
|
1145
|
-
DispatchClass,
|
|
1146
|
-
DispatchError,
|
|
1147
|
-
DispatchErrorModule,
|
|
1148
|
-
DispatchErrorModulePre6,
|
|
1149
|
-
DispatchErrorModuleU8,
|
|
1150
|
-
DispatchErrorModuleU8a,
|
|
1151
|
-
DispatchErrorPre6,
|
|
1152
|
-
DispatchErrorPre6First,
|
|
1153
|
-
DispatchErrorTo198,
|
|
1154
|
-
DispatchInfo,
|
|
1155
|
-
DispatchInfoTo190,
|
|
1156
|
-
DispatchInfoTo244,
|
|
1157
|
-
DispatchOutcome,
|
|
1158
|
-
DispatchOutcomePre6,
|
|
1159
|
-
DispatchResult,
|
|
1160
|
-
DispatchResultOf,
|
|
1161
|
-
DispatchResultTo198,
|
|
1162
|
-
Event,
|
|
1163
|
-
EventId,
|
|
1164
|
-
EventIndex,
|
|
1165
|
-
EventRecord,
|
|
1166
|
-
Health,
|
|
1167
|
-
InvalidTransaction,
|
|
1168
|
-
Key,
|
|
1169
|
-
LastRuntimeUpgradeInfo,
|
|
1170
|
-
NetworkState,
|
|
1171
|
-
NetworkStatePeerset,
|
|
1172
|
-
NetworkStatePeersetInfo,
|
|
1173
|
-
NodeRole,
|
|
1174
|
-
NotConnectedPeer,
|
|
1175
|
-
Peer,
|
|
1176
|
-
PeerEndpoint,
|
|
1177
|
-
PeerEndpointAddr,
|
|
1178
|
-
PeerInfo,
|
|
1179
|
-
PeerPing,
|
|
1180
|
-
PerDispatchClassU32,
|
|
1181
|
-
PerDispatchClassWeight,
|
|
1182
|
-
PerDispatchClassWeightsPerClass,
|
|
1183
|
-
Phase,
|
|
1184
|
-
RawOrigin,
|
|
1185
|
-
RefCount,
|
|
1186
|
-
RefCountTo259,
|
|
1187
|
-
SyncState,
|
|
1188
|
-
SystemOrigin,
|
|
1189
|
-
TokenError,
|
|
1190
|
-
TransactionValidityError,
|
|
1191
|
-
TransactionalError,
|
|
1192
|
-
UnknownTransaction,
|
|
1193
|
-
WeightPerClass,
|
|
1194
|
-
} from '@polkadot/types/interfaces/system';
|
|
1195
|
-
import type {
|
|
1196
|
-
Bounty,
|
|
1197
|
-
BountyIndex,
|
|
1198
|
-
BountyStatus,
|
|
1199
|
-
BountyStatusActive,
|
|
1200
|
-
BountyStatusCuratorProposed,
|
|
1201
|
-
BountyStatusPendingPayout,
|
|
1202
|
-
OpenTip,
|
|
1203
|
-
OpenTipFinderTo225,
|
|
1204
|
-
OpenTipTip,
|
|
1205
|
-
OpenTipTo225,
|
|
1206
|
-
TreasuryProposal,
|
|
1207
|
-
} from '@polkadot/types/interfaces/treasury';
|
|
71
|
+
import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
|
|
72
|
+
import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
|
|
1208
73
|
import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
|
|
1209
|
-
import type {
|
|
1210
|
-
|
|
1211
|
-
TransactionValidity,
|
|
1212
|
-
ValidTransaction,
|
|
1213
|
-
} from '@polkadot/types/interfaces/txqueue';
|
|
1214
|
-
import type {
|
|
1215
|
-
ClassDetails,
|
|
1216
|
-
ClassId,
|
|
1217
|
-
ClassMetadata,
|
|
1218
|
-
DepositBalance,
|
|
1219
|
-
DepositBalanceOf,
|
|
1220
|
-
DestroyWitness,
|
|
1221
|
-
InstanceDetails,
|
|
1222
|
-
InstanceId,
|
|
1223
|
-
InstanceMetadata,
|
|
1224
|
-
} from '@polkadot/types/interfaces/uniques';
|
|
74
|
+
import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';
|
|
75
|
+
import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
|
|
1225
76
|
import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';
|
|
1226
77
|
import type { VestingInfo } from '@polkadot/types/interfaces/vesting';
|
|
1227
|
-
import type {
|
|
1228
|
-
AssetIdV2,
|
|
1229
|
-
AssetIdV3,
|
|
1230
|
-
AssetIdV4,
|
|
1231
|
-
AssetIdV5,
|
|
1232
|
-
AssetInstance,
|
|
1233
|
-
AssetInstanceV0,
|
|
1234
|
-
AssetInstanceV1,
|
|
1235
|
-
AssetInstanceV2,
|
|
1236
|
-
AssetInstanceV3,
|
|
1237
|
-
AssetInstanceV4,
|
|
1238
|
-
AssetInstanceV5,
|
|
1239
|
-
BodyId,
|
|
1240
|
-
BodyIdV2,
|
|
1241
|
-
BodyIdV3,
|
|
1242
|
-
BodyPart,
|
|
1243
|
-
BodyPartV2,
|
|
1244
|
-
BodyPartV3,
|
|
1245
|
-
DoubleEncodedCall,
|
|
1246
|
-
Fungibility,
|
|
1247
|
-
FungibilityV0,
|
|
1248
|
-
FungibilityV1,
|
|
1249
|
-
FungibilityV2,
|
|
1250
|
-
FungibilityV3,
|
|
1251
|
-
FungibilityV4,
|
|
1252
|
-
FungibilityV5,
|
|
1253
|
-
HintV5,
|
|
1254
|
-
InboundStatus,
|
|
1255
|
-
InstructionV2,
|
|
1256
|
-
InstructionV3,
|
|
1257
|
-
InstructionV4,
|
|
1258
|
-
InstructionV5,
|
|
1259
|
-
InteriorMultiLocation,
|
|
1260
|
-
InteriorMultiLocationV2,
|
|
1261
|
-
InteriorMultiLocationV3,
|
|
1262
|
-
InteriorMultiLocationV5,
|
|
1263
|
-
Junction,
|
|
1264
|
-
JunctionV0,
|
|
1265
|
-
JunctionV1,
|
|
1266
|
-
JunctionV2,
|
|
1267
|
-
JunctionV3,
|
|
1268
|
-
JunctionV4,
|
|
1269
|
-
JunctionV5,
|
|
1270
|
-
Junctions,
|
|
1271
|
-
JunctionsV1,
|
|
1272
|
-
JunctionsV2,
|
|
1273
|
-
JunctionsV3,
|
|
1274
|
-
JunctionsV4,
|
|
1275
|
-
JunctionsV5,
|
|
1276
|
-
MaxPalletNameLen,
|
|
1277
|
-
MaxPalletsInfo,
|
|
1278
|
-
MaybeErrorCodeV3,
|
|
1279
|
-
MultiAsset,
|
|
1280
|
-
MultiAssetFilter,
|
|
1281
|
-
MultiAssetFilterV1,
|
|
1282
|
-
MultiAssetFilterV2,
|
|
1283
|
-
MultiAssetFilterV3,
|
|
1284
|
-
MultiAssetFilterV4,
|
|
1285
|
-
MultiAssetFilterV5,
|
|
1286
|
-
MultiAssetTransferFilterV5,
|
|
1287
|
-
MultiAssetV0,
|
|
1288
|
-
MultiAssetV1,
|
|
1289
|
-
MultiAssetV2,
|
|
1290
|
-
MultiAssetV3,
|
|
1291
|
-
MultiAssetV4,
|
|
1292
|
-
MultiAssetV5,
|
|
1293
|
-
MultiAssets,
|
|
1294
|
-
MultiAssetsV1,
|
|
1295
|
-
MultiAssetsV2,
|
|
1296
|
-
MultiAssetsV3,
|
|
1297
|
-
MultiAssetsV4,
|
|
1298
|
-
MultiAssetsV5,
|
|
1299
|
-
MultiLocation,
|
|
1300
|
-
MultiLocationV0,
|
|
1301
|
-
MultiLocationV1,
|
|
1302
|
-
MultiLocationV2,
|
|
1303
|
-
MultiLocationV3,
|
|
1304
|
-
MultiLocationV4,
|
|
1305
|
-
MultiLocationV5,
|
|
1306
|
-
NetworkId,
|
|
1307
|
-
NetworkIdV2,
|
|
1308
|
-
NetworkIdV3,
|
|
1309
|
-
NetworkIdV4,
|
|
1310
|
-
NetworkIdV5,
|
|
1311
|
-
OriginKindV0,
|
|
1312
|
-
OriginKindV1,
|
|
1313
|
-
OriginKindV2,
|
|
1314
|
-
OriginKindV3,
|
|
1315
|
-
OriginKindV4,
|
|
1316
|
-
OutboundStatus,
|
|
1317
|
-
Outcome,
|
|
1318
|
-
OutcomeV4,
|
|
1319
|
-
PalletInfoV3,
|
|
1320
|
-
PalletInfoV4,
|
|
1321
|
-
PalletInfoV5,
|
|
1322
|
-
QueryId,
|
|
1323
|
-
QueryResponseInfoV3,
|
|
1324
|
-
QueryResponseInfoV4,
|
|
1325
|
-
QueryResponseInfoV5,
|
|
1326
|
-
QueryStatus,
|
|
1327
|
-
QueueConfigData,
|
|
1328
|
-
Response,
|
|
1329
|
-
ResponseV0,
|
|
1330
|
-
ResponseV1,
|
|
1331
|
-
ResponseV2,
|
|
1332
|
-
ResponseV2Error,
|
|
1333
|
-
ResponseV3,
|
|
1334
|
-
ResponseV3Error,
|
|
1335
|
-
ResponseV3Result,
|
|
1336
|
-
ResponseV4,
|
|
1337
|
-
ResponseV5,
|
|
1338
|
-
UncheckedFungibilityV4,
|
|
1339
|
-
UncheckedFungibilityV5,
|
|
1340
|
-
VersionMigrationStage,
|
|
1341
|
-
VersionV3,
|
|
1342
|
-
VersionV4,
|
|
1343
|
-
VersionedMultiAsset,
|
|
1344
|
-
VersionedMultiAssets,
|
|
1345
|
-
VersionedMultiLocation,
|
|
1346
|
-
VersionedResponse,
|
|
1347
|
-
VersionedXcm,
|
|
1348
|
-
WeightLimitV2,
|
|
1349
|
-
WeightLimitV3,
|
|
1350
|
-
WildFungibility,
|
|
1351
|
-
WildFungibilityV0,
|
|
1352
|
-
WildFungibilityV1,
|
|
1353
|
-
WildFungibilityV2,
|
|
1354
|
-
WildFungibilityV3,
|
|
1355
|
-
WildFungibilityV4,
|
|
1356
|
-
WildFungibilityV5,
|
|
1357
|
-
WildMultiAsset,
|
|
1358
|
-
WildMultiAssetV1,
|
|
1359
|
-
WildMultiAssetV2,
|
|
1360
|
-
WildMultiAssetV3,
|
|
1361
|
-
WildMultiAssetV4,
|
|
1362
|
-
WildMultiAssetV5,
|
|
1363
|
-
Xcm,
|
|
1364
|
-
XcmAssetId,
|
|
1365
|
-
XcmError,
|
|
1366
|
-
XcmErrorV0,
|
|
1367
|
-
XcmErrorV1,
|
|
1368
|
-
XcmErrorV2,
|
|
1369
|
-
XcmErrorV3,
|
|
1370
|
-
XcmErrorV4,
|
|
1371
|
-
XcmErrorV5,
|
|
1372
|
-
XcmOrderV0,
|
|
1373
|
-
XcmOrderV1,
|
|
1374
|
-
XcmOrigin,
|
|
1375
|
-
XcmOriginKind,
|
|
1376
|
-
XcmV0,
|
|
1377
|
-
XcmV1,
|
|
1378
|
-
XcmV2,
|
|
1379
|
-
XcmV3,
|
|
1380
|
-
XcmV4,
|
|
1381
|
-
XcmV5,
|
|
1382
|
-
XcmVersion,
|
|
1383
|
-
XcmpMessageFormat,
|
|
1384
|
-
} from '@polkadot/types/interfaces/xcm';
|
|
78
|
+
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';
|
|
1385
79
|
import type { XcmPaymentApiError } from '@polkadot/types/interfaces/xcmPaymentApi';
|
|
1386
80
|
import type { Error } from '@polkadot/types/interfaces/xcmRuntimeApi';
|
|
1387
81
|
|