@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
|
@@ -0,0 +1,2774 @@
|
|
|
1
|
+
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
// import type lookup before we augment - in some environments
|
|
5
|
+
// this is required to allow for ambient/previous definitions
|
|
6
|
+
import "@polkadot/types/types/registry";
|
|
7
|
+
|
|
8
|
+
import type { Data, StorageKey } from "@polkadot/types";
|
|
9
|
+
import type {
|
|
10
|
+
BitVec,
|
|
11
|
+
Bool,
|
|
12
|
+
Bytes,
|
|
13
|
+
F32,
|
|
14
|
+
F64,
|
|
15
|
+
I128,
|
|
16
|
+
I16,
|
|
17
|
+
I256,
|
|
18
|
+
I32,
|
|
19
|
+
I64,
|
|
20
|
+
I8,
|
|
21
|
+
ISize,
|
|
22
|
+
Json,
|
|
23
|
+
Null,
|
|
24
|
+
OptionBool,
|
|
25
|
+
Raw,
|
|
26
|
+
Text,
|
|
27
|
+
Type,
|
|
28
|
+
U128,
|
|
29
|
+
U16,
|
|
30
|
+
U256,
|
|
31
|
+
U32,
|
|
32
|
+
U64,
|
|
33
|
+
U8,
|
|
34
|
+
USize,
|
|
35
|
+
bool,
|
|
36
|
+
f32,
|
|
37
|
+
f64,
|
|
38
|
+
i128,
|
|
39
|
+
i16,
|
|
40
|
+
i256,
|
|
41
|
+
i32,
|
|
42
|
+
i64,
|
|
43
|
+
i8,
|
|
44
|
+
isize,
|
|
45
|
+
u128,
|
|
46
|
+
u16,
|
|
47
|
+
u256,
|
|
48
|
+
u32,
|
|
49
|
+
u64,
|
|
50
|
+
u8,
|
|
51
|
+
usize
|
|
52
|
+
} from "@polkadot/types-codec";
|
|
53
|
+
import type { TAssetConversion } from "@polkadot/types/interfaces/assetConversion";
|
|
54
|
+
import type {
|
|
55
|
+
AssetApproval,
|
|
56
|
+
AssetApprovalKey,
|
|
57
|
+
AssetBalance,
|
|
58
|
+
AssetDestroyWitness,
|
|
59
|
+
AssetDetails,
|
|
60
|
+
AssetMetadata,
|
|
61
|
+
TAssetBalance,
|
|
62
|
+
TAssetDepositBalance
|
|
63
|
+
} from "@polkadot/types/interfaces/assets";
|
|
64
|
+
import type {
|
|
65
|
+
BlockAttestations,
|
|
66
|
+
IncludedBlocks,
|
|
67
|
+
MoreAttestations
|
|
68
|
+
} from "@polkadot/types/interfaces/attestations";
|
|
69
|
+
import type { RawAuraPreDigest } from "@polkadot/types/interfaces/aura";
|
|
70
|
+
import type { ExtrinsicOrHash, ExtrinsicStatus } from "@polkadot/types/interfaces/author";
|
|
71
|
+
import type { UncleEntryItem } from "@polkadot/types/interfaces/authorship";
|
|
72
|
+
import type {
|
|
73
|
+
AllowedSlots,
|
|
74
|
+
BabeAuthorityWeight,
|
|
75
|
+
BabeBlockWeight,
|
|
76
|
+
BabeEpochConfiguration,
|
|
77
|
+
BabeEquivocationProof,
|
|
78
|
+
BabeGenesisConfiguration,
|
|
79
|
+
BabeGenesisConfigurationV1,
|
|
80
|
+
BabeWeight,
|
|
81
|
+
Epoch,
|
|
82
|
+
EpochAuthorship,
|
|
83
|
+
MaybeRandomness,
|
|
84
|
+
MaybeVrf,
|
|
85
|
+
NextConfigDescriptor,
|
|
86
|
+
NextConfigDescriptorV1,
|
|
87
|
+
OpaqueKeyOwnershipProof,
|
|
88
|
+
Randomness,
|
|
89
|
+
RawBabePreDigest,
|
|
90
|
+
RawBabePreDigestCompat,
|
|
91
|
+
RawBabePreDigestPrimary,
|
|
92
|
+
RawBabePreDigestPrimaryTo159,
|
|
93
|
+
RawBabePreDigestSecondaryPlain,
|
|
94
|
+
RawBabePreDigestSecondaryTo159,
|
|
95
|
+
RawBabePreDigestSecondaryVRF,
|
|
96
|
+
RawBabePreDigestTo159,
|
|
97
|
+
SlotNumber,
|
|
98
|
+
VrfData,
|
|
99
|
+
VrfOutput,
|
|
100
|
+
VrfProof
|
|
101
|
+
} from "@polkadot/types/interfaces/babe";
|
|
102
|
+
import type {
|
|
103
|
+
AccountData,
|
|
104
|
+
BalanceLock,
|
|
105
|
+
BalanceLockTo212,
|
|
106
|
+
BalanceStatus,
|
|
107
|
+
Reasons,
|
|
108
|
+
ReserveData,
|
|
109
|
+
ReserveIdentifier,
|
|
110
|
+
VestingSchedule,
|
|
111
|
+
WithdrawReasons
|
|
112
|
+
} from "@polkadot/types/interfaces/balances";
|
|
113
|
+
import type {
|
|
114
|
+
BeefyAuthoritySet,
|
|
115
|
+
BeefyCommitment,
|
|
116
|
+
BeefyCompactSignedCommitment,
|
|
117
|
+
BeefyEquivocationProof,
|
|
118
|
+
BeefyId,
|
|
119
|
+
BeefyNextAuthoritySet,
|
|
120
|
+
BeefyPayload,
|
|
121
|
+
BeefyPayloadId,
|
|
122
|
+
BeefySignedCommitment,
|
|
123
|
+
BeefyVersionedFinalityProof,
|
|
124
|
+
BeefyVoteMessage,
|
|
125
|
+
MmrRootHash,
|
|
126
|
+
ValidatorSet,
|
|
127
|
+
ValidatorSetId
|
|
128
|
+
} from "@polkadot/types/interfaces/beefy";
|
|
129
|
+
import type {
|
|
130
|
+
BenchmarkBatch,
|
|
131
|
+
BenchmarkConfig,
|
|
132
|
+
BenchmarkList,
|
|
133
|
+
BenchmarkMetadata,
|
|
134
|
+
BenchmarkParameter,
|
|
135
|
+
BenchmarkResult
|
|
136
|
+
} from "@polkadot/types/interfaces/benchmark";
|
|
137
|
+
import type {
|
|
138
|
+
CheckInherentsResult,
|
|
139
|
+
InherentData,
|
|
140
|
+
InherentIdentifier
|
|
141
|
+
} from "@polkadot/types/interfaces/blockbuilder";
|
|
142
|
+
import type {
|
|
143
|
+
BridgeMessageId,
|
|
144
|
+
BridgedBlockHash,
|
|
145
|
+
BridgedBlockNumber,
|
|
146
|
+
BridgedHeader,
|
|
147
|
+
CallOrigin,
|
|
148
|
+
ChainId,
|
|
149
|
+
DeliveredMessages,
|
|
150
|
+
DispatchFeePayment,
|
|
151
|
+
InboundLaneData,
|
|
152
|
+
InboundRelayer,
|
|
153
|
+
InitializationData,
|
|
154
|
+
LaneId,
|
|
155
|
+
MessageData,
|
|
156
|
+
MessageKey,
|
|
157
|
+
MessageNonce,
|
|
158
|
+
MessagesDeliveryProofOf,
|
|
159
|
+
MessagesProofOf,
|
|
160
|
+
OperatingMode,
|
|
161
|
+
OutboundLaneData,
|
|
162
|
+
OutboundMessageFee,
|
|
163
|
+
OutboundPayload,
|
|
164
|
+
Parameter,
|
|
165
|
+
RelayerId,
|
|
166
|
+
UnrewardedRelayer,
|
|
167
|
+
UnrewardedRelayersState
|
|
168
|
+
} from "@polkadot/types/interfaces/bridges";
|
|
169
|
+
import type { BlockHash } from "@polkadot/types/interfaces/chain";
|
|
170
|
+
import type { PrefixedStorageKey } from "@polkadot/types/interfaces/childstate";
|
|
171
|
+
import type { StatementKind } from "@polkadot/types/interfaces/claims";
|
|
172
|
+
import type {
|
|
173
|
+
CollectiveOrigin,
|
|
174
|
+
MemberCount,
|
|
175
|
+
ProposalIndex,
|
|
176
|
+
Votes,
|
|
177
|
+
VotesTo230
|
|
178
|
+
} from "@polkadot/types/interfaces/collective";
|
|
179
|
+
import type { AuthorityId, RawVRFOutput } from "@polkadot/types/interfaces/consensus";
|
|
180
|
+
import type {
|
|
181
|
+
AliveContractInfo,
|
|
182
|
+
CodeHash,
|
|
183
|
+
CodeSource,
|
|
184
|
+
CodeUploadRequest,
|
|
185
|
+
CodeUploadResult,
|
|
186
|
+
CodeUploadResultValue,
|
|
187
|
+
ContractCallFlags,
|
|
188
|
+
ContractCallRequest,
|
|
189
|
+
ContractExecResult,
|
|
190
|
+
ContractExecResultOk,
|
|
191
|
+
ContractExecResultResult,
|
|
192
|
+
ContractExecResultSuccessTo255,
|
|
193
|
+
ContractExecResultSuccessTo260,
|
|
194
|
+
ContractExecResultTo255,
|
|
195
|
+
ContractExecResultTo260,
|
|
196
|
+
ContractExecResultTo267,
|
|
197
|
+
ContractExecResultU64,
|
|
198
|
+
ContractInfo,
|
|
199
|
+
ContractInstantiateResult,
|
|
200
|
+
ContractInstantiateResultTo267,
|
|
201
|
+
ContractInstantiateResultTo299,
|
|
202
|
+
ContractInstantiateResultU64,
|
|
203
|
+
ContractReturnFlags,
|
|
204
|
+
ContractStorageKey,
|
|
205
|
+
DeletedContract,
|
|
206
|
+
ExecReturnValue,
|
|
207
|
+
Gas,
|
|
208
|
+
HostFnWeights,
|
|
209
|
+
HostFnWeightsTo264,
|
|
210
|
+
InstantiateRequest,
|
|
211
|
+
InstantiateRequestV1,
|
|
212
|
+
InstantiateRequestV2,
|
|
213
|
+
InstantiateReturnValue,
|
|
214
|
+
InstantiateReturnValueOk,
|
|
215
|
+
InstantiateReturnValueTo267,
|
|
216
|
+
InstructionWeights,
|
|
217
|
+
Limits,
|
|
218
|
+
LimitsTo264,
|
|
219
|
+
PrefabWasmModule,
|
|
220
|
+
RentProjection,
|
|
221
|
+
Schedule,
|
|
222
|
+
ScheduleTo212,
|
|
223
|
+
ScheduleTo258,
|
|
224
|
+
ScheduleTo264,
|
|
225
|
+
SeedOf,
|
|
226
|
+
StorageDeposit,
|
|
227
|
+
TombstoneContractInfo,
|
|
228
|
+
TrieId
|
|
229
|
+
} from "@polkadot/types/interfaces/contracts";
|
|
230
|
+
import type {
|
|
231
|
+
ContractConstructorSpecLatest,
|
|
232
|
+
ContractConstructorSpecV0,
|
|
233
|
+
ContractConstructorSpecV1,
|
|
234
|
+
ContractConstructorSpecV2,
|
|
235
|
+
ContractConstructorSpecV3,
|
|
236
|
+
ContractConstructorSpecV4,
|
|
237
|
+
ContractContractSpecV0,
|
|
238
|
+
ContractContractSpecV1,
|
|
239
|
+
ContractContractSpecV2,
|
|
240
|
+
ContractContractSpecV3,
|
|
241
|
+
ContractContractSpecV4,
|
|
242
|
+
ContractContractSpecV5,
|
|
243
|
+
ContractContractSpecV6,
|
|
244
|
+
ContractCryptoHasher,
|
|
245
|
+
ContractDiscriminant,
|
|
246
|
+
ContractDisplayName,
|
|
247
|
+
ContractEnvironmentV4,
|
|
248
|
+
ContractEventParamSpecLatest,
|
|
249
|
+
ContractEventParamSpecV0,
|
|
250
|
+
ContractEventParamSpecV2,
|
|
251
|
+
ContractEventSpecLatest,
|
|
252
|
+
ContractEventSpecV0,
|
|
253
|
+
ContractEventSpecV1,
|
|
254
|
+
ContractEventSpecV2,
|
|
255
|
+
ContractEventSpecV3,
|
|
256
|
+
ContractLayoutArray,
|
|
257
|
+
ContractLayoutCell,
|
|
258
|
+
ContractLayoutEnum,
|
|
259
|
+
ContractLayoutHash,
|
|
260
|
+
ContractLayoutHashingStrategy,
|
|
261
|
+
ContractLayoutKey,
|
|
262
|
+
ContractLayoutStruct,
|
|
263
|
+
ContractLayoutStructField,
|
|
264
|
+
ContractMessageParamSpecLatest,
|
|
265
|
+
ContractMessageParamSpecV0,
|
|
266
|
+
ContractMessageParamSpecV2,
|
|
267
|
+
ContractMessageSpecLatest,
|
|
268
|
+
ContractMessageSpecV0,
|
|
269
|
+
ContractMessageSpecV1,
|
|
270
|
+
ContractMessageSpecV2,
|
|
271
|
+
ContractMessageSpecV3,
|
|
272
|
+
ContractMetadata,
|
|
273
|
+
ContractMetadataLatest,
|
|
274
|
+
ContractMetadataV0,
|
|
275
|
+
ContractMetadataV1,
|
|
276
|
+
ContractMetadataV2,
|
|
277
|
+
ContractMetadataV3,
|
|
278
|
+
ContractMetadataV4,
|
|
279
|
+
ContractMetadataV5,
|
|
280
|
+
ContractMetadataV6,
|
|
281
|
+
ContractProject,
|
|
282
|
+
ContractProjectContract,
|
|
283
|
+
ContractProjectInfo,
|
|
284
|
+
ContractProjectSource,
|
|
285
|
+
ContractProjectV0,
|
|
286
|
+
ContractReviveProjectInfo,
|
|
287
|
+
ContractReviveProjectSource,
|
|
288
|
+
ContractSelector,
|
|
289
|
+
ContractStorageLayout,
|
|
290
|
+
ContractTypeSpec
|
|
291
|
+
} from "@polkadot/types/interfaces/contractsAbi";
|
|
292
|
+
import type {
|
|
293
|
+
FundIndex,
|
|
294
|
+
FundInfo,
|
|
295
|
+
LastContribution,
|
|
296
|
+
TrieIndex
|
|
297
|
+
} from "@polkadot/types/interfaces/crowdloan";
|
|
298
|
+
import type {
|
|
299
|
+
CollationInfo,
|
|
300
|
+
CollationInfoV1,
|
|
301
|
+
ConfigData,
|
|
302
|
+
MessageId,
|
|
303
|
+
OverweightIndex,
|
|
304
|
+
PageCounter,
|
|
305
|
+
PageIndexData
|
|
306
|
+
} from "@polkadot/types/interfaces/cumulus";
|
|
307
|
+
import type {
|
|
308
|
+
AccountVote,
|
|
309
|
+
AccountVoteSplit,
|
|
310
|
+
AccountVoteStandard,
|
|
311
|
+
Conviction,
|
|
312
|
+
Delegations,
|
|
313
|
+
PreimageStatus,
|
|
314
|
+
PreimageStatusAvailable,
|
|
315
|
+
PriorLock,
|
|
316
|
+
PropIndex,
|
|
317
|
+
Proposal,
|
|
318
|
+
ProxyState,
|
|
319
|
+
ReferendumIndex,
|
|
320
|
+
ReferendumInfo,
|
|
321
|
+
ReferendumInfoFinished,
|
|
322
|
+
ReferendumInfoTo239,
|
|
323
|
+
ReferendumStatus,
|
|
324
|
+
Tally,
|
|
325
|
+
Voting,
|
|
326
|
+
VotingDelegating,
|
|
327
|
+
VotingDirect,
|
|
328
|
+
VotingDirectVote
|
|
329
|
+
} from "@polkadot/types/interfaces/democracy";
|
|
330
|
+
import type { BlockStats } from "@polkadot/types/interfaces/dev";
|
|
331
|
+
import type {
|
|
332
|
+
CallDryRunEffects,
|
|
333
|
+
DispatchResultWithPostInfo,
|
|
334
|
+
PostDispatchInfo,
|
|
335
|
+
XcmDryRunApiError,
|
|
336
|
+
XcmDryRunEffects
|
|
337
|
+
} from "@polkadot/types/interfaces/dryRunApi";
|
|
338
|
+
import type {
|
|
339
|
+
ApprovalFlag,
|
|
340
|
+
DefunctVoter,
|
|
341
|
+
Renouncing,
|
|
342
|
+
SetIndex,
|
|
343
|
+
Vote,
|
|
344
|
+
VoteIndex,
|
|
345
|
+
VoteThreshold,
|
|
346
|
+
VoterInfo
|
|
347
|
+
} from "@polkadot/types/interfaces/elections";
|
|
348
|
+
import type { CreatedBlock, ImportedAux } from "@polkadot/types/interfaces/engine";
|
|
349
|
+
import type {
|
|
350
|
+
BlockV0,
|
|
351
|
+
BlockV1,
|
|
352
|
+
BlockV2,
|
|
353
|
+
BlockV3,
|
|
354
|
+
EIP1559Transaction,
|
|
355
|
+
EIP2930Transaction,
|
|
356
|
+
EIP7702Transaction,
|
|
357
|
+
EthAccessList,
|
|
358
|
+
EthAccessListItem,
|
|
359
|
+
EthAccount,
|
|
360
|
+
EthAddress,
|
|
361
|
+
EthAuthorizationList,
|
|
362
|
+
EthAuthorizationListItem,
|
|
363
|
+
EthAuthorizationSignature,
|
|
364
|
+
EthBlock,
|
|
365
|
+
EthBloom,
|
|
366
|
+
EthCallRequest,
|
|
367
|
+
EthFeeHistory,
|
|
368
|
+
EthFilter,
|
|
369
|
+
EthFilterAddress,
|
|
370
|
+
EthFilterChanges,
|
|
371
|
+
EthFilterTopic,
|
|
372
|
+
EthFilterTopicEntry,
|
|
373
|
+
EthFilterTopicInner,
|
|
374
|
+
EthHeader,
|
|
375
|
+
EthLegacyTransactionSignature,
|
|
376
|
+
EthLog,
|
|
377
|
+
EthReceipt,
|
|
378
|
+
EthReceiptV0,
|
|
379
|
+
EthReceiptV3,
|
|
380
|
+
EthReceiptV4,
|
|
381
|
+
EthRichBlock,
|
|
382
|
+
EthRichHeader,
|
|
383
|
+
EthStorageProof,
|
|
384
|
+
EthSubKind,
|
|
385
|
+
EthSubParams,
|
|
386
|
+
EthSubResult,
|
|
387
|
+
EthSyncInfo,
|
|
388
|
+
EthSyncStatus,
|
|
389
|
+
EthTransaction,
|
|
390
|
+
EthTransactionAction,
|
|
391
|
+
EthTransactionCondition,
|
|
392
|
+
EthTransactionRequest,
|
|
393
|
+
EthTransactionSignature,
|
|
394
|
+
EthTransactionStatus,
|
|
395
|
+
EthWork,
|
|
396
|
+
EthereumAccountId,
|
|
397
|
+
EthereumAddress,
|
|
398
|
+
EthereumLookupSource,
|
|
399
|
+
EthereumSignature,
|
|
400
|
+
LegacyTransaction,
|
|
401
|
+
TransactionV0,
|
|
402
|
+
TransactionV1,
|
|
403
|
+
TransactionV2,
|
|
404
|
+
TransactionV3
|
|
405
|
+
} from "@polkadot/types/interfaces/eth";
|
|
406
|
+
import type {
|
|
407
|
+
EvmAccount,
|
|
408
|
+
EvmCallInfo,
|
|
409
|
+
EvmCallInfoV2,
|
|
410
|
+
EvmCreateInfo,
|
|
411
|
+
EvmCreateInfoV2,
|
|
412
|
+
EvmLog,
|
|
413
|
+
EvmVicinity,
|
|
414
|
+
EvmWeightInfo,
|
|
415
|
+
ExitError,
|
|
416
|
+
ExitFatal,
|
|
417
|
+
ExitReason,
|
|
418
|
+
ExitRevert,
|
|
419
|
+
ExitSucceed
|
|
420
|
+
} from "@polkadot/types/interfaces/evm";
|
|
421
|
+
import type {
|
|
422
|
+
AnySignature,
|
|
423
|
+
EcdsaSignature,
|
|
424
|
+
Ed25519Signature,
|
|
425
|
+
Era,
|
|
426
|
+
Extrinsic,
|
|
427
|
+
ExtrinsicEra,
|
|
428
|
+
ExtrinsicPayload,
|
|
429
|
+
ExtrinsicPayloadUnknown,
|
|
430
|
+
ExtrinsicPayloadV4,
|
|
431
|
+
ExtrinsicPayloadV5,
|
|
432
|
+
ExtrinsicSignature,
|
|
433
|
+
ExtrinsicSignatureV4,
|
|
434
|
+
ExtrinsicSignatureV5,
|
|
435
|
+
ExtrinsicUnknown,
|
|
436
|
+
ExtrinsicV4,
|
|
437
|
+
ExtrinsicV5,
|
|
438
|
+
ImmortalEra,
|
|
439
|
+
MortalEra,
|
|
440
|
+
MultiSignature,
|
|
441
|
+
Signature,
|
|
442
|
+
SignerPayload,
|
|
443
|
+
Sr25519Signature
|
|
444
|
+
} from "@polkadot/types/interfaces/extrinsics";
|
|
445
|
+
import type { FungiblesAccessError } from "@polkadot/types/interfaces/fungibles";
|
|
446
|
+
import type {
|
|
447
|
+
AssetOptions,
|
|
448
|
+
Owner,
|
|
449
|
+
PermissionLatest,
|
|
450
|
+
PermissionVersions,
|
|
451
|
+
PermissionsV1
|
|
452
|
+
} from "@polkadot/types/interfaces/genericAsset";
|
|
453
|
+
import type { GenesisBuildErr } from "@polkadot/types/interfaces/genesisBuilder";
|
|
454
|
+
import type {
|
|
455
|
+
ActiveGilt,
|
|
456
|
+
ActiveGiltsTotal,
|
|
457
|
+
ActiveIndex,
|
|
458
|
+
GiltBid
|
|
459
|
+
} from "@polkadot/types/interfaces/gilt";
|
|
460
|
+
import type {
|
|
461
|
+
AuthorityIndex,
|
|
462
|
+
AuthorityList,
|
|
463
|
+
AuthoritySet,
|
|
464
|
+
AuthoritySetChange,
|
|
465
|
+
AuthoritySetChanges,
|
|
466
|
+
AuthorityWeight,
|
|
467
|
+
DelayKind,
|
|
468
|
+
DelayKindBest,
|
|
469
|
+
EncodedFinalityProofs,
|
|
470
|
+
ForkTreePendingChange,
|
|
471
|
+
ForkTreePendingChangeNode,
|
|
472
|
+
GrandpaCommit,
|
|
473
|
+
GrandpaEquivocation,
|
|
474
|
+
GrandpaEquivocationProof,
|
|
475
|
+
GrandpaEquivocationValue,
|
|
476
|
+
GrandpaJustification,
|
|
477
|
+
GrandpaPrecommit,
|
|
478
|
+
GrandpaPrevote,
|
|
479
|
+
GrandpaSignedPrecommit,
|
|
480
|
+
JustificationNotification,
|
|
481
|
+
KeyOwnerProof,
|
|
482
|
+
NextAuthority,
|
|
483
|
+
PendingChange,
|
|
484
|
+
PendingPause,
|
|
485
|
+
PendingResume,
|
|
486
|
+
Precommits,
|
|
487
|
+
Prevotes,
|
|
488
|
+
ReportedRoundStates,
|
|
489
|
+
RoundState,
|
|
490
|
+
SetId,
|
|
491
|
+
StoredPendingChange,
|
|
492
|
+
StoredState
|
|
493
|
+
} from "@polkadot/types/interfaces/grandpa";
|
|
494
|
+
import type {
|
|
495
|
+
IdentityFields,
|
|
496
|
+
IdentityInfo,
|
|
497
|
+
IdentityInfoAdditional,
|
|
498
|
+
IdentityInfoTo198,
|
|
499
|
+
IdentityJudgement,
|
|
500
|
+
RegistrarIndex,
|
|
501
|
+
RegistrarInfo,
|
|
502
|
+
Registration,
|
|
503
|
+
RegistrationJudgement,
|
|
504
|
+
RegistrationTo198
|
|
505
|
+
} from "@polkadot/types/interfaces/identity";
|
|
506
|
+
import type {
|
|
507
|
+
AuthIndex,
|
|
508
|
+
AuthoritySignature,
|
|
509
|
+
Heartbeat,
|
|
510
|
+
HeartbeatTo244,
|
|
511
|
+
OpaqueMultiaddr,
|
|
512
|
+
OpaqueNetworkState,
|
|
513
|
+
OpaquePeerId
|
|
514
|
+
} from "@polkadot/types/interfaces/imOnline";
|
|
515
|
+
import type { CallIndex, LotteryConfig } from "@polkadot/types/interfaces/lottery";
|
|
516
|
+
import type {
|
|
517
|
+
CustomMetadata15,
|
|
518
|
+
CustomValueMetadata15,
|
|
519
|
+
EnumDeprecationInfoV16,
|
|
520
|
+
ErrorMetadataLatest,
|
|
521
|
+
ErrorMetadataV10,
|
|
522
|
+
ErrorMetadataV11,
|
|
523
|
+
ErrorMetadataV12,
|
|
524
|
+
ErrorMetadataV13,
|
|
525
|
+
ErrorMetadataV14,
|
|
526
|
+
ErrorMetadataV9,
|
|
527
|
+
EventMetadataLatest,
|
|
528
|
+
EventMetadataV10,
|
|
529
|
+
EventMetadataV11,
|
|
530
|
+
EventMetadataV12,
|
|
531
|
+
EventMetadataV13,
|
|
532
|
+
EventMetadataV14,
|
|
533
|
+
EventMetadataV9,
|
|
534
|
+
ExtrinsicMetadataLatest,
|
|
535
|
+
ExtrinsicMetadataV11,
|
|
536
|
+
ExtrinsicMetadataV12,
|
|
537
|
+
ExtrinsicMetadataV13,
|
|
538
|
+
ExtrinsicMetadataV14,
|
|
539
|
+
ExtrinsicMetadataV15,
|
|
540
|
+
ExtrinsicMetadataV16,
|
|
541
|
+
FunctionArgumentMetadataLatest,
|
|
542
|
+
FunctionArgumentMetadataV10,
|
|
543
|
+
FunctionArgumentMetadataV11,
|
|
544
|
+
FunctionArgumentMetadataV12,
|
|
545
|
+
FunctionArgumentMetadataV13,
|
|
546
|
+
FunctionArgumentMetadataV14,
|
|
547
|
+
FunctionArgumentMetadataV9,
|
|
548
|
+
FunctionMetadataLatest,
|
|
549
|
+
FunctionMetadataV10,
|
|
550
|
+
FunctionMetadataV11,
|
|
551
|
+
FunctionMetadataV12,
|
|
552
|
+
FunctionMetadataV13,
|
|
553
|
+
FunctionMetadataV14,
|
|
554
|
+
FunctionMetadataV9,
|
|
555
|
+
ItemDeprecationInfoV16,
|
|
556
|
+
MetadataAll,
|
|
557
|
+
MetadataLatest,
|
|
558
|
+
MetadataV10,
|
|
559
|
+
MetadataV11,
|
|
560
|
+
MetadataV12,
|
|
561
|
+
MetadataV13,
|
|
562
|
+
MetadataV14,
|
|
563
|
+
MetadataV15,
|
|
564
|
+
MetadataV16,
|
|
565
|
+
MetadataV9,
|
|
566
|
+
ModuleConstantMetadataV10,
|
|
567
|
+
ModuleConstantMetadataV11,
|
|
568
|
+
ModuleConstantMetadataV12,
|
|
569
|
+
ModuleConstantMetadataV13,
|
|
570
|
+
ModuleConstantMetadataV9,
|
|
571
|
+
ModuleMetadataV10,
|
|
572
|
+
ModuleMetadataV11,
|
|
573
|
+
ModuleMetadataV12,
|
|
574
|
+
ModuleMetadataV13,
|
|
575
|
+
ModuleMetadataV9,
|
|
576
|
+
OpaqueMetadata,
|
|
577
|
+
OuterEnums15,
|
|
578
|
+
PalletAssociatedTypeMetadataV16,
|
|
579
|
+
PalletCallMetadataLatest,
|
|
580
|
+
PalletCallMetadataV14,
|
|
581
|
+
PalletCallMetadataV16,
|
|
582
|
+
PalletConstantMetadataLatest,
|
|
583
|
+
PalletConstantMetadataV14,
|
|
584
|
+
PalletConstantMetadataV16,
|
|
585
|
+
PalletErrorMetadataLatest,
|
|
586
|
+
PalletErrorMetadataV14,
|
|
587
|
+
PalletErrorMetadataV16,
|
|
588
|
+
PalletEventMetadataLatest,
|
|
589
|
+
PalletEventMetadataV14,
|
|
590
|
+
PalletEventMetadataV16,
|
|
591
|
+
PalletMetadataLatest,
|
|
592
|
+
PalletMetadataV14,
|
|
593
|
+
PalletMetadataV15,
|
|
594
|
+
PalletMetadataV16,
|
|
595
|
+
PalletStorageMetadataLatest,
|
|
596
|
+
PalletStorageMetadataV14,
|
|
597
|
+
PalletStorageMetadataV16,
|
|
598
|
+
PalletViewFunctionMetadataV16,
|
|
599
|
+
PortableType,
|
|
600
|
+
PortableTypeV14,
|
|
601
|
+
RuntimeApiMetadataLatest,
|
|
602
|
+
RuntimeApiMetadataV15,
|
|
603
|
+
RuntimeApiMetadataV16,
|
|
604
|
+
RuntimeApiMethodMetadataV15,
|
|
605
|
+
RuntimeApiMethodMetadataV16,
|
|
606
|
+
RuntimeApiMethodParamMetadataV15,
|
|
607
|
+
SignedExtensionMetadataLatest,
|
|
608
|
+
SignedExtensionMetadataV14,
|
|
609
|
+
StorageEntryMetadataLatest,
|
|
610
|
+
StorageEntryMetadataV10,
|
|
611
|
+
StorageEntryMetadataV11,
|
|
612
|
+
StorageEntryMetadataV12,
|
|
613
|
+
StorageEntryMetadataV13,
|
|
614
|
+
StorageEntryMetadataV14,
|
|
615
|
+
StorageEntryMetadataV16,
|
|
616
|
+
StorageEntryMetadataV9,
|
|
617
|
+
StorageEntryModifierLatest,
|
|
618
|
+
StorageEntryModifierV10,
|
|
619
|
+
StorageEntryModifierV11,
|
|
620
|
+
StorageEntryModifierV12,
|
|
621
|
+
StorageEntryModifierV13,
|
|
622
|
+
StorageEntryModifierV14,
|
|
623
|
+
StorageEntryModifierV9,
|
|
624
|
+
StorageEntryTypeLatest,
|
|
625
|
+
StorageEntryTypeV10,
|
|
626
|
+
StorageEntryTypeV11,
|
|
627
|
+
StorageEntryTypeV12,
|
|
628
|
+
StorageEntryTypeV13,
|
|
629
|
+
StorageEntryTypeV14,
|
|
630
|
+
StorageEntryTypeV9,
|
|
631
|
+
StorageHasher,
|
|
632
|
+
StorageHasherV10,
|
|
633
|
+
StorageHasherV11,
|
|
634
|
+
StorageHasherV12,
|
|
635
|
+
StorageHasherV13,
|
|
636
|
+
StorageHasherV14,
|
|
637
|
+
StorageHasherV9,
|
|
638
|
+
StorageMetadataV10,
|
|
639
|
+
StorageMetadataV11,
|
|
640
|
+
StorageMetadataV12,
|
|
641
|
+
StorageMetadataV13,
|
|
642
|
+
StorageMetadataV9,
|
|
643
|
+
TransactionExtensionMetadataLatest,
|
|
644
|
+
TransactionExtensionMetadataV16,
|
|
645
|
+
VariantDeprecationInfoV16
|
|
646
|
+
} from "@polkadot/types/interfaces/metadata";
|
|
647
|
+
import type {
|
|
648
|
+
Mixnode,
|
|
649
|
+
MixnodesErr,
|
|
650
|
+
SessionPhase,
|
|
651
|
+
SessionStatus
|
|
652
|
+
} from "@polkadot/types/interfaces/mixnet";
|
|
653
|
+
import type {
|
|
654
|
+
MmrBatchProof,
|
|
655
|
+
MmrEncodableOpaqueLeaf,
|
|
656
|
+
MmrError,
|
|
657
|
+
MmrHash,
|
|
658
|
+
MmrLeafBatchProof,
|
|
659
|
+
MmrLeafIndex,
|
|
660
|
+
MmrLeafProof,
|
|
661
|
+
MmrNodeIndex,
|
|
662
|
+
MmrProof
|
|
663
|
+
} from "@polkadot/types/interfaces/mmr";
|
|
664
|
+
import type { NftCollectionId, NftItemId } from "@polkadot/types/interfaces/nfts";
|
|
665
|
+
import type { NpApiError, NpPoolId } from "@polkadot/types/interfaces/nompools";
|
|
666
|
+
import type { StorageKind } from "@polkadot/types/interfaces/offchain";
|
|
667
|
+
import type {
|
|
668
|
+
DeferredOffenceOf,
|
|
669
|
+
Kind,
|
|
670
|
+
OffenceDetails,
|
|
671
|
+
Offender,
|
|
672
|
+
OpaqueTimeSlot,
|
|
673
|
+
ReportIdOf,
|
|
674
|
+
Reporter
|
|
675
|
+
} from "@polkadot/types/interfaces/offences";
|
|
676
|
+
import type {
|
|
677
|
+
AbridgedCandidateReceipt,
|
|
678
|
+
AbridgedHostConfiguration,
|
|
679
|
+
AbridgedHrmpChannel,
|
|
680
|
+
ApprovalVotingParams,
|
|
681
|
+
AssignmentId,
|
|
682
|
+
AssignmentKind,
|
|
683
|
+
AsyncBackingParams,
|
|
684
|
+
AttestedCandidate,
|
|
685
|
+
AuctionIndex,
|
|
686
|
+
AuthorityDiscoveryId,
|
|
687
|
+
AvailabilityBitfield,
|
|
688
|
+
AvailabilityBitfieldRecord,
|
|
689
|
+
BackedCandidate,
|
|
690
|
+
BackingState,
|
|
691
|
+
Bidder,
|
|
692
|
+
BufferedSessionChange,
|
|
693
|
+
CandidateCommitments,
|
|
694
|
+
CandidateDescriptor,
|
|
695
|
+
CandidateEvent,
|
|
696
|
+
CandidateHash,
|
|
697
|
+
CandidateInfo,
|
|
698
|
+
CandidatePendingAvailability,
|
|
699
|
+
CandidateReceipt,
|
|
700
|
+
CollatorId,
|
|
701
|
+
CollatorSignature,
|
|
702
|
+
CommittedCandidateReceipt,
|
|
703
|
+
Constraints,
|
|
704
|
+
CoreAssignment,
|
|
705
|
+
CoreIndex,
|
|
706
|
+
CoreOccupied,
|
|
707
|
+
CoreState,
|
|
708
|
+
DisputeLocation,
|
|
709
|
+
DisputeProof,
|
|
710
|
+
DisputeResult,
|
|
711
|
+
DisputeState,
|
|
712
|
+
DisputeStatement,
|
|
713
|
+
DisputeStatementSet,
|
|
714
|
+
DisputesTimeSlot,
|
|
715
|
+
DoubleVoteReport,
|
|
716
|
+
DownwardMessage,
|
|
717
|
+
ExecutorParam,
|
|
718
|
+
ExecutorParams,
|
|
719
|
+
ExecutorParamsHash,
|
|
720
|
+
ExplicitDisputeStatement,
|
|
721
|
+
GlobalValidationData,
|
|
722
|
+
GlobalValidationSchedule,
|
|
723
|
+
GroupIndex,
|
|
724
|
+
GroupRotationInfo,
|
|
725
|
+
HeadData,
|
|
726
|
+
HostConfiguration,
|
|
727
|
+
HrmpChannel,
|
|
728
|
+
HrmpChannelId,
|
|
729
|
+
HrmpOpenChannelRequest,
|
|
730
|
+
InboundDownwardMessage,
|
|
731
|
+
InboundHrmpLimitations,
|
|
732
|
+
InboundHrmpMessage,
|
|
733
|
+
InboundHrmpMessages,
|
|
734
|
+
IncomingParachain,
|
|
735
|
+
IncomingParachainDeploy,
|
|
736
|
+
IncomingParachainFixed,
|
|
737
|
+
InvalidDisputeStatementKind,
|
|
738
|
+
LeasePeriod,
|
|
739
|
+
LeasePeriodOf,
|
|
740
|
+
LocalValidationData,
|
|
741
|
+
MessageIngestionType,
|
|
742
|
+
MessageQueueChain,
|
|
743
|
+
MessagingStateSnapshot,
|
|
744
|
+
MessagingStateSnapshotEgressEntry,
|
|
745
|
+
MultiDisputeStatementSet,
|
|
746
|
+
NewBidder,
|
|
747
|
+
NodeFeatures,
|
|
748
|
+
OccupiedCore,
|
|
749
|
+
OccupiedCoreAssumption,
|
|
750
|
+
OldV1SessionInfo,
|
|
751
|
+
OutboundHrmpChannelLimitations,
|
|
752
|
+
OutboundHrmpMessage,
|
|
753
|
+
ParaGenesisArgs,
|
|
754
|
+
ParaId,
|
|
755
|
+
ParaInfo,
|
|
756
|
+
ParaLifecycle,
|
|
757
|
+
ParaPastCodeMeta,
|
|
758
|
+
ParaScheduling,
|
|
759
|
+
ParaValidatorIndex,
|
|
760
|
+
ParachainDispatchOrigin,
|
|
761
|
+
ParachainInherentData,
|
|
762
|
+
ParachainProposal,
|
|
763
|
+
ParachainsInherentData,
|
|
764
|
+
ParathreadClaim,
|
|
765
|
+
ParathreadClaimQueue,
|
|
766
|
+
ParathreadEntry,
|
|
767
|
+
PendingSlashes,
|
|
768
|
+
PersistedValidationData,
|
|
769
|
+
PvfCheckStatement,
|
|
770
|
+
PvfExecTimeoutKind,
|
|
771
|
+
PvfPrepTimeoutKind,
|
|
772
|
+
QueuedParathread,
|
|
773
|
+
RegisteredParachainInfo,
|
|
774
|
+
RelayBlockNumber,
|
|
775
|
+
RelayChainBlockNumber,
|
|
776
|
+
RelayChainHash,
|
|
777
|
+
RelayHash,
|
|
778
|
+
Remark,
|
|
779
|
+
ReplacementTimes,
|
|
780
|
+
Retriable,
|
|
781
|
+
ScheduledCore,
|
|
782
|
+
Scheduling,
|
|
783
|
+
ScrapedOnChainVotes,
|
|
784
|
+
ServiceQuality,
|
|
785
|
+
SessionInfo,
|
|
786
|
+
SessionInfoValidatorGroup,
|
|
787
|
+
SignedAvailabilityBitfield,
|
|
788
|
+
SignedAvailabilityBitfields,
|
|
789
|
+
SigningContext,
|
|
790
|
+
SlashingOffenceKind,
|
|
791
|
+
SlotRange,
|
|
792
|
+
SlotRange10,
|
|
793
|
+
Statement,
|
|
794
|
+
SubId,
|
|
795
|
+
SystemInherentData,
|
|
796
|
+
TransientValidationData,
|
|
797
|
+
UpgradeGoAhead,
|
|
798
|
+
UpgradeRestriction,
|
|
799
|
+
UpwardMessage,
|
|
800
|
+
ValidDisputeStatementKind,
|
|
801
|
+
ValidationCode,
|
|
802
|
+
ValidationCodeHash,
|
|
803
|
+
ValidationData,
|
|
804
|
+
ValidationDataType,
|
|
805
|
+
ValidationFunctionParams,
|
|
806
|
+
ValidatorSignature,
|
|
807
|
+
ValidityAttestation,
|
|
808
|
+
VecInboundHrmpMessage,
|
|
809
|
+
WinnersData,
|
|
810
|
+
WinnersData10,
|
|
811
|
+
WinnersDataTuple,
|
|
812
|
+
WinnersDataTuple10,
|
|
813
|
+
WinningData,
|
|
814
|
+
WinningData10,
|
|
815
|
+
WinningDataEntry
|
|
816
|
+
} from "@polkadot/types/interfaces/parachains";
|
|
817
|
+
import type {
|
|
818
|
+
FeeDetails,
|
|
819
|
+
InclusionFee,
|
|
820
|
+
RuntimeDispatchInfo,
|
|
821
|
+
RuntimeDispatchInfoV1,
|
|
822
|
+
RuntimeDispatchInfoV2
|
|
823
|
+
} from "@polkadot/types/interfaces/payment";
|
|
824
|
+
import type { Approvals } from "@polkadot/types/interfaces/poll";
|
|
825
|
+
import type {
|
|
826
|
+
ProxyAnnouncement,
|
|
827
|
+
ProxyDefinition,
|
|
828
|
+
ProxyType
|
|
829
|
+
} from "@polkadot/types/interfaces/proxy";
|
|
830
|
+
import type { AccountStatus, AccountValidity } from "@polkadot/types/interfaces/purchase";
|
|
831
|
+
import type { ActiveRecovery, RecoveryConfig } from "@polkadot/types/interfaces/recovery";
|
|
832
|
+
import type { RpcMethods } from "@polkadot/types/interfaces/rpc";
|
|
833
|
+
import type {
|
|
834
|
+
AccountId,
|
|
835
|
+
AccountId20,
|
|
836
|
+
AccountId32,
|
|
837
|
+
AccountId33,
|
|
838
|
+
AccountIdOf,
|
|
839
|
+
AccountIndex,
|
|
840
|
+
Address,
|
|
841
|
+
AssetId,
|
|
842
|
+
Balance,
|
|
843
|
+
BalanceOf,
|
|
844
|
+
Block,
|
|
845
|
+
BlockNumber,
|
|
846
|
+
BlockNumberFor,
|
|
847
|
+
BlockNumberOf,
|
|
848
|
+
Call,
|
|
849
|
+
CallHash,
|
|
850
|
+
CallHashOf,
|
|
851
|
+
ChangesTrieConfiguration,
|
|
852
|
+
ChangesTrieSignal,
|
|
853
|
+
CodecHash,
|
|
854
|
+
Consensus,
|
|
855
|
+
ConsensusEngineId,
|
|
856
|
+
CrateVersion,
|
|
857
|
+
Digest,
|
|
858
|
+
DigestItem,
|
|
859
|
+
EncodedJustification,
|
|
860
|
+
ExtrinsicInclusionMode,
|
|
861
|
+
ExtrinsicsWeight,
|
|
862
|
+
Fixed128,
|
|
863
|
+
Fixed64,
|
|
864
|
+
FixedI128,
|
|
865
|
+
FixedI64,
|
|
866
|
+
FixedU128,
|
|
867
|
+
FixedU64,
|
|
868
|
+
H1024,
|
|
869
|
+
H128,
|
|
870
|
+
H160,
|
|
871
|
+
H2048,
|
|
872
|
+
H256,
|
|
873
|
+
H32,
|
|
874
|
+
H512,
|
|
875
|
+
H64,
|
|
876
|
+
Hash,
|
|
877
|
+
Header,
|
|
878
|
+
HeaderPartial,
|
|
879
|
+
I32F32,
|
|
880
|
+
Index,
|
|
881
|
+
IndicesLookupSource,
|
|
882
|
+
Justification,
|
|
883
|
+
Justifications,
|
|
884
|
+
KeyTypeId,
|
|
885
|
+
KeyValue,
|
|
886
|
+
LockIdentifier,
|
|
887
|
+
LookupSource,
|
|
888
|
+
LookupTarget,
|
|
889
|
+
ModuleId,
|
|
890
|
+
Moment,
|
|
891
|
+
MultiAddress,
|
|
892
|
+
MultiSigner,
|
|
893
|
+
OpaqueCall,
|
|
894
|
+
Origin,
|
|
895
|
+
OriginCaller,
|
|
896
|
+
PalletId,
|
|
897
|
+
PalletVersion,
|
|
898
|
+
PalletsOrigin,
|
|
899
|
+
Pays,
|
|
900
|
+
PerU16,
|
|
901
|
+
Perbill,
|
|
902
|
+
Percent,
|
|
903
|
+
Permill,
|
|
904
|
+
Perquintill,
|
|
905
|
+
Phantom,
|
|
906
|
+
PhantomData,
|
|
907
|
+
PreRuntime,
|
|
908
|
+
Releases,
|
|
909
|
+
RuntimeCall,
|
|
910
|
+
RuntimeDbWeight,
|
|
911
|
+
RuntimeEvent,
|
|
912
|
+
Seal,
|
|
913
|
+
SealV0,
|
|
914
|
+
SignedBlock,
|
|
915
|
+
SignedBlockWithJustification,
|
|
916
|
+
SignedBlockWithJustifications,
|
|
917
|
+
Slot,
|
|
918
|
+
SlotDuration,
|
|
919
|
+
StorageData,
|
|
920
|
+
StorageInfo,
|
|
921
|
+
StorageProof,
|
|
922
|
+
TransactionInfo,
|
|
923
|
+
TransactionLongevity,
|
|
924
|
+
TransactionPriority,
|
|
925
|
+
TransactionStorageProof,
|
|
926
|
+
TransactionTag,
|
|
927
|
+
U32F32,
|
|
928
|
+
ValidatorId,
|
|
929
|
+
ValidatorIdOf,
|
|
930
|
+
Weight,
|
|
931
|
+
WeightMultiplier,
|
|
932
|
+
WeightV0,
|
|
933
|
+
WeightV1,
|
|
934
|
+
WeightV2
|
|
935
|
+
} from "@polkadot/types/interfaces/runtime";
|
|
936
|
+
import type {
|
|
937
|
+
Si0Field,
|
|
938
|
+
Si0LookupTypeId,
|
|
939
|
+
Si0Path,
|
|
940
|
+
Si0Type,
|
|
941
|
+
Si0TypeDef,
|
|
942
|
+
Si0TypeDefArray,
|
|
943
|
+
Si0TypeDefBitSequence,
|
|
944
|
+
Si0TypeDefCompact,
|
|
945
|
+
Si0TypeDefComposite,
|
|
946
|
+
Si0TypeDefPhantom,
|
|
947
|
+
Si0TypeDefPrimitive,
|
|
948
|
+
Si0TypeDefSequence,
|
|
949
|
+
Si0TypeDefTuple,
|
|
950
|
+
Si0TypeDefVariant,
|
|
951
|
+
Si0TypeParameter,
|
|
952
|
+
Si0Variant,
|
|
953
|
+
Si1Field,
|
|
954
|
+
Si1LookupTypeId,
|
|
955
|
+
Si1Path,
|
|
956
|
+
Si1Type,
|
|
957
|
+
Si1TypeDef,
|
|
958
|
+
Si1TypeDefArray,
|
|
959
|
+
Si1TypeDefBitSequence,
|
|
960
|
+
Si1TypeDefCompact,
|
|
961
|
+
Si1TypeDefComposite,
|
|
962
|
+
Si1TypeDefPrimitive,
|
|
963
|
+
Si1TypeDefSequence,
|
|
964
|
+
Si1TypeDefTuple,
|
|
965
|
+
Si1TypeDefVariant,
|
|
966
|
+
Si1TypeParameter,
|
|
967
|
+
Si1Variant,
|
|
968
|
+
SiField,
|
|
969
|
+
SiLookupTypeId,
|
|
970
|
+
SiPath,
|
|
971
|
+
SiType,
|
|
972
|
+
SiTypeDef,
|
|
973
|
+
SiTypeDefArray,
|
|
974
|
+
SiTypeDefBitSequence,
|
|
975
|
+
SiTypeDefCompact,
|
|
976
|
+
SiTypeDefComposite,
|
|
977
|
+
SiTypeDefPrimitive,
|
|
978
|
+
SiTypeDefSequence,
|
|
979
|
+
SiTypeDefTuple,
|
|
980
|
+
SiTypeDefVariant,
|
|
981
|
+
SiTypeParameter,
|
|
982
|
+
SiVariant
|
|
983
|
+
} from "@polkadot/types/interfaces/scaleInfo";
|
|
984
|
+
import type {
|
|
985
|
+
Period,
|
|
986
|
+
Priority,
|
|
987
|
+
SchedulePeriod,
|
|
988
|
+
SchedulePriority,
|
|
989
|
+
Scheduled,
|
|
990
|
+
ScheduledTo254,
|
|
991
|
+
TaskAddress
|
|
992
|
+
} from "@polkadot/types/interfaces/scheduler";
|
|
993
|
+
import type {
|
|
994
|
+
BeefyKey,
|
|
995
|
+
FullIdentification,
|
|
996
|
+
IdentificationTuple,
|
|
997
|
+
Keys,
|
|
998
|
+
MembershipProof,
|
|
999
|
+
SessionIndex,
|
|
1000
|
+
SessionKeys1,
|
|
1001
|
+
SessionKeys10,
|
|
1002
|
+
SessionKeys10B,
|
|
1003
|
+
SessionKeys2,
|
|
1004
|
+
SessionKeys3,
|
|
1005
|
+
SessionKeys4,
|
|
1006
|
+
SessionKeys5,
|
|
1007
|
+
SessionKeys6,
|
|
1008
|
+
SessionKeys6B,
|
|
1009
|
+
SessionKeys7,
|
|
1010
|
+
SessionKeys7B,
|
|
1011
|
+
SessionKeys8,
|
|
1012
|
+
SessionKeys8B,
|
|
1013
|
+
SessionKeys9,
|
|
1014
|
+
SessionKeys9B,
|
|
1015
|
+
ValidatorCount
|
|
1016
|
+
} from "@polkadot/types/interfaces/session";
|
|
1017
|
+
import type {
|
|
1018
|
+
Bid,
|
|
1019
|
+
BidKind,
|
|
1020
|
+
SocietyJudgement,
|
|
1021
|
+
SocietyVote,
|
|
1022
|
+
StrikeCount,
|
|
1023
|
+
VouchingStatus
|
|
1024
|
+
} from "@polkadot/types/interfaces/society";
|
|
1025
|
+
import type {
|
|
1026
|
+
ActiveEraInfo,
|
|
1027
|
+
CompactAssignments,
|
|
1028
|
+
CompactAssignmentsTo257,
|
|
1029
|
+
CompactAssignmentsTo265,
|
|
1030
|
+
CompactAssignmentsWith16,
|
|
1031
|
+
CompactAssignmentsWith24,
|
|
1032
|
+
CompactScore,
|
|
1033
|
+
CompactScoreCompact,
|
|
1034
|
+
ElectionCompute,
|
|
1035
|
+
ElectionPhase,
|
|
1036
|
+
ElectionResult,
|
|
1037
|
+
ElectionResultToSpec10,
|
|
1038
|
+
ElectionScore,
|
|
1039
|
+
ElectionSize,
|
|
1040
|
+
ElectionStatus,
|
|
1041
|
+
EraIndex,
|
|
1042
|
+
EraPoints,
|
|
1043
|
+
EraRewardPoints,
|
|
1044
|
+
EraRewards,
|
|
1045
|
+
Exposure,
|
|
1046
|
+
ExtendedBalance,
|
|
1047
|
+
Forcing,
|
|
1048
|
+
IndividualExposure,
|
|
1049
|
+
KeyType,
|
|
1050
|
+
MomentOf,
|
|
1051
|
+
Nominations,
|
|
1052
|
+
NominatorIndex,
|
|
1053
|
+
NominatorIndexCompact,
|
|
1054
|
+
OffchainAccuracy,
|
|
1055
|
+
OffchainAccuracyCompact,
|
|
1056
|
+
PhragmenScore,
|
|
1057
|
+
Points,
|
|
1058
|
+
RawSolution,
|
|
1059
|
+
RawSolutionTo265,
|
|
1060
|
+
RawSolutionWith16,
|
|
1061
|
+
RawSolutionWith24,
|
|
1062
|
+
ReadySolution,
|
|
1063
|
+
RewardDestination,
|
|
1064
|
+
RewardPoint,
|
|
1065
|
+
RoundSnapshot,
|
|
1066
|
+
SeatHolder,
|
|
1067
|
+
SignedSubmission,
|
|
1068
|
+
SignedSubmissionOf,
|
|
1069
|
+
SignedSubmissionTo276,
|
|
1070
|
+
SlashJournalEntry,
|
|
1071
|
+
SlashingSpans,
|
|
1072
|
+
SlashingSpansTo204,
|
|
1073
|
+
SolutionOrSnapshotSize,
|
|
1074
|
+
SolutionSupport,
|
|
1075
|
+
SolutionSupports,
|
|
1076
|
+
SpanIndex,
|
|
1077
|
+
SpanRecord,
|
|
1078
|
+
StakingLedger,
|
|
1079
|
+
StakingLedgerTo223,
|
|
1080
|
+
StakingLedgerTo240,
|
|
1081
|
+
SubmissionIndicesOf,
|
|
1082
|
+
Supports,
|
|
1083
|
+
UnappliedSlash,
|
|
1084
|
+
UnappliedSlashOther,
|
|
1085
|
+
UnlockChunk,
|
|
1086
|
+
ValidatorIndex,
|
|
1087
|
+
ValidatorIndexCompact,
|
|
1088
|
+
ValidatorPrefs,
|
|
1089
|
+
ValidatorPrefsTo145,
|
|
1090
|
+
ValidatorPrefsTo196,
|
|
1091
|
+
ValidatorPrefsWithBlocked,
|
|
1092
|
+
ValidatorPrefsWithCommission,
|
|
1093
|
+
VoteWeight,
|
|
1094
|
+
Voter
|
|
1095
|
+
} from "@polkadot/types/interfaces/staking";
|
|
1096
|
+
import type {
|
|
1097
|
+
ApiId,
|
|
1098
|
+
BlockTrace,
|
|
1099
|
+
BlockTraceEvent,
|
|
1100
|
+
BlockTraceEventData,
|
|
1101
|
+
BlockTraceSpan,
|
|
1102
|
+
KeyValueOption,
|
|
1103
|
+
MigrationStatusResult,
|
|
1104
|
+
ReadProof,
|
|
1105
|
+
RuntimeVersion,
|
|
1106
|
+
RuntimeVersionApi,
|
|
1107
|
+
RuntimeVersionPartial,
|
|
1108
|
+
RuntimeVersionPre3,
|
|
1109
|
+
RuntimeVersionPre4,
|
|
1110
|
+
SpecVersion,
|
|
1111
|
+
StorageChangeSet,
|
|
1112
|
+
TraceBlockResponse,
|
|
1113
|
+
TraceError
|
|
1114
|
+
} from "@polkadot/types/interfaces/state";
|
|
1115
|
+
import type {
|
|
1116
|
+
StatementStoreInvalidStatement,
|
|
1117
|
+
StatementStoreStatementSource,
|
|
1118
|
+
StatementStoreValidStatement
|
|
1119
|
+
} from "@polkadot/types/interfaces/statement";
|
|
1120
|
+
import type { WeightToFeeCoefficient } from "@polkadot/types/interfaces/support";
|
|
1121
|
+
import type {
|
|
1122
|
+
AccountInfo,
|
|
1123
|
+
AccountInfoWithDualRefCount,
|
|
1124
|
+
AccountInfoWithProviders,
|
|
1125
|
+
AccountInfoWithRefCount,
|
|
1126
|
+
AccountInfoWithRefCountU8,
|
|
1127
|
+
AccountInfoWithTripleRefCount,
|
|
1128
|
+
ApplyExtrinsicResult,
|
|
1129
|
+
ApplyExtrinsicResultPre6,
|
|
1130
|
+
ArithmeticError,
|
|
1131
|
+
BlockLength,
|
|
1132
|
+
BlockWeights,
|
|
1133
|
+
ChainProperties,
|
|
1134
|
+
ChainType,
|
|
1135
|
+
ConsumedWeight,
|
|
1136
|
+
DigestOf,
|
|
1137
|
+
DispatchClass,
|
|
1138
|
+
DispatchError,
|
|
1139
|
+
DispatchErrorModule,
|
|
1140
|
+
DispatchErrorModulePre6,
|
|
1141
|
+
DispatchErrorModuleU8,
|
|
1142
|
+
DispatchErrorModuleU8a,
|
|
1143
|
+
DispatchErrorPre6,
|
|
1144
|
+
DispatchErrorPre6First,
|
|
1145
|
+
DispatchErrorTo198,
|
|
1146
|
+
DispatchInfo,
|
|
1147
|
+
DispatchInfoTo190,
|
|
1148
|
+
DispatchInfoTo244,
|
|
1149
|
+
DispatchOutcome,
|
|
1150
|
+
DispatchOutcomePre6,
|
|
1151
|
+
DispatchResult,
|
|
1152
|
+
DispatchResultOf,
|
|
1153
|
+
DispatchResultTo198,
|
|
1154
|
+
Event,
|
|
1155
|
+
EventId,
|
|
1156
|
+
EventIndex,
|
|
1157
|
+
EventRecord,
|
|
1158
|
+
Health,
|
|
1159
|
+
InvalidTransaction,
|
|
1160
|
+
Key,
|
|
1161
|
+
LastRuntimeUpgradeInfo,
|
|
1162
|
+
NetworkState,
|
|
1163
|
+
NetworkStatePeerset,
|
|
1164
|
+
NetworkStatePeersetInfo,
|
|
1165
|
+
NodeRole,
|
|
1166
|
+
NotConnectedPeer,
|
|
1167
|
+
Peer,
|
|
1168
|
+
PeerEndpoint,
|
|
1169
|
+
PeerEndpointAddr,
|
|
1170
|
+
PeerInfo,
|
|
1171
|
+
PeerPing,
|
|
1172
|
+
PerDispatchClassU32,
|
|
1173
|
+
PerDispatchClassWeight,
|
|
1174
|
+
PerDispatchClassWeightsPerClass,
|
|
1175
|
+
Phase,
|
|
1176
|
+
RawOrigin,
|
|
1177
|
+
RefCount,
|
|
1178
|
+
RefCountTo259,
|
|
1179
|
+
SyncState,
|
|
1180
|
+
SystemOrigin,
|
|
1181
|
+
TokenError,
|
|
1182
|
+
TransactionValidityError,
|
|
1183
|
+
TransactionalError,
|
|
1184
|
+
UnknownTransaction,
|
|
1185
|
+
WeightPerClass
|
|
1186
|
+
} from "@polkadot/types/interfaces/system";
|
|
1187
|
+
import type {
|
|
1188
|
+
Bounty,
|
|
1189
|
+
BountyIndex,
|
|
1190
|
+
BountyStatus,
|
|
1191
|
+
BountyStatusActive,
|
|
1192
|
+
BountyStatusCuratorProposed,
|
|
1193
|
+
BountyStatusPendingPayout,
|
|
1194
|
+
OpenTip,
|
|
1195
|
+
OpenTipFinderTo225,
|
|
1196
|
+
OpenTipTip,
|
|
1197
|
+
OpenTipTo225,
|
|
1198
|
+
TreasuryProposal
|
|
1199
|
+
} from "@polkadot/types/interfaces/treasury";
|
|
1200
|
+
import type { Multiplier } from "@polkadot/types/interfaces/txpayment";
|
|
1201
|
+
import type {
|
|
1202
|
+
TransactionSource,
|
|
1203
|
+
TransactionValidity,
|
|
1204
|
+
ValidTransaction
|
|
1205
|
+
} from "@polkadot/types/interfaces/txqueue";
|
|
1206
|
+
import type {
|
|
1207
|
+
ClassDetails,
|
|
1208
|
+
ClassId,
|
|
1209
|
+
ClassMetadata,
|
|
1210
|
+
DepositBalance,
|
|
1211
|
+
DepositBalanceOf,
|
|
1212
|
+
DestroyWitness,
|
|
1213
|
+
InstanceDetails,
|
|
1214
|
+
InstanceId,
|
|
1215
|
+
InstanceMetadata
|
|
1216
|
+
} from "@polkadot/types/interfaces/uniques";
|
|
1217
|
+
import type { Multisig, Timepoint } from "@polkadot/types/interfaces/utility";
|
|
1218
|
+
import type { VestingInfo } from "@polkadot/types/interfaces/vesting";
|
|
1219
|
+
import type {
|
|
1220
|
+
AssetIdV2,
|
|
1221
|
+
AssetIdV3,
|
|
1222
|
+
AssetIdV4,
|
|
1223
|
+
AssetIdV5,
|
|
1224
|
+
AssetInstance,
|
|
1225
|
+
AssetInstanceV0,
|
|
1226
|
+
AssetInstanceV1,
|
|
1227
|
+
AssetInstanceV2,
|
|
1228
|
+
AssetInstanceV3,
|
|
1229
|
+
AssetInstanceV4,
|
|
1230
|
+
AssetInstanceV5,
|
|
1231
|
+
BodyId,
|
|
1232
|
+
BodyIdV2,
|
|
1233
|
+
BodyIdV3,
|
|
1234
|
+
BodyPart,
|
|
1235
|
+
BodyPartV2,
|
|
1236
|
+
BodyPartV3,
|
|
1237
|
+
DoubleEncodedCall,
|
|
1238
|
+
Fungibility,
|
|
1239
|
+
FungibilityV0,
|
|
1240
|
+
FungibilityV1,
|
|
1241
|
+
FungibilityV2,
|
|
1242
|
+
FungibilityV3,
|
|
1243
|
+
FungibilityV4,
|
|
1244
|
+
FungibilityV5,
|
|
1245
|
+
HintV5,
|
|
1246
|
+
InboundStatus,
|
|
1247
|
+
InstructionV2,
|
|
1248
|
+
InstructionV3,
|
|
1249
|
+
InstructionV4,
|
|
1250
|
+
InstructionV5,
|
|
1251
|
+
InteriorMultiLocation,
|
|
1252
|
+
InteriorMultiLocationV2,
|
|
1253
|
+
InteriorMultiLocationV3,
|
|
1254
|
+
InteriorMultiLocationV5,
|
|
1255
|
+
Junction,
|
|
1256
|
+
JunctionV0,
|
|
1257
|
+
JunctionV1,
|
|
1258
|
+
JunctionV2,
|
|
1259
|
+
JunctionV3,
|
|
1260
|
+
JunctionV4,
|
|
1261
|
+
JunctionV5,
|
|
1262
|
+
Junctions,
|
|
1263
|
+
JunctionsV1,
|
|
1264
|
+
JunctionsV2,
|
|
1265
|
+
JunctionsV3,
|
|
1266
|
+
JunctionsV4,
|
|
1267
|
+
JunctionsV5,
|
|
1268
|
+
MaxPalletNameLen,
|
|
1269
|
+
MaxPalletsInfo,
|
|
1270
|
+
MaybeErrorCodeV3,
|
|
1271
|
+
MultiAsset,
|
|
1272
|
+
MultiAssetFilter,
|
|
1273
|
+
MultiAssetFilterV1,
|
|
1274
|
+
MultiAssetFilterV2,
|
|
1275
|
+
MultiAssetFilterV3,
|
|
1276
|
+
MultiAssetFilterV4,
|
|
1277
|
+
MultiAssetFilterV5,
|
|
1278
|
+
MultiAssetTransferFilterV5,
|
|
1279
|
+
MultiAssetV0,
|
|
1280
|
+
MultiAssetV1,
|
|
1281
|
+
MultiAssetV2,
|
|
1282
|
+
MultiAssetV3,
|
|
1283
|
+
MultiAssetV4,
|
|
1284
|
+
MultiAssetV5,
|
|
1285
|
+
MultiAssets,
|
|
1286
|
+
MultiAssetsV1,
|
|
1287
|
+
MultiAssetsV2,
|
|
1288
|
+
MultiAssetsV3,
|
|
1289
|
+
MultiAssetsV4,
|
|
1290
|
+
MultiAssetsV5,
|
|
1291
|
+
MultiLocation,
|
|
1292
|
+
MultiLocationV0,
|
|
1293
|
+
MultiLocationV1,
|
|
1294
|
+
MultiLocationV2,
|
|
1295
|
+
MultiLocationV3,
|
|
1296
|
+
MultiLocationV4,
|
|
1297
|
+
MultiLocationV5,
|
|
1298
|
+
NetworkId,
|
|
1299
|
+
NetworkIdV2,
|
|
1300
|
+
NetworkIdV3,
|
|
1301
|
+
NetworkIdV4,
|
|
1302
|
+
NetworkIdV5,
|
|
1303
|
+
OriginKindV0,
|
|
1304
|
+
OriginKindV1,
|
|
1305
|
+
OriginKindV2,
|
|
1306
|
+
OriginKindV3,
|
|
1307
|
+
OriginKindV4,
|
|
1308
|
+
OutboundStatus,
|
|
1309
|
+
Outcome,
|
|
1310
|
+
OutcomeV4,
|
|
1311
|
+
PalletInfoV3,
|
|
1312
|
+
PalletInfoV4,
|
|
1313
|
+
PalletInfoV5,
|
|
1314
|
+
QueryId,
|
|
1315
|
+
QueryResponseInfoV3,
|
|
1316
|
+
QueryResponseInfoV4,
|
|
1317
|
+
QueryResponseInfoV5,
|
|
1318
|
+
QueryStatus,
|
|
1319
|
+
QueueConfigData,
|
|
1320
|
+
Response,
|
|
1321
|
+
ResponseV0,
|
|
1322
|
+
ResponseV1,
|
|
1323
|
+
ResponseV2,
|
|
1324
|
+
ResponseV2Error,
|
|
1325
|
+
ResponseV3,
|
|
1326
|
+
ResponseV3Error,
|
|
1327
|
+
ResponseV3Result,
|
|
1328
|
+
ResponseV4,
|
|
1329
|
+
ResponseV5,
|
|
1330
|
+
UncheckedFungibilityV4,
|
|
1331
|
+
UncheckedFungibilityV5,
|
|
1332
|
+
VersionMigrationStage,
|
|
1333
|
+
VersionV3,
|
|
1334
|
+
VersionV4,
|
|
1335
|
+
VersionedMultiAsset,
|
|
1336
|
+
VersionedMultiAssets,
|
|
1337
|
+
VersionedMultiLocation,
|
|
1338
|
+
VersionedResponse,
|
|
1339
|
+
VersionedXcm,
|
|
1340
|
+
WeightLimitV2,
|
|
1341
|
+
WeightLimitV3,
|
|
1342
|
+
WildFungibility,
|
|
1343
|
+
WildFungibilityV0,
|
|
1344
|
+
WildFungibilityV1,
|
|
1345
|
+
WildFungibilityV2,
|
|
1346
|
+
WildFungibilityV3,
|
|
1347
|
+
WildFungibilityV4,
|
|
1348
|
+
WildFungibilityV5,
|
|
1349
|
+
WildMultiAsset,
|
|
1350
|
+
WildMultiAssetV1,
|
|
1351
|
+
WildMultiAssetV2,
|
|
1352
|
+
WildMultiAssetV3,
|
|
1353
|
+
WildMultiAssetV4,
|
|
1354
|
+
WildMultiAssetV5,
|
|
1355
|
+
Xcm,
|
|
1356
|
+
XcmAssetId,
|
|
1357
|
+
XcmError,
|
|
1358
|
+
XcmErrorV0,
|
|
1359
|
+
XcmErrorV1,
|
|
1360
|
+
XcmErrorV2,
|
|
1361
|
+
XcmErrorV3,
|
|
1362
|
+
XcmErrorV4,
|
|
1363
|
+
XcmErrorV5,
|
|
1364
|
+
XcmOrderV0,
|
|
1365
|
+
XcmOrderV1,
|
|
1366
|
+
XcmOrigin,
|
|
1367
|
+
XcmOriginKind,
|
|
1368
|
+
XcmV0,
|
|
1369
|
+
XcmV1,
|
|
1370
|
+
XcmV2,
|
|
1371
|
+
XcmV3,
|
|
1372
|
+
XcmV4,
|
|
1373
|
+
XcmV5,
|
|
1374
|
+
XcmVersion,
|
|
1375
|
+
XcmpMessageFormat
|
|
1376
|
+
} from "@polkadot/types/interfaces/xcm";
|
|
1377
|
+
import type { XcmPaymentApiError } from "@polkadot/types/interfaces/xcmPaymentApi";
|
|
1378
|
+
import type { Error } from "@polkadot/types/interfaces/xcmRuntimeApi";
|
|
1379
|
+
import type {
|
|
1380
|
+
AddFilesToForestStorageResult,
|
|
1381
|
+
BackupStorageProvider,
|
|
1382
|
+
BackupStorageProviderId,
|
|
1383
|
+
BucketId,
|
|
1384
|
+
CheckpointChallenge,
|
|
1385
|
+
ChunkId,
|
|
1386
|
+
FileMetadata,
|
|
1387
|
+
GenericApplyDeltaEventInfoError,
|
|
1388
|
+
GetBspInfoError,
|
|
1389
|
+
GetChallengePeriodError,
|
|
1390
|
+
GetChallengeSeedError,
|
|
1391
|
+
GetCheckpointChallengesError,
|
|
1392
|
+
GetFileFromFileStorageResult,
|
|
1393
|
+
GetNextDeadlineTickError,
|
|
1394
|
+
GetProofSubmissionRecordError,
|
|
1395
|
+
GetStakeError,
|
|
1396
|
+
GetUsersWithDebtOverThresholdError,
|
|
1397
|
+
IncompleteFileStatus,
|
|
1398
|
+
IncompleteStorageRequestMetadataResponse,
|
|
1399
|
+
IsStorageRequestOpenToVolunteersError,
|
|
1400
|
+
LoadFileInStorageResult,
|
|
1401
|
+
MainStorageProviderId,
|
|
1402
|
+
MerklePatriciaRoot,
|
|
1403
|
+
Multiaddresses,
|
|
1404
|
+
ProviderId,
|
|
1405
|
+
QueryAvailableStorageCapacityError,
|
|
1406
|
+
QueryBspConfirmChunksToProveForFileError,
|
|
1407
|
+
QueryBucketsForMspError,
|
|
1408
|
+
QueryBucketsOfUserStoredByMspError,
|
|
1409
|
+
QueryConfirmChunksToProveForFileError,
|
|
1410
|
+
QueryEarliestChangeCapacityBlockError,
|
|
1411
|
+
QueryFileEarliestVolunteerBlockError,
|
|
1412
|
+
QueryIncompleteStorageRequestMetadataError,
|
|
1413
|
+
QueryMspConfirmChunksToProveForFileError,
|
|
1414
|
+
QueryMspIdOfBucketIdError,
|
|
1415
|
+
QueryProviderMultiaddressesError,
|
|
1416
|
+
QueryStorageProviderCapacityError,
|
|
1417
|
+
RandomnessOutput,
|
|
1418
|
+
RemoveFilesFromForestStorageResult,
|
|
1419
|
+
ReputationWeightType,
|
|
1420
|
+
SaveFileToDisk,
|
|
1421
|
+
ShouldRemoveFile,
|
|
1422
|
+
StorageDataUnit,
|
|
1423
|
+
StorageProviderId,
|
|
1424
|
+
StorageRequestMetadata,
|
|
1425
|
+
TrieRemoveMutation,
|
|
1426
|
+
ValuePropId,
|
|
1427
|
+
ValueProposition,
|
|
1428
|
+
ValuePropositionWithId
|
|
1429
|
+
} from "@storagehub/api-augment/solochain-evm/interfaces/storagehubclient";
|
|
1430
|
+
|
|
1431
|
+
declare module "@polkadot/types/types/registry" {
|
|
1432
|
+
interface InterfaceTypes {
|
|
1433
|
+
AbridgedCandidateReceipt: AbridgedCandidateReceipt;
|
|
1434
|
+
AbridgedHostConfiguration: AbridgedHostConfiguration;
|
|
1435
|
+
AbridgedHrmpChannel: AbridgedHrmpChannel;
|
|
1436
|
+
AccountData: AccountData;
|
|
1437
|
+
AccountId: AccountId;
|
|
1438
|
+
AccountId20: AccountId20;
|
|
1439
|
+
AccountId32: AccountId32;
|
|
1440
|
+
AccountId33: AccountId33;
|
|
1441
|
+
AccountIdOf: AccountIdOf;
|
|
1442
|
+
AccountIndex: AccountIndex;
|
|
1443
|
+
AccountInfo: AccountInfo;
|
|
1444
|
+
AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;
|
|
1445
|
+
AccountInfoWithProviders: AccountInfoWithProviders;
|
|
1446
|
+
AccountInfoWithRefCount: AccountInfoWithRefCount;
|
|
1447
|
+
AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;
|
|
1448
|
+
AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;
|
|
1449
|
+
AccountStatus: AccountStatus;
|
|
1450
|
+
AccountValidity: AccountValidity;
|
|
1451
|
+
AccountVote: AccountVote;
|
|
1452
|
+
AccountVoteSplit: AccountVoteSplit;
|
|
1453
|
+
AccountVoteStandard: AccountVoteStandard;
|
|
1454
|
+
ActiveEraInfo: ActiveEraInfo;
|
|
1455
|
+
ActiveGilt: ActiveGilt;
|
|
1456
|
+
ActiveGiltsTotal: ActiveGiltsTotal;
|
|
1457
|
+
ActiveIndex: ActiveIndex;
|
|
1458
|
+
ActiveRecovery: ActiveRecovery;
|
|
1459
|
+
AddFilesToForestStorageResult: AddFilesToForestStorageResult;
|
|
1460
|
+
Address: Address;
|
|
1461
|
+
AliveContractInfo: AliveContractInfo;
|
|
1462
|
+
AllowedSlots: AllowedSlots;
|
|
1463
|
+
AnySignature: AnySignature;
|
|
1464
|
+
ApiId: ApiId;
|
|
1465
|
+
ApplyExtrinsicResult: ApplyExtrinsicResult;
|
|
1466
|
+
ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;
|
|
1467
|
+
ApprovalFlag: ApprovalFlag;
|
|
1468
|
+
Approvals: Approvals;
|
|
1469
|
+
ApprovalVotingParams: ApprovalVotingParams;
|
|
1470
|
+
ArithmeticError: ArithmeticError;
|
|
1471
|
+
AssetApproval: AssetApproval;
|
|
1472
|
+
AssetApprovalKey: AssetApprovalKey;
|
|
1473
|
+
AssetBalance: AssetBalance;
|
|
1474
|
+
AssetDestroyWitness: AssetDestroyWitness;
|
|
1475
|
+
AssetDetails: AssetDetails;
|
|
1476
|
+
AssetId: AssetId;
|
|
1477
|
+
AssetIdV2: AssetIdV2;
|
|
1478
|
+
AssetIdV3: AssetIdV3;
|
|
1479
|
+
AssetIdV4: AssetIdV4;
|
|
1480
|
+
AssetIdV5: AssetIdV5;
|
|
1481
|
+
AssetInstance: AssetInstance;
|
|
1482
|
+
AssetInstanceV0: AssetInstanceV0;
|
|
1483
|
+
AssetInstanceV1: AssetInstanceV1;
|
|
1484
|
+
AssetInstanceV2: AssetInstanceV2;
|
|
1485
|
+
AssetInstanceV3: AssetInstanceV3;
|
|
1486
|
+
AssetInstanceV4: AssetInstanceV4;
|
|
1487
|
+
AssetInstanceV5: AssetInstanceV5;
|
|
1488
|
+
AssetMetadata: AssetMetadata;
|
|
1489
|
+
AssetOptions: AssetOptions;
|
|
1490
|
+
AssignmentId: AssignmentId;
|
|
1491
|
+
AssignmentKind: AssignmentKind;
|
|
1492
|
+
AsyncBackingParams: AsyncBackingParams;
|
|
1493
|
+
AttestedCandidate: AttestedCandidate;
|
|
1494
|
+
AuctionIndex: AuctionIndex;
|
|
1495
|
+
AuthIndex: AuthIndex;
|
|
1496
|
+
AuthorityDiscoveryId: AuthorityDiscoveryId;
|
|
1497
|
+
AuthorityId: AuthorityId;
|
|
1498
|
+
AuthorityIndex: AuthorityIndex;
|
|
1499
|
+
AuthorityList: AuthorityList;
|
|
1500
|
+
AuthoritySet: AuthoritySet;
|
|
1501
|
+
AuthoritySetChange: AuthoritySetChange;
|
|
1502
|
+
AuthoritySetChanges: AuthoritySetChanges;
|
|
1503
|
+
AuthoritySignature: AuthoritySignature;
|
|
1504
|
+
AuthorityWeight: AuthorityWeight;
|
|
1505
|
+
AvailabilityBitfield: AvailabilityBitfield;
|
|
1506
|
+
AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;
|
|
1507
|
+
BabeAuthorityWeight: BabeAuthorityWeight;
|
|
1508
|
+
BabeBlockWeight: BabeBlockWeight;
|
|
1509
|
+
BabeEpochConfiguration: BabeEpochConfiguration;
|
|
1510
|
+
BabeEquivocationProof: BabeEquivocationProof;
|
|
1511
|
+
BabeGenesisConfiguration: BabeGenesisConfiguration;
|
|
1512
|
+
BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;
|
|
1513
|
+
BabeWeight: BabeWeight;
|
|
1514
|
+
BackedCandidate: BackedCandidate;
|
|
1515
|
+
BackingState: BackingState;
|
|
1516
|
+
BackupStorageProvider: BackupStorageProvider;
|
|
1517
|
+
BackupStorageProviderId: BackupStorageProviderId;
|
|
1518
|
+
Balance: Balance;
|
|
1519
|
+
BalanceLock: BalanceLock;
|
|
1520
|
+
BalanceLockTo212: BalanceLockTo212;
|
|
1521
|
+
BalanceOf: BalanceOf;
|
|
1522
|
+
BalanceStatus: BalanceStatus;
|
|
1523
|
+
BeefyAuthoritySet: BeefyAuthoritySet;
|
|
1524
|
+
BeefyCommitment: BeefyCommitment;
|
|
1525
|
+
BeefyCompactSignedCommitment: BeefyCompactSignedCommitment;
|
|
1526
|
+
BeefyEquivocationProof: BeefyEquivocationProof;
|
|
1527
|
+
BeefyId: BeefyId;
|
|
1528
|
+
BeefyKey: BeefyKey;
|
|
1529
|
+
BeefyNextAuthoritySet: BeefyNextAuthoritySet;
|
|
1530
|
+
BeefyPayload: BeefyPayload;
|
|
1531
|
+
BeefyPayloadId: BeefyPayloadId;
|
|
1532
|
+
BeefySignedCommitment: BeefySignedCommitment;
|
|
1533
|
+
BeefyVersionedFinalityProof: BeefyVersionedFinalityProof;
|
|
1534
|
+
BeefyVoteMessage: BeefyVoteMessage;
|
|
1535
|
+
BenchmarkBatch: BenchmarkBatch;
|
|
1536
|
+
BenchmarkConfig: BenchmarkConfig;
|
|
1537
|
+
BenchmarkList: BenchmarkList;
|
|
1538
|
+
BenchmarkMetadata: BenchmarkMetadata;
|
|
1539
|
+
BenchmarkParameter: BenchmarkParameter;
|
|
1540
|
+
BenchmarkResult: BenchmarkResult;
|
|
1541
|
+
Bid: Bid;
|
|
1542
|
+
Bidder: Bidder;
|
|
1543
|
+
BidKind: BidKind;
|
|
1544
|
+
BitVec: BitVec;
|
|
1545
|
+
Block: Block;
|
|
1546
|
+
BlockAttestations: BlockAttestations;
|
|
1547
|
+
BlockHash: BlockHash;
|
|
1548
|
+
BlockLength: BlockLength;
|
|
1549
|
+
BlockNumber: BlockNumber;
|
|
1550
|
+
BlockNumberFor: BlockNumberFor;
|
|
1551
|
+
BlockNumberOf: BlockNumberOf;
|
|
1552
|
+
BlockStats: BlockStats;
|
|
1553
|
+
BlockTrace: BlockTrace;
|
|
1554
|
+
BlockTraceEvent: BlockTraceEvent;
|
|
1555
|
+
BlockTraceEventData: BlockTraceEventData;
|
|
1556
|
+
BlockTraceSpan: BlockTraceSpan;
|
|
1557
|
+
BlockV0: BlockV0;
|
|
1558
|
+
BlockV1: BlockV1;
|
|
1559
|
+
BlockV2: BlockV2;
|
|
1560
|
+
BlockV3: BlockV3;
|
|
1561
|
+
BlockWeights: BlockWeights;
|
|
1562
|
+
BodyId: BodyId;
|
|
1563
|
+
BodyIdV2: BodyIdV2;
|
|
1564
|
+
BodyIdV3: BodyIdV3;
|
|
1565
|
+
BodyPart: BodyPart;
|
|
1566
|
+
BodyPartV2: BodyPartV2;
|
|
1567
|
+
BodyPartV3: BodyPartV3;
|
|
1568
|
+
bool: bool;
|
|
1569
|
+
Bool: Bool;
|
|
1570
|
+
Bounty: Bounty;
|
|
1571
|
+
BountyIndex: BountyIndex;
|
|
1572
|
+
BountyStatus: BountyStatus;
|
|
1573
|
+
BountyStatusActive: BountyStatusActive;
|
|
1574
|
+
BountyStatusCuratorProposed: BountyStatusCuratorProposed;
|
|
1575
|
+
BountyStatusPendingPayout: BountyStatusPendingPayout;
|
|
1576
|
+
BridgedBlockHash: BridgedBlockHash;
|
|
1577
|
+
BridgedBlockNumber: BridgedBlockNumber;
|
|
1578
|
+
BridgedHeader: BridgedHeader;
|
|
1579
|
+
BridgeMessageId: BridgeMessageId;
|
|
1580
|
+
BucketId: BucketId;
|
|
1581
|
+
BufferedSessionChange: BufferedSessionChange;
|
|
1582
|
+
Bytes: Bytes;
|
|
1583
|
+
Call: Call;
|
|
1584
|
+
CallDryRunEffects: CallDryRunEffects;
|
|
1585
|
+
CallHash: CallHash;
|
|
1586
|
+
CallHashOf: CallHashOf;
|
|
1587
|
+
CallIndex: CallIndex;
|
|
1588
|
+
CallOrigin: CallOrigin;
|
|
1589
|
+
CandidateCommitments: CandidateCommitments;
|
|
1590
|
+
CandidateDescriptor: CandidateDescriptor;
|
|
1591
|
+
CandidateEvent: CandidateEvent;
|
|
1592
|
+
CandidateHash: CandidateHash;
|
|
1593
|
+
CandidateInfo: CandidateInfo;
|
|
1594
|
+
CandidatePendingAvailability: CandidatePendingAvailability;
|
|
1595
|
+
CandidateReceipt: CandidateReceipt;
|
|
1596
|
+
ChainId: ChainId;
|
|
1597
|
+
ChainProperties: ChainProperties;
|
|
1598
|
+
ChainType: ChainType;
|
|
1599
|
+
ChangesTrieConfiguration: ChangesTrieConfiguration;
|
|
1600
|
+
ChangesTrieSignal: ChangesTrieSignal;
|
|
1601
|
+
CheckInherentsResult: CheckInherentsResult;
|
|
1602
|
+
CheckpointChallenge: CheckpointChallenge;
|
|
1603
|
+
ChunkId: ChunkId;
|
|
1604
|
+
ClassDetails: ClassDetails;
|
|
1605
|
+
ClassId: ClassId;
|
|
1606
|
+
ClassMetadata: ClassMetadata;
|
|
1607
|
+
CodecHash: CodecHash;
|
|
1608
|
+
CodeHash: CodeHash;
|
|
1609
|
+
CodeSource: CodeSource;
|
|
1610
|
+
CodeUploadRequest: CodeUploadRequest;
|
|
1611
|
+
CodeUploadResult: CodeUploadResult;
|
|
1612
|
+
CodeUploadResultValue: CodeUploadResultValue;
|
|
1613
|
+
CollationInfo: CollationInfo;
|
|
1614
|
+
CollationInfoV1: CollationInfoV1;
|
|
1615
|
+
CollatorId: CollatorId;
|
|
1616
|
+
CollatorSignature: CollatorSignature;
|
|
1617
|
+
CollectiveOrigin: CollectiveOrigin;
|
|
1618
|
+
CommittedCandidateReceipt: CommittedCandidateReceipt;
|
|
1619
|
+
CompactAssignments: CompactAssignments;
|
|
1620
|
+
CompactAssignmentsTo257: CompactAssignmentsTo257;
|
|
1621
|
+
CompactAssignmentsTo265: CompactAssignmentsTo265;
|
|
1622
|
+
CompactAssignmentsWith16: CompactAssignmentsWith16;
|
|
1623
|
+
CompactAssignmentsWith24: CompactAssignmentsWith24;
|
|
1624
|
+
CompactScore: CompactScore;
|
|
1625
|
+
CompactScoreCompact: CompactScoreCompact;
|
|
1626
|
+
ConfigData: ConfigData;
|
|
1627
|
+
Consensus: Consensus;
|
|
1628
|
+
ConsensusEngineId: ConsensusEngineId;
|
|
1629
|
+
Constraints: Constraints;
|
|
1630
|
+
ConsumedWeight: ConsumedWeight;
|
|
1631
|
+
ContractCallFlags: ContractCallFlags;
|
|
1632
|
+
ContractCallRequest: ContractCallRequest;
|
|
1633
|
+
ContractConstructorSpecLatest: ContractConstructorSpecLatest;
|
|
1634
|
+
ContractConstructorSpecV0: ContractConstructorSpecV0;
|
|
1635
|
+
ContractConstructorSpecV1: ContractConstructorSpecV1;
|
|
1636
|
+
ContractConstructorSpecV2: ContractConstructorSpecV2;
|
|
1637
|
+
ContractConstructorSpecV3: ContractConstructorSpecV3;
|
|
1638
|
+
ContractConstructorSpecV4: ContractConstructorSpecV4;
|
|
1639
|
+
ContractContractSpecV0: ContractContractSpecV0;
|
|
1640
|
+
ContractContractSpecV1: ContractContractSpecV1;
|
|
1641
|
+
ContractContractSpecV2: ContractContractSpecV2;
|
|
1642
|
+
ContractContractSpecV3: ContractContractSpecV3;
|
|
1643
|
+
ContractContractSpecV4: ContractContractSpecV4;
|
|
1644
|
+
ContractContractSpecV5: ContractContractSpecV5;
|
|
1645
|
+
ContractContractSpecV6: ContractContractSpecV6;
|
|
1646
|
+
ContractCryptoHasher: ContractCryptoHasher;
|
|
1647
|
+
ContractDiscriminant: ContractDiscriminant;
|
|
1648
|
+
ContractDisplayName: ContractDisplayName;
|
|
1649
|
+
ContractEnvironmentV4: ContractEnvironmentV4;
|
|
1650
|
+
ContractEventParamSpecLatest: ContractEventParamSpecLatest;
|
|
1651
|
+
ContractEventParamSpecV0: ContractEventParamSpecV0;
|
|
1652
|
+
ContractEventParamSpecV2: ContractEventParamSpecV2;
|
|
1653
|
+
ContractEventSpecLatest: ContractEventSpecLatest;
|
|
1654
|
+
ContractEventSpecV0: ContractEventSpecV0;
|
|
1655
|
+
ContractEventSpecV1: ContractEventSpecV1;
|
|
1656
|
+
ContractEventSpecV2: ContractEventSpecV2;
|
|
1657
|
+
ContractEventSpecV3: ContractEventSpecV3;
|
|
1658
|
+
ContractExecResult: ContractExecResult;
|
|
1659
|
+
ContractExecResultOk: ContractExecResultOk;
|
|
1660
|
+
ContractExecResultResult: ContractExecResultResult;
|
|
1661
|
+
ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
|
|
1662
|
+
ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;
|
|
1663
|
+
ContractExecResultTo255: ContractExecResultTo255;
|
|
1664
|
+
ContractExecResultTo260: ContractExecResultTo260;
|
|
1665
|
+
ContractExecResultTo267: ContractExecResultTo267;
|
|
1666
|
+
ContractExecResultU64: ContractExecResultU64;
|
|
1667
|
+
ContractInfo: ContractInfo;
|
|
1668
|
+
ContractInstantiateResult: ContractInstantiateResult;
|
|
1669
|
+
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
|
|
1670
|
+
ContractInstantiateResultTo299: ContractInstantiateResultTo299;
|
|
1671
|
+
ContractInstantiateResultU64: ContractInstantiateResultU64;
|
|
1672
|
+
ContractLayoutArray: ContractLayoutArray;
|
|
1673
|
+
ContractLayoutCell: ContractLayoutCell;
|
|
1674
|
+
ContractLayoutEnum: ContractLayoutEnum;
|
|
1675
|
+
ContractLayoutHash: ContractLayoutHash;
|
|
1676
|
+
ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;
|
|
1677
|
+
ContractLayoutKey: ContractLayoutKey;
|
|
1678
|
+
ContractLayoutStruct: ContractLayoutStruct;
|
|
1679
|
+
ContractLayoutStructField: ContractLayoutStructField;
|
|
1680
|
+
ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;
|
|
1681
|
+
ContractMessageParamSpecV0: ContractMessageParamSpecV0;
|
|
1682
|
+
ContractMessageParamSpecV2: ContractMessageParamSpecV2;
|
|
1683
|
+
ContractMessageSpecLatest: ContractMessageSpecLatest;
|
|
1684
|
+
ContractMessageSpecV0: ContractMessageSpecV0;
|
|
1685
|
+
ContractMessageSpecV1: ContractMessageSpecV1;
|
|
1686
|
+
ContractMessageSpecV2: ContractMessageSpecV2;
|
|
1687
|
+
ContractMessageSpecV3: ContractMessageSpecV3;
|
|
1688
|
+
ContractMetadata: ContractMetadata;
|
|
1689
|
+
ContractMetadataLatest: ContractMetadataLatest;
|
|
1690
|
+
ContractMetadataV0: ContractMetadataV0;
|
|
1691
|
+
ContractMetadataV1: ContractMetadataV1;
|
|
1692
|
+
ContractMetadataV2: ContractMetadataV2;
|
|
1693
|
+
ContractMetadataV3: ContractMetadataV3;
|
|
1694
|
+
ContractMetadataV4: ContractMetadataV4;
|
|
1695
|
+
ContractMetadataV5: ContractMetadataV5;
|
|
1696
|
+
ContractMetadataV6: ContractMetadataV6;
|
|
1697
|
+
ContractProject: ContractProject;
|
|
1698
|
+
ContractProjectContract: ContractProjectContract;
|
|
1699
|
+
ContractProjectInfo: ContractProjectInfo;
|
|
1700
|
+
ContractProjectSource: ContractProjectSource;
|
|
1701
|
+
ContractProjectV0: ContractProjectV0;
|
|
1702
|
+
ContractReturnFlags: ContractReturnFlags;
|
|
1703
|
+
ContractReviveProjectInfo: ContractReviveProjectInfo;
|
|
1704
|
+
ContractReviveProjectSource: ContractReviveProjectSource;
|
|
1705
|
+
ContractSelector: ContractSelector;
|
|
1706
|
+
ContractStorageKey: ContractStorageKey;
|
|
1707
|
+
ContractStorageLayout: ContractStorageLayout;
|
|
1708
|
+
ContractTypeSpec: ContractTypeSpec;
|
|
1709
|
+
Conviction: Conviction;
|
|
1710
|
+
CoreAssignment: CoreAssignment;
|
|
1711
|
+
CoreIndex: CoreIndex;
|
|
1712
|
+
CoreOccupied: CoreOccupied;
|
|
1713
|
+
CoreState: CoreState;
|
|
1714
|
+
CrateVersion: CrateVersion;
|
|
1715
|
+
CreatedBlock: CreatedBlock;
|
|
1716
|
+
CustomMetadata15: CustomMetadata15;
|
|
1717
|
+
CustomValueMetadata15: CustomValueMetadata15;
|
|
1718
|
+
Data: Data;
|
|
1719
|
+
DeferredOffenceOf: DeferredOffenceOf;
|
|
1720
|
+
DefunctVoter: DefunctVoter;
|
|
1721
|
+
DelayKind: DelayKind;
|
|
1722
|
+
DelayKindBest: DelayKindBest;
|
|
1723
|
+
Delegations: Delegations;
|
|
1724
|
+
DeletedContract: DeletedContract;
|
|
1725
|
+
DeliveredMessages: DeliveredMessages;
|
|
1726
|
+
DepositBalance: DepositBalance;
|
|
1727
|
+
DepositBalanceOf: DepositBalanceOf;
|
|
1728
|
+
DestroyWitness: DestroyWitness;
|
|
1729
|
+
Digest: Digest;
|
|
1730
|
+
DigestItem: DigestItem;
|
|
1731
|
+
DigestOf: DigestOf;
|
|
1732
|
+
DispatchClass: DispatchClass;
|
|
1733
|
+
DispatchError: DispatchError;
|
|
1734
|
+
DispatchErrorModule: DispatchErrorModule;
|
|
1735
|
+
DispatchErrorModulePre6: DispatchErrorModulePre6;
|
|
1736
|
+
DispatchErrorModuleU8: DispatchErrorModuleU8;
|
|
1737
|
+
DispatchErrorModuleU8a: DispatchErrorModuleU8a;
|
|
1738
|
+
DispatchErrorPre6: DispatchErrorPre6;
|
|
1739
|
+
DispatchErrorPre6First: DispatchErrorPre6First;
|
|
1740
|
+
DispatchErrorTo198: DispatchErrorTo198;
|
|
1741
|
+
DispatchFeePayment: DispatchFeePayment;
|
|
1742
|
+
DispatchInfo: DispatchInfo;
|
|
1743
|
+
DispatchInfoTo190: DispatchInfoTo190;
|
|
1744
|
+
DispatchInfoTo244: DispatchInfoTo244;
|
|
1745
|
+
DispatchOutcome: DispatchOutcome;
|
|
1746
|
+
DispatchOutcomePre6: DispatchOutcomePre6;
|
|
1747
|
+
DispatchResult: DispatchResult;
|
|
1748
|
+
DispatchResultOf: DispatchResultOf;
|
|
1749
|
+
DispatchResultTo198: DispatchResultTo198;
|
|
1750
|
+
DispatchResultWithPostInfo: DispatchResultWithPostInfo;
|
|
1751
|
+
DisputeLocation: DisputeLocation;
|
|
1752
|
+
DisputeProof: DisputeProof;
|
|
1753
|
+
DisputeResult: DisputeResult;
|
|
1754
|
+
DisputeState: DisputeState;
|
|
1755
|
+
DisputeStatement: DisputeStatement;
|
|
1756
|
+
DisputeStatementSet: DisputeStatementSet;
|
|
1757
|
+
DisputesTimeSlot: DisputesTimeSlot;
|
|
1758
|
+
DoubleEncodedCall: DoubleEncodedCall;
|
|
1759
|
+
DoubleVoteReport: DoubleVoteReport;
|
|
1760
|
+
DownwardMessage: DownwardMessage;
|
|
1761
|
+
EcdsaSignature: EcdsaSignature;
|
|
1762
|
+
Ed25519Signature: Ed25519Signature;
|
|
1763
|
+
EIP1559Transaction: EIP1559Transaction;
|
|
1764
|
+
EIP2930Transaction: EIP2930Transaction;
|
|
1765
|
+
EIP7702Transaction: EIP7702Transaction;
|
|
1766
|
+
ElectionCompute: ElectionCompute;
|
|
1767
|
+
ElectionPhase: ElectionPhase;
|
|
1768
|
+
ElectionResult: ElectionResult;
|
|
1769
|
+
ElectionResultToSpec10: ElectionResultToSpec10;
|
|
1770
|
+
ElectionScore: ElectionScore;
|
|
1771
|
+
ElectionSize: ElectionSize;
|
|
1772
|
+
ElectionStatus: ElectionStatus;
|
|
1773
|
+
EncodedFinalityProofs: EncodedFinalityProofs;
|
|
1774
|
+
EncodedJustification: EncodedJustification;
|
|
1775
|
+
EnumDeprecationInfoV16: EnumDeprecationInfoV16;
|
|
1776
|
+
Epoch: Epoch;
|
|
1777
|
+
EpochAuthorship: EpochAuthorship;
|
|
1778
|
+
Era: Era;
|
|
1779
|
+
EraIndex: EraIndex;
|
|
1780
|
+
EraPoints: EraPoints;
|
|
1781
|
+
EraRewardPoints: EraRewardPoints;
|
|
1782
|
+
EraRewards: EraRewards;
|
|
1783
|
+
Error: Error;
|
|
1784
|
+
ErrorMetadataLatest: ErrorMetadataLatest;
|
|
1785
|
+
ErrorMetadataV10: ErrorMetadataV10;
|
|
1786
|
+
ErrorMetadataV11: ErrorMetadataV11;
|
|
1787
|
+
ErrorMetadataV12: ErrorMetadataV12;
|
|
1788
|
+
ErrorMetadataV13: ErrorMetadataV13;
|
|
1789
|
+
ErrorMetadataV14: ErrorMetadataV14;
|
|
1790
|
+
ErrorMetadataV9: ErrorMetadataV9;
|
|
1791
|
+
EthAccessList: EthAccessList;
|
|
1792
|
+
EthAccessListItem: EthAccessListItem;
|
|
1793
|
+
EthAccount: EthAccount;
|
|
1794
|
+
EthAddress: EthAddress;
|
|
1795
|
+
EthAuthorizationList: EthAuthorizationList;
|
|
1796
|
+
EthAuthorizationListItem: EthAuthorizationListItem;
|
|
1797
|
+
EthAuthorizationSignature: EthAuthorizationSignature;
|
|
1798
|
+
EthBlock: EthBlock;
|
|
1799
|
+
EthBloom: EthBloom;
|
|
1800
|
+
EthCallRequest: EthCallRequest;
|
|
1801
|
+
EthereumAccountId: EthereumAccountId;
|
|
1802
|
+
EthereumAddress: EthereumAddress;
|
|
1803
|
+
EthereumLookupSource: EthereumLookupSource;
|
|
1804
|
+
EthereumSignature: EthereumSignature;
|
|
1805
|
+
EthFeeHistory: EthFeeHistory;
|
|
1806
|
+
EthFilter: EthFilter;
|
|
1807
|
+
EthFilterAddress: EthFilterAddress;
|
|
1808
|
+
EthFilterChanges: EthFilterChanges;
|
|
1809
|
+
EthFilterTopic: EthFilterTopic;
|
|
1810
|
+
EthFilterTopicEntry: EthFilterTopicEntry;
|
|
1811
|
+
EthFilterTopicInner: EthFilterTopicInner;
|
|
1812
|
+
EthHeader: EthHeader;
|
|
1813
|
+
EthLegacyTransactionSignature: EthLegacyTransactionSignature;
|
|
1814
|
+
EthLog: EthLog;
|
|
1815
|
+
EthReceipt: EthReceipt;
|
|
1816
|
+
EthReceiptV0: EthReceiptV0;
|
|
1817
|
+
EthReceiptV3: EthReceiptV3;
|
|
1818
|
+
EthReceiptV4: EthReceiptV4;
|
|
1819
|
+
EthRichBlock: EthRichBlock;
|
|
1820
|
+
EthRichHeader: EthRichHeader;
|
|
1821
|
+
EthStorageProof: EthStorageProof;
|
|
1822
|
+
EthSubKind: EthSubKind;
|
|
1823
|
+
EthSubParams: EthSubParams;
|
|
1824
|
+
EthSubResult: EthSubResult;
|
|
1825
|
+
EthSyncInfo: EthSyncInfo;
|
|
1826
|
+
EthSyncStatus: EthSyncStatus;
|
|
1827
|
+
EthTransaction: EthTransaction;
|
|
1828
|
+
EthTransactionAction: EthTransactionAction;
|
|
1829
|
+
EthTransactionCondition: EthTransactionCondition;
|
|
1830
|
+
EthTransactionRequest: EthTransactionRequest;
|
|
1831
|
+
EthTransactionSignature: EthTransactionSignature;
|
|
1832
|
+
EthTransactionStatus: EthTransactionStatus;
|
|
1833
|
+
EthWork: EthWork;
|
|
1834
|
+
Event: Event;
|
|
1835
|
+
EventId: EventId;
|
|
1836
|
+
EventIndex: EventIndex;
|
|
1837
|
+
EventMetadataLatest: EventMetadataLatest;
|
|
1838
|
+
EventMetadataV10: EventMetadataV10;
|
|
1839
|
+
EventMetadataV11: EventMetadataV11;
|
|
1840
|
+
EventMetadataV12: EventMetadataV12;
|
|
1841
|
+
EventMetadataV13: EventMetadataV13;
|
|
1842
|
+
EventMetadataV14: EventMetadataV14;
|
|
1843
|
+
EventMetadataV9: EventMetadataV9;
|
|
1844
|
+
EventRecord: EventRecord;
|
|
1845
|
+
EvmAccount: EvmAccount;
|
|
1846
|
+
EvmCallInfo: EvmCallInfo;
|
|
1847
|
+
EvmCallInfoV2: EvmCallInfoV2;
|
|
1848
|
+
EvmCreateInfo: EvmCreateInfo;
|
|
1849
|
+
EvmCreateInfoV2: EvmCreateInfoV2;
|
|
1850
|
+
EvmLog: EvmLog;
|
|
1851
|
+
EvmVicinity: EvmVicinity;
|
|
1852
|
+
EvmWeightInfo: EvmWeightInfo;
|
|
1853
|
+
ExecReturnValue: ExecReturnValue;
|
|
1854
|
+
ExecutorParam: ExecutorParam;
|
|
1855
|
+
ExecutorParams: ExecutorParams;
|
|
1856
|
+
ExecutorParamsHash: ExecutorParamsHash;
|
|
1857
|
+
ExitError: ExitError;
|
|
1858
|
+
ExitFatal: ExitFatal;
|
|
1859
|
+
ExitReason: ExitReason;
|
|
1860
|
+
ExitRevert: ExitRevert;
|
|
1861
|
+
ExitSucceed: ExitSucceed;
|
|
1862
|
+
ExplicitDisputeStatement: ExplicitDisputeStatement;
|
|
1863
|
+
Exposure: Exposure;
|
|
1864
|
+
ExtendedBalance: ExtendedBalance;
|
|
1865
|
+
Extrinsic: Extrinsic;
|
|
1866
|
+
ExtrinsicEra: ExtrinsicEra;
|
|
1867
|
+
ExtrinsicInclusionMode: ExtrinsicInclusionMode;
|
|
1868
|
+
ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;
|
|
1869
|
+
ExtrinsicMetadataV11: ExtrinsicMetadataV11;
|
|
1870
|
+
ExtrinsicMetadataV12: ExtrinsicMetadataV12;
|
|
1871
|
+
ExtrinsicMetadataV13: ExtrinsicMetadataV13;
|
|
1872
|
+
ExtrinsicMetadataV14: ExtrinsicMetadataV14;
|
|
1873
|
+
ExtrinsicMetadataV15: ExtrinsicMetadataV15;
|
|
1874
|
+
ExtrinsicMetadataV16: ExtrinsicMetadataV16;
|
|
1875
|
+
ExtrinsicOrHash: ExtrinsicOrHash;
|
|
1876
|
+
ExtrinsicPayload: ExtrinsicPayload;
|
|
1877
|
+
ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
|
|
1878
|
+
ExtrinsicPayloadV4: ExtrinsicPayloadV4;
|
|
1879
|
+
ExtrinsicPayloadV5: ExtrinsicPayloadV5;
|
|
1880
|
+
ExtrinsicSignature: ExtrinsicSignature;
|
|
1881
|
+
ExtrinsicSignatureV4: ExtrinsicSignatureV4;
|
|
1882
|
+
ExtrinsicSignatureV5: ExtrinsicSignatureV5;
|
|
1883
|
+
ExtrinsicStatus: ExtrinsicStatus;
|
|
1884
|
+
ExtrinsicsWeight: ExtrinsicsWeight;
|
|
1885
|
+
ExtrinsicUnknown: ExtrinsicUnknown;
|
|
1886
|
+
ExtrinsicV4: ExtrinsicV4;
|
|
1887
|
+
ExtrinsicV5: ExtrinsicV5;
|
|
1888
|
+
f32: f32;
|
|
1889
|
+
F32: F32;
|
|
1890
|
+
f64: f64;
|
|
1891
|
+
F64: F64;
|
|
1892
|
+
FeeDetails: FeeDetails;
|
|
1893
|
+
FileMetadata: FileMetadata;
|
|
1894
|
+
Fixed128: Fixed128;
|
|
1895
|
+
Fixed64: Fixed64;
|
|
1896
|
+
FixedI128: FixedI128;
|
|
1897
|
+
FixedI64: FixedI64;
|
|
1898
|
+
FixedU128: FixedU128;
|
|
1899
|
+
FixedU64: FixedU64;
|
|
1900
|
+
Forcing: Forcing;
|
|
1901
|
+
ForkTreePendingChange: ForkTreePendingChange;
|
|
1902
|
+
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
|
|
1903
|
+
FullIdentification: FullIdentification;
|
|
1904
|
+
FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;
|
|
1905
|
+
FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;
|
|
1906
|
+
FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;
|
|
1907
|
+
FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;
|
|
1908
|
+
FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;
|
|
1909
|
+
FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;
|
|
1910
|
+
FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;
|
|
1911
|
+
FunctionMetadataLatest: FunctionMetadataLatest;
|
|
1912
|
+
FunctionMetadataV10: FunctionMetadataV10;
|
|
1913
|
+
FunctionMetadataV11: FunctionMetadataV11;
|
|
1914
|
+
FunctionMetadataV12: FunctionMetadataV12;
|
|
1915
|
+
FunctionMetadataV13: FunctionMetadataV13;
|
|
1916
|
+
FunctionMetadataV14: FunctionMetadataV14;
|
|
1917
|
+
FunctionMetadataV9: FunctionMetadataV9;
|
|
1918
|
+
FundIndex: FundIndex;
|
|
1919
|
+
FundInfo: FundInfo;
|
|
1920
|
+
Fungibility: Fungibility;
|
|
1921
|
+
FungibilityV0: FungibilityV0;
|
|
1922
|
+
FungibilityV1: FungibilityV1;
|
|
1923
|
+
FungibilityV2: FungibilityV2;
|
|
1924
|
+
FungibilityV3: FungibilityV3;
|
|
1925
|
+
FungibilityV4: FungibilityV4;
|
|
1926
|
+
FungibilityV5: FungibilityV5;
|
|
1927
|
+
FungiblesAccessError: FungiblesAccessError;
|
|
1928
|
+
Gas: Gas;
|
|
1929
|
+
GenericApplyDeltaEventInfoError: GenericApplyDeltaEventInfoError;
|
|
1930
|
+
GenesisBuildErr: GenesisBuildErr;
|
|
1931
|
+
GetBspInfoError: GetBspInfoError;
|
|
1932
|
+
GetChallengePeriodError: GetChallengePeriodError;
|
|
1933
|
+
GetChallengeSeedError: GetChallengeSeedError;
|
|
1934
|
+
GetCheckpointChallengesError: GetCheckpointChallengesError;
|
|
1935
|
+
GetFileFromFileStorageResult: GetFileFromFileStorageResult;
|
|
1936
|
+
GetNextDeadlineTickError: GetNextDeadlineTickError;
|
|
1937
|
+
GetProofSubmissionRecordError: GetProofSubmissionRecordError;
|
|
1938
|
+
GetStakeError: GetStakeError;
|
|
1939
|
+
GetUsersWithDebtOverThresholdError: GetUsersWithDebtOverThresholdError;
|
|
1940
|
+
GiltBid: GiltBid;
|
|
1941
|
+
GlobalValidationData: GlobalValidationData;
|
|
1942
|
+
GlobalValidationSchedule: GlobalValidationSchedule;
|
|
1943
|
+
GrandpaCommit: GrandpaCommit;
|
|
1944
|
+
GrandpaEquivocation: GrandpaEquivocation;
|
|
1945
|
+
GrandpaEquivocationProof: GrandpaEquivocationProof;
|
|
1946
|
+
GrandpaEquivocationValue: GrandpaEquivocationValue;
|
|
1947
|
+
GrandpaJustification: GrandpaJustification;
|
|
1948
|
+
GrandpaPrecommit: GrandpaPrecommit;
|
|
1949
|
+
GrandpaPrevote: GrandpaPrevote;
|
|
1950
|
+
GrandpaSignedPrecommit: GrandpaSignedPrecommit;
|
|
1951
|
+
GroupIndex: GroupIndex;
|
|
1952
|
+
GroupRotationInfo: GroupRotationInfo;
|
|
1953
|
+
H1024: H1024;
|
|
1954
|
+
H128: H128;
|
|
1955
|
+
H160: H160;
|
|
1956
|
+
H2048: H2048;
|
|
1957
|
+
H256: H256;
|
|
1958
|
+
H32: H32;
|
|
1959
|
+
H512: H512;
|
|
1960
|
+
H64: H64;
|
|
1961
|
+
Hash: Hash;
|
|
1962
|
+
HeadData: HeadData;
|
|
1963
|
+
Header: Header;
|
|
1964
|
+
HeaderPartial: HeaderPartial;
|
|
1965
|
+
Health: Health;
|
|
1966
|
+
Heartbeat: Heartbeat;
|
|
1967
|
+
HeartbeatTo244: HeartbeatTo244;
|
|
1968
|
+
HintV5: HintV5;
|
|
1969
|
+
HostConfiguration: HostConfiguration;
|
|
1970
|
+
HostFnWeights: HostFnWeights;
|
|
1971
|
+
HostFnWeightsTo264: HostFnWeightsTo264;
|
|
1972
|
+
HrmpChannel: HrmpChannel;
|
|
1973
|
+
HrmpChannelId: HrmpChannelId;
|
|
1974
|
+
HrmpOpenChannelRequest: HrmpOpenChannelRequest;
|
|
1975
|
+
i128: i128;
|
|
1976
|
+
I128: I128;
|
|
1977
|
+
i16: i16;
|
|
1978
|
+
I16: I16;
|
|
1979
|
+
i256: i256;
|
|
1980
|
+
I256: I256;
|
|
1981
|
+
i32: i32;
|
|
1982
|
+
I32: I32;
|
|
1983
|
+
I32F32: I32F32;
|
|
1984
|
+
i64: i64;
|
|
1985
|
+
I64: I64;
|
|
1986
|
+
i8: i8;
|
|
1987
|
+
I8: I8;
|
|
1988
|
+
IdentificationTuple: IdentificationTuple;
|
|
1989
|
+
IdentityFields: IdentityFields;
|
|
1990
|
+
IdentityInfo: IdentityInfo;
|
|
1991
|
+
IdentityInfoAdditional: IdentityInfoAdditional;
|
|
1992
|
+
IdentityInfoTo198: IdentityInfoTo198;
|
|
1993
|
+
IdentityJudgement: IdentityJudgement;
|
|
1994
|
+
ImmortalEra: ImmortalEra;
|
|
1995
|
+
ImportedAux: ImportedAux;
|
|
1996
|
+
InboundDownwardMessage: InboundDownwardMessage;
|
|
1997
|
+
InboundHrmpLimitations: InboundHrmpLimitations;
|
|
1998
|
+
InboundHrmpMessage: InboundHrmpMessage;
|
|
1999
|
+
InboundHrmpMessages: InboundHrmpMessages;
|
|
2000
|
+
InboundLaneData: InboundLaneData;
|
|
2001
|
+
InboundRelayer: InboundRelayer;
|
|
2002
|
+
InboundStatus: InboundStatus;
|
|
2003
|
+
IncludedBlocks: IncludedBlocks;
|
|
2004
|
+
InclusionFee: InclusionFee;
|
|
2005
|
+
IncomingParachain: IncomingParachain;
|
|
2006
|
+
IncomingParachainDeploy: IncomingParachainDeploy;
|
|
2007
|
+
IncomingParachainFixed: IncomingParachainFixed;
|
|
2008
|
+
IncompleteFileStatus: IncompleteFileStatus;
|
|
2009
|
+
IncompleteStorageRequestMetadataResponse: IncompleteStorageRequestMetadataResponse;
|
|
2010
|
+
Index: Index;
|
|
2011
|
+
IndicesLookupSource: IndicesLookupSource;
|
|
2012
|
+
IndividualExposure: IndividualExposure;
|
|
2013
|
+
InherentData: InherentData;
|
|
2014
|
+
InherentIdentifier: InherentIdentifier;
|
|
2015
|
+
InitializationData: InitializationData;
|
|
2016
|
+
InstanceDetails: InstanceDetails;
|
|
2017
|
+
InstanceId: InstanceId;
|
|
2018
|
+
InstanceMetadata: InstanceMetadata;
|
|
2019
|
+
InstantiateRequest: InstantiateRequest;
|
|
2020
|
+
InstantiateRequestV1: InstantiateRequestV1;
|
|
2021
|
+
InstantiateRequestV2: InstantiateRequestV2;
|
|
2022
|
+
InstantiateReturnValue: InstantiateReturnValue;
|
|
2023
|
+
InstantiateReturnValueOk: InstantiateReturnValueOk;
|
|
2024
|
+
InstantiateReturnValueTo267: InstantiateReturnValueTo267;
|
|
2025
|
+
InstructionV2: InstructionV2;
|
|
2026
|
+
InstructionV3: InstructionV3;
|
|
2027
|
+
InstructionV4: InstructionV4;
|
|
2028
|
+
InstructionV5: InstructionV5;
|
|
2029
|
+
InstructionWeights: InstructionWeights;
|
|
2030
|
+
InteriorMultiLocation: InteriorMultiLocation;
|
|
2031
|
+
InteriorMultiLocationV2: InteriorMultiLocationV2;
|
|
2032
|
+
InteriorMultiLocationV3: InteriorMultiLocationV3;
|
|
2033
|
+
InteriorMultiLocationV5: InteriorMultiLocationV5;
|
|
2034
|
+
InvalidDisputeStatementKind: InvalidDisputeStatementKind;
|
|
2035
|
+
InvalidTransaction: InvalidTransaction;
|
|
2036
|
+
isize: isize;
|
|
2037
|
+
ISize: ISize;
|
|
2038
|
+
IsStorageRequestOpenToVolunteersError: IsStorageRequestOpenToVolunteersError;
|
|
2039
|
+
ItemDeprecationInfoV16: ItemDeprecationInfoV16;
|
|
2040
|
+
Json: Json;
|
|
2041
|
+
Junction: Junction;
|
|
2042
|
+
Junctions: Junctions;
|
|
2043
|
+
JunctionsV1: JunctionsV1;
|
|
2044
|
+
JunctionsV2: JunctionsV2;
|
|
2045
|
+
JunctionsV3: JunctionsV3;
|
|
2046
|
+
JunctionsV4: JunctionsV4;
|
|
2047
|
+
JunctionsV5: JunctionsV5;
|
|
2048
|
+
JunctionV0: JunctionV0;
|
|
2049
|
+
JunctionV1: JunctionV1;
|
|
2050
|
+
JunctionV2: JunctionV2;
|
|
2051
|
+
JunctionV3: JunctionV3;
|
|
2052
|
+
JunctionV4: JunctionV4;
|
|
2053
|
+
JunctionV5: JunctionV5;
|
|
2054
|
+
Justification: Justification;
|
|
2055
|
+
JustificationNotification: JustificationNotification;
|
|
2056
|
+
Justifications: Justifications;
|
|
2057
|
+
Key: Key;
|
|
2058
|
+
KeyOwnerProof: KeyOwnerProof;
|
|
2059
|
+
Keys: Keys;
|
|
2060
|
+
KeyType: KeyType;
|
|
2061
|
+
KeyTypeId: KeyTypeId;
|
|
2062
|
+
KeyValue: KeyValue;
|
|
2063
|
+
KeyValueOption: KeyValueOption;
|
|
2064
|
+
Kind: Kind;
|
|
2065
|
+
LaneId: LaneId;
|
|
2066
|
+
LastContribution: LastContribution;
|
|
2067
|
+
LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;
|
|
2068
|
+
LeasePeriod: LeasePeriod;
|
|
2069
|
+
LeasePeriodOf: LeasePeriodOf;
|
|
2070
|
+
LegacyTransaction: LegacyTransaction;
|
|
2071
|
+
Limits: Limits;
|
|
2072
|
+
LimitsTo264: LimitsTo264;
|
|
2073
|
+
LoadFileInStorageResult: LoadFileInStorageResult;
|
|
2074
|
+
LocalValidationData: LocalValidationData;
|
|
2075
|
+
LockIdentifier: LockIdentifier;
|
|
2076
|
+
LookupSource: LookupSource;
|
|
2077
|
+
LookupTarget: LookupTarget;
|
|
2078
|
+
LotteryConfig: LotteryConfig;
|
|
2079
|
+
MainStorageProviderId: MainStorageProviderId;
|
|
2080
|
+
MaxPalletNameLen: MaxPalletNameLen;
|
|
2081
|
+
MaxPalletsInfo: MaxPalletsInfo;
|
|
2082
|
+
MaybeErrorCodeV3: MaybeErrorCodeV3;
|
|
2083
|
+
MaybeRandomness: MaybeRandomness;
|
|
2084
|
+
MaybeVrf: MaybeVrf;
|
|
2085
|
+
MemberCount: MemberCount;
|
|
2086
|
+
MembershipProof: MembershipProof;
|
|
2087
|
+
MerklePatriciaRoot: MerklePatriciaRoot;
|
|
2088
|
+
MessageData: MessageData;
|
|
2089
|
+
MessageId: MessageId;
|
|
2090
|
+
MessageIngestionType: MessageIngestionType;
|
|
2091
|
+
MessageKey: MessageKey;
|
|
2092
|
+
MessageNonce: MessageNonce;
|
|
2093
|
+
MessageQueueChain: MessageQueueChain;
|
|
2094
|
+
MessagesDeliveryProofOf: MessagesDeliveryProofOf;
|
|
2095
|
+
MessagesProofOf: MessagesProofOf;
|
|
2096
|
+
MessagingStateSnapshot: MessagingStateSnapshot;
|
|
2097
|
+
MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;
|
|
2098
|
+
MetadataAll: MetadataAll;
|
|
2099
|
+
MetadataLatest: MetadataLatest;
|
|
2100
|
+
MetadataV10: MetadataV10;
|
|
2101
|
+
MetadataV11: MetadataV11;
|
|
2102
|
+
MetadataV12: MetadataV12;
|
|
2103
|
+
MetadataV13: MetadataV13;
|
|
2104
|
+
MetadataV14: MetadataV14;
|
|
2105
|
+
MetadataV15: MetadataV15;
|
|
2106
|
+
MetadataV16: MetadataV16;
|
|
2107
|
+
MetadataV9: MetadataV9;
|
|
2108
|
+
MigrationStatusResult: MigrationStatusResult;
|
|
2109
|
+
Mixnode: Mixnode;
|
|
2110
|
+
MixnodesErr: MixnodesErr;
|
|
2111
|
+
MmrBatchProof: MmrBatchProof;
|
|
2112
|
+
MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;
|
|
2113
|
+
MmrError: MmrError;
|
|
2114
|
+
MmrHash: MmrHash;
|
|
2115
|
+
MmrLeafBatchProof: MmrLeafBatchProof;
|
|
2116
|
+
MmrLeafIndex: MmrLeafIndex;
|
|
2117
|
+
MmrLeafProof: MmrLeafProof;
|
|
2118
|
+
MmrNodeIndex: MmrNodeIndex;
|
|
2119
|
+
MmrProof: MmrProof;
|
|
2120
|
+
MmrRootHash: MmrRootHash;
|
|
2121
|
+
ModuleConstantMetadataV10: ModuleConstantMetadataV10;
|
|
2122
|
+
ModuleConstantMetadataV11: ModuleConstantMetadataV11;
|
|
2123
|
+
ModuleConstantMetadataV12: ModuleConstantMetadataV12;
|
|
2124
|
+
ModuleConstantMetadataV13: ModuleConstantMetadataV13;
|
|
2125
|
+
ModuleConstantMetadataV9: ModuleConstantMetadataV9;
|
|
2126
|
+
ModuleId: ModuleId;
|
|
2127
|
+
ModuleMetadataV10: ModuleMetadataV10;
|
|
2128
|
+
ModuleMetadataV11: ModuleMetadataV11;
|
|
2129
|
+
ModuleMetadataV12: ModuleMetadataV12;
|
|
2130
|
+
ModuleMetadataV13: ModuleMetadataV13;
|
|
2131
|
+
ModuleMetadataV9: ModuleMetadataV9;
|
|
2132
|
+
Moment: Moment;
|
|
2133
|
+
MomentOf: MomentOf;
|
|
2134
|
+
MoreAttestations: MoreAttestations;
|
|
2135
|
+
MortalEra: MortalEra;
|
|
2136
|
+
MultiAddress: MultiAddress;
|
|
2137
|
+
Multiaddresses: Multiaddresses;
|
|
2138
|
+
MultiAsset: MultiAsset;
|
|
2139
|
+
MultiAssetFilter: MultiAssetFilter;
|
|
2140
|
+
MultiAssetFilterV1: MultiAssetFilterV1;
|
|
2141
|
+
MultiAssetFilterV2: MultiAssetFilterV2;
|
|
2142
|
+
MultiAssetFilterV3: MultiAssetFilterV3;
|
|
2143
|
+
MultiAssetFilterV4: MultiAssetFilterV4;
|
|
2144
|
+
MultiAssetFilterV5: MultiAssetFilterV5;
|
|
2145
|
+
MultiAssets: MultiAssets;
|
|
2146
|
+
MultiAssetsV1: MultiAssetsV1;
|
|
2147
|
+
MultiAssetsV2: MultiAssetsV2;
|
|
2148
|
+
MultiAssetsV3: MultiAssetsV3;
|
|
2149
|
+
MultiAssetsV4: MultiAssetsV4;
|
|
2150
|
+
MultiAssetsV5: MultiAssetsV5;
|
|
2151
|
+
MultiAssetTransferFilterV5: MultiAssetTransferFilterV5;
|
|
2152
|
+
MultiAssetV0: MultiAssetV0;
|
|
2153
|
+
MultiAssetV1: MultiAssetV1;
|
|
2154
|
+
MultiAssetV2: MultiAssetV2;
|
|
2155
|
+
MultiAssetV3: MultiAssetV3;
|
|
2156
|
+
MultiAssetV4: MultiAssetV4;
|
|
2157
|
+
MultiAssetV5: MultiAssetV5;
|
|
2158
|
+
MultiDisputeStatementSet: MultiDisputeStatementSet;
|
|
2159
|
+
MultiLocation: MultiLocation;
|
|
2160
|
+
MultiLocationV0: MultiLocationV0;
|
|
2161
|
+
MultiLocationV1: MultiLocationV1;
|
|
2162
|
+
MultiLocationV2: MultiLocationV2;
|
|
2163
|
+
MultiLocationV3: MultiLocationV3;
|
|
2164
|
+
MultiLocationV4: MultiLocationV4;
|
|
2165
|
+
MultiLocationV5: MultiLocationV5;
|
|
2166
|
+
Multiplier: Multiplier;
|
|
2167
|
+
Multisig: Multisig;
|
|
2168
|
+
MultiSignature: MultiSignature;
|
|
2169
|
+
MultiSigner: MultiSigner;
|
|
2170
|
+
NetworkId: NetworkId;
|
|
2171
|
+
NetworkIdV2: NetworkIdV2;
|
|
2172
|
+
NetworkIdV3: NetworkIdV3;
|
|
2173
|
+
NetworkIdV4: NetworkIdV4;
|
|
2174
|
+
NetworkIdV5: NetworkIdV5;
|
|
2175
|
+
NetworkState: NetworkState;
|
|
2176
|
+
NetworkStatePeerset: NetworkStatePeerset;
|
|
2177
|
+
NetworkStatePeersetInfo: NetworkStatePeersetInfo;
|
|
2178
|
+
NewBidder: NewBidder;
|
|
2179
|
+
NextAuthority: NextAuthority;
|
|
2180
|
+
NextConfigDescriptor: NextConfigDescriptor;
|
|
2181
|
+
NextConfigDescriptorV1: NextConfigDescriptorV1;
|
|
2182
|
+
NftCollectionId: NftCollectionId;
|
|
2183
|
+
NftItemId: NftItemId;
|
|
2184
|
+
NodeFeatures: NodeFeatures;
|
|
2185
|
+
NodeRole: NodeRole;
|
|
2186
|
+
Nominations: Nominations;
|
|
2187
|
+
NominatorIndex: NominatorIndex;
|
|
2188
|
+
NominatorIndexCompact: NominatorIndexCompact;
|
|
2189
|
+
NotConnectedPeer: NotConnectedPeer;
|
|
2190
|
+
NpApiError: NpApiError;
|
|
2191
|
+
NpPoolId: NpPoolId;
|
|
2192
|
+
Null: Null;
|
|
2193
|
+
OccupiedCore: OccupiedCore;
|
|
2194
|
+
OccupiedCoreAssumption: OccupiedCoreAssumption;
|
|
2195
|
+
OffchainAccuracy: OffchainAccuracy;
|
|
2196
|
+
OffchainAccuracyCompact: OffchainAccuracyCompact;
|
|
2197
|
+
OffenceDetails: OffenceDetails;
|
|
2198
|
+
Offender: Offender;
|
|
2199
|
+
OldV1SessionInfo: OldV1SessionInfo;
|
|
2200
|
+
OpaqueCall: OpaqueCall;
|
|
2201
|
+
OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
|
|
2202
|
+
OpaqueMetadata: OpaqueMetadata;
|
|
2203
|
+
OpaqueMultiaddr: OpaqueMultiaddr;
|
|
2204
|
+
OpaqueNetworkState: OpaqueNetworkState;
|
|
2205
|
+
OpaquePeerId: OpaquePeerId;
|
|
2206
|
+
OpaqueTimeSlot: OpaqueTimeSlot;
|
|
2207
|
+
OpenTip: OpenTip;
|
|
2208
|
+
OpenTipFinderTo225: OpenTipFinderTo225;
|
|
2209
|
+
OpenTipTip: OpenTipTip;
|
|
2210
|
+
OpenTipTo225: OpenTipTo225;
|
|
2211
|
+
OperatingMode: OperatingMode;
|
|
2212
|
+
OptionBool: OptionBool;
|
|
2213
|
+
Origin: Origin;
|
|
2214
|
+
OriginCaller: OriginCaller;
|
|
2215
|
+
OriginKindV0: OriginKindV0;
|
|
2216
|
+
OriginKindV1: OriginKindV1;
|
|
2217
|
+
OriginKindV2: OriginKindV2;
|
|
2218
|
+
OriginKindV3: OriginKindV3;
|
|
2219
|
+
OriginKindV4: OriginKindV4;
|
|
2220
|
+
OutboundHrmpChannelLimitations: OutboundHrmpChannelLimitations;
|
|
2221
|
+
OutboundHrmpMessage: OutboundHrmpMessage;
|
|
2222
|
+
OutboundLaneData: OutboundLaneData;
|
|
2223
|
+
OutboundMessageFee: OutboundMessageFee;
|
|
2224
|
+
OutboundPayload: OutboundPayload;
|
|
2225
|
+
OutboundStatus: OutboundStatus;
|
|
2226
|
+
Outcome: Outcome;
|
|
2227
|
+
OutcomeV4: OutcomeV4;
|
|
2228
|
+
OuterEnums15: OuterEnums15;
|
|
2229
|
+
OverweightIndex: OverweightIndex;
|
|
2230
|
+
Owner: Owner;
|
|
2231
|
+
PageCounter: PageCounter;
|
|
2232
|
+
PageIndexData: PageIndexData;
|
|
2233
|
+
PalletAssociatedTypeMetadataV16: PalletAssociatedTypeMetadataV16;
|
|
2234
|
+
PalletCallMetadataLatest: PalletCallMetadataLatest;
|
|
2235
|
+
PalletCallMetadataV14: PalletCallMetadataV14;
|
|
2236
|
+
PalletCallMetadataV16: PalletCallMetadataV16;
|
|
2237
|
+
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
|
|
2238
|
+
PalletConstantMetadataV14: PalletConstantMetadataV14;
|
|
2239
|
+
PalletConstantMetadataV16: PalletConstantMetadataV16;
|
|
2240
|
+
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
|
|
2241
|
+
PalletErrorMetadataV14: PalletErrorMetadataV14;
|
|
2242
|
+
PalletErrorMetadataV16: PalletErrorMetadataV16;
|
|
2243
|
+
PalletEventMetadataLatest: PalletEventMetadataLatest;
|
|
2244
|
+
PalletEventMetadataV14: PalletEventMetadataV14;
|
|
2245
|
+
PalletEventMetadataV16: PalletEventMetadataV16;
|
|
2246
|
+
PalletId: PalletId;
|
|
2247
|
+
PalletInfoV3: PalletInfoV3;
|
|
2248
|
+
PalletInfoV4: PalletInfoV4;
|
|
2249
|
+
PalletInfoV5: PalletInfoV5;
|
|
2250
|
+
PalletMetadataLatest: PalletMetadataLatest;
|
|
2251
|
+
PalletMetadataV14: PalletMetadataV14;
|
|
2252
|
+
PalletMetadataV15: PalletMetadataV15;
|
|
2253
|
+
PalletMetadataV16: PalletMetadataV16;
|
|
2254
|
+
PalletsOrigin: PalletsOrigin;
|
|
2255
|
+
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
|
|
2256
|
+
PalletStorageMetadataV14: PalletStorageMetadataV14;
|
|
2257
|
+
PalletStorageMetadataV16: PalletStorageMetadataV16;
|
|
2258
|
+
PalletVersion: PalletVersion;
|
|
2259
|
+
PalletViewFunctionMetadataV16: PalletViewFunctionMetadataV16;
|
|
2260
|
+
ParachainDispatchOrigin: ParachainDispatchOrigin;
|
|
2261
|
+
ParachainInherentData: ParachainInherentData;
|
|
2262
|
+
ParachainProposal: ParachainProposal;
|
|
2263
|
+
ParachainsInherentData: ParachainsInherentData;
|
|
2264
|
+
ParaGenesisArgs: ParaGenesisArgs;
|
|
2265
|
+
ParaId: ParaId;
|
|
2266
|
+
ParaInfo: ParaInfo;
|
|
2267
|
+
ParaLifecycle: ParaLifecycle;
|
|
2268
|
+
Parameter: Parameter;
|
|
2269
|
+
ParaPastCodeMeta: ParaPastCodeMeta;
|
|
2270
|
+
ParaScheduling: ParaScheduling;
|
|
2271
|
+
ParathreadClaim: ParathreadClaim;
|
|
2272
|
+
ParathreadClaimQueue: ParathreadClaimQueue;
|
|
2273
|
+
ParathreadEntry: ParathreadEntry;
|
|
2274
|
+
ParaValidatorIndex: ParaValidatorIndex;
|
|
2275
|
+
Pays: Pays;
|
|
2276
|
+
Peer: Peer;
|
|
2277
|
+
PeerEndpoint: PeerEndpoint;
|
|
2278
|
+
PeerEndpointAddr: PeerEndpointAddr;
|
|
2279
|
+
PeerInfo: PeerInfo;
|
|
2280
|
+
PeerPing: PeerPing;
|
|
2281
|
+
PendingChange: PendingChange;
|
|
2282
|
+
PendingPause: PendingPause;
|
|
2283
|
+
PendingResume: PendingResume;
|
|
2284
|
+
PendingSlashes: PendingSlashes;
|
|
2285
|
+
Perbill: Perbill;
|
|
2286
|
+
Percent: Percent;
|
|
2287
|
+
PerDispatchClassU32: PerDispatchClassU32;
|
|
2288
|
+
PerDispatchClassWeight: PerDispatchClassWeight;
|
|
2289
|
+
PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;
|
|
2290
|
+
Period: Period;
|
|
2291
|
+
Permill: Permill;
|
|
2292
|
+
PermissionLatest: PermissionLatest;
|
|
2293
|
+
PermissionsV1: PermissionsV1;
|
|
2294
|
+
PermissionVersions: PermissionVersions;
|
|
2295
|
+
Perquintill: Perquintill;
|
|
2296
|
+
PersistedValidationData: PersistedValidationData;
|
|
2297
|
+
PerU16: PerU16;
|
|
2298
|
+
Phantom: Phantom;
|
|
2299
|
+
PhantomData: PhantomData;
|
|
2300
|
+
Phase: Phase;
|
|
2301
|
+
PhragmenScore: PhragmenScore;
|
|
2302
|
+
Points: Points;
|
|
2303
|
+
PortableType: PortableType;
|
|
2304
|
+
PortableTypeV14: PortableTypeV14;
|
|
2305
|
+
PostDispatchInfo: PostDispatchInfo;
|
|
2306
|
+
Precommits: Precommits;
|
|
2307
|
+
PrefabWasmModule: PrefabWasmModule;
|
|
2308
|
+
PrefixedStorageKey: PrefixedStorageKey;
|
|
2309
|
+
PreimageStatus: PreimageStatus;
|
|
2310
|
+
PreimageStatusAvailable: PreimageStatusAvailable;
|
|
2311
|
+
PreRuntime: PreRuntime;
|
|
2312
|
+
Prevotes: Prevotes;
|
|
2313
|
+
Priority: Priority;
|
|
2314
|
+
PriorLock: PriorLock;
|
|
2315
|
+
PropIndex: PropIndex;
|
|
2316
|
+
Proposal: Proposal;
|
|
2317
|
+
ProposalIndex: ProposalIndex;
|
|
2318
|
+
ProviderId: ProviderId;
|
|
2319
|
+
ProxyAnnouncement: ProxyAnnouncement;
|
|
2320
|
+
ProxyDefinition: ProxyDefinition;
|
|
2321
|
+
ProxyState: ProxyState;
|
|
2322
|
+
ProxyType: ProxyType;
|
|
2323
|
+
PvfCheckStatement: PvfCheckStatement;
|
|
2324
|
+
PvfExecTimeoutKind: PvfExecTimeoutKind;
|
|
2325
|
+
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
|
|
2326
|
+
QueryAvailableStorageCapacityError: QueryAvailableStorageCapacityError;
|
|
2327
|
+
QueryBspConfirmChunksToProveForFileError: QueryBspConfirmChunksToProveForFileError;
|
|
2328
|
+
QueryBucketsForMspError: QueryBucketsForMspError;
|
|
2329
|
+
QueryBucketsOfUserStoredByMspError: QueryBucketsOfUserStoredByMspError;
|
|
2330
|
+
QueryConfirmChunksToProveForFileError: QueryConfirmChunksToProveForFileError;
|
|
2331
|
+
QueryEarliestChangeCapacityBlockError: QueryEarliestChangeCapacityBlockError;
|
|
2332
|
+
QueryFileEarliestVolunteerBlockError: QueryFileEarliestVolunteerBlockError;
|
|
2333
|
+
QueryId: QueryId;
|
|
2334
|
+
QueryIncompleteStorageRequestMetadataError: QueryIncompleteStorageRequestMetadataError;
|
|
2335
|
+
QueryMspConfirmChunksToProveForFileError: QueryMspConfirmChunksToProveForFileError;
|
|
2336
|
+
QueryMspIdOfBucketIdError: QueryMspIdOfBucketIdError;
|
|
2337
|
+
QueryProviderMultiaddressesError: QueryProviderMultiaddressesError;
|
|
2338
|
+
QueryResponseInfoV3: QueryResponseInfoV3;
|
|
2339
|
+
QueryResponseInfoV4: QueryResponseInfoV4;
|
|
2340
|
+
QueryResponseInfoV5: QueryResponseInfoV5;
|
|
2341
|
+
QueryStatus: QueryStatus;
|
|
2342
|
+
QueryStorageProviderCapacityError: QueryStorageProviderCapacityError;
|
|
2343
|
+
QueueConfigData: QueueConfigData;
|
|
2344
|
+
QueuedParathread: QueuedParathread;
|
|
2345
|
+
Randomness: Randomness;
|
|
2346
|
+
RandomnessOutput: RandomnessOutput;
|
|
2347
|
+
Raw: Raw;
|
|
2348
|
+
RawAuraPreDigest: RawAuraPreDigest;
|
|
2349
|
+
RawBabePreDigest: RawBabePreDigest;
|
|
2350
|
+
RawBabePreDigestCompat: RawBabePreDigestCompat;
|
|
2351
|
+
RawBabePreDigestPrimary: RawBabePreDigestPrimary;
|
|
2352
|
+
RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;
|
|
2353
|
+
RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;
|
|
2354
|
+
RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;
|
|
2355
|
+
RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;
|
|
2356
|
+
RawBabePreDigestTo159: RawBabePreDigestTo159;
|
|
2357
|
+
RawOrigin: RawOrigin;
|
|
2358
|
+
RawSolution: RawSolution;
|
|
2359
|
+
RawSolutionTo265: RawSolutionTo265;
|
|
2360
|
+
RawSolutionWith16: RawSolutionWith16;
|
|
2361
|
+
RawSolutionWith24: RawSolutionWith24;
|
|
2362
|
+
RawVRFOutput: RawVRFOutput;
|
|
2363
|
+
ReadProof: ReadProof;
|
|
2364
|
+
ReadySolution: ReadySolution;
|
|
2365
|
+
Reasons: Reasons;
|
|
2366
|
+
RecoveryConfig: RecoveryConfig;
|
|
2367
|
+
RefCount: RefCount;
|
|
2368
|
+
RefCountTo259: RefCountTo259;
|
|
2369
|
+
ReferendumIndex: ReferendumIndex;
|
|
2370
|
+
ReferendumInfo: ReferendumInfo;
|
|
2371
|
+
ReferendumInfoFinished: ReferendumInfoFinished;
|
|
2372
|
+
ReferendumInfoTo239: ReferendumInfoTo239;
|
|
2373
|
+
ReferendumStatus: ReferendumStatus;
|
|
2374
|
+
RegisteredParachainInfo: RegisteredParachainInfo;
|
|
2375
|
+
RegistrarIndex: RegistrarIndex;
|
|
2376
|
+
RegistrarInfo: RegistrarInfo;
|
|
2377
|
+
Registration: Registration;
|
|
2378
|
+
RegistrationJudgement: RegistrationJudgement;
|
|
2379
|
+
RegistrationTo198: RegistrationTo198;
|
|
2380
|
+
RelayBlockNumber: RelayBlockNumber;
|
|
2381
|
+
RelayChainBlockNumber: RelayChainBlockNumber;
|
|
2382
|
+
RelayChainHash: RelayChainHash;
|
|
2383
|
+
RelayerId: RelayerId;
|
|
2384
|
+
RelayHash: RelayHash;
|
|
2385
|
+
Releases: Releases;
|
|
2386
|
+
Remark: Remark;
|
|
2387
|
+
RemoveFilesFromForestStorageResult: RemoveFilesFromForestStorageResult;
|
|
2388
|
+
Renouncing: Renouncing;
|
|
2389
|
+
RentProjection: RentProjection;
|
|
2390
|
+
ReplacementTimes: ReplacementTimes;
|
|
2391
|
+
ReportedRoundStates: ReportedRoundStates;
|
|
2392
|
+
Reporter: Reporter;
|
|
2393
|
+
ReportIdOf: ReportIdOf;
|
|
2394
|
+
ReputationWeightType: ReputationWeightType;
|
|
2395
|
+
ReserveData: ReserveData;
|
|
2396
|
+
ReserveIdentifier: ReserveIdentifier;
|
|
2397
|
+
Response: Response;
|
|
2398
|
+
ResponseV0: ResponseV0;
|
|
2399
|
+
ResponseV1: ResponseV1;
|
|
2400
|
+
ResponseV2: ResponseV2;
|
|
2401
|
+
ResponseV2Error: ResponseV2Error;
|
|
2402
|
+
ResponseV3: ResponseV3;
|
|
2403
|
+
ResponseV3Error: ResponseV3Error;
|
|
2404
|
+
ResponseV3Result: ResponseV3Result;
|
|
2405
|
+
ResponseV4: ResponseV4;
|
|
2406
|
+
ResponseV5: ResponseV5;
|
|
2407
|
+
Retriable: Retriable;
|
|
2408
|
+
RewardDestination: RewardDestination;
|
|
2409
|
+
RewardPoint: RewardPoint;
|
|
2410
|
+
RoundSnapshot: RoundSnapshot;
|
|
2411
|
+
RoundState: RoundState;
|
|
2412
|
+
RpcMethods: RpcMethods;
|
|
2413
|
+
RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
|
|
2414
|
+
RuntimeApiMetadataV15: RuntimeApiMetadataV15;
|
|
2415
|
+
RuntimeApiMetadataV16: RuntimeApiMetadataV16;
|
|
2416
|
+
RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
|
|
2417
|
+
RuntimeApiMethodMetadataV16: RuntimeApiMethodMetadataV16;
|
|
2418
|
+
RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
|
|
2419
|
+
RuntimeCall: RuntimeCall;
|
|
2420
|
+
RuntimeDbWeight: RuntimeDbWeight;
|
|
2421
|
+
RuntimeDispatchInfo: RuntimeDispatchInfo;
|
|
2422
|
+
RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
|
|
2423
|
+
RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
|
|
2424
|
+
RuntimeEvent: RuntimeEvent;
|
|
2425
|
+
RuntimeVersion: RuntimeVersion;
|
|
2426
|
+
RuntimeVersionApi: RuntimeVersionApi;
|
|
2427
|
+
RuntimeVersionPartial: RuntimeVersionPartial;
|
|
2428
|
+
RuntimeVersionPre3: RuntimeVersionPre3;
|
|
2429
|
+
RuntimeVersionPre4: RuntimeVersionPre4;
|
|
2430
|
+
SaveFileToDisk: SaveFileToDisk;
|
|
2431
|
+
Schedule: Schedule;
|
|
2432
|
+
Scheduled: Scheduled;
|
|
2433
|
+
ScheduledCore: ScheduledCore;
|
|
2434
|
+
ScheduledTo254: ScheduledTo254;
|
|
2435
|
+
SchedulePeriod: SchedulePeriod;
|
|
2436
|
+
SchedulePriority: SchedulePriority;
|
|
2437
|
+
ScheduleTo212: ScheduleTo212;
|
|
2438
|
+
ScheduleTo258: ScheduleTo258;
|
|
2439
|
+
ScheduleTo264: ScheduleTo264;
|
|
2440
|
+
Scheduling: Scheduling;
|
|
2441
|
+
ScrapedOnChainVotes: ScrapedOnChainVotes;
|
|
2442
|
+
Seal: Seal;
|
|
2443
|
+
SealV0: SealV0;
|
|
2444
|
+
SeatHolder: SeatHolder;
|
|
2445
|
+
SeedOf: SeedOf;
|
|
2446
|
+
ServiceQuality: ServiceQuality;
|
|
2447
|
+
SessionIndex: SessionIndex;
|
|
2448
|
+
SessionInfo: SessionInfo;
|
|
2449
|
+
SessionInfoValidatorGroup: SessionInfoValidatorGroup;
|
|
2450
|
+
SessionKeys1: SessionKeys1;
|
|
2451
|
+
SessionKeys10: SessionKeys10;
|
|
2452
|
+
SessionKeys10B: SessionKeys10B;
|
|
2453
|
+
SessionKeys2: SessionKeys2;
|
|
2454
|
+
SessionKeys3: SessionKeys3;
|
|
2455
|
+
SessionKeys4: SessionKeys4;
|
|
2456
|
+
SessionKeys5: SessionKeys5;
|
|
2457
|
+
SessionKeys6: SessionKeys6;
|
|
2458
|
+
SessionKeys6B: SessionKeys6B;
|
|
2459
|
+
SessionKeys7: SessionKeys7;
|
|
2460
|
+
SessionKeys7B: SessionKeys7B;
|
|
2461
|
+
SessionKeys8: SessionKeys8;
|
|
2462
|
+
SessionKeys8B: SessionKeys8B;
|
|
2463
|
+
SessionKeys9: SessionKeys9;
|
|
2464
|
+
SessionKeys9B: SessionKeys9B;
|
|
2465
|
+
SessionPhase: SessionPhase;
|
|
2466
|
+
SessionStatus: SessionStatus;
|
|
2467
|
+
SetId: SetId;
|
|
2468
|
+
SetIndex: SetIndex;
|
|
2469
|
+
ShouldRemoveFile: ShouldRemoveFile;
|
|
2470
|
+
Si0Field: Si0Field;
|
|
2471
|
+
Si0LookupTypeId: Si0LookupTypeId;
|
|
2472
|
+
Si0Path: Si0Path;
|
|
2473
|
+
Si0Type: Si0Type;
|
|
2474
|
+
Si0TypeDef: Si0TypeDef;
|
|
2475
|
+
Si0TypeDefArray: Si0TypeDefArray;
|
|
2476
|
+
Si0TypeDefBitSequence: Si0TypeDefBitSequence;
|
|
2477
|
+
Si0TypeDefCompact: Si0TypeDefCompact;
|
|
2478
|
+
Si0TypeDefComposite: Si0TypeDefComposite;
|
|
2479
|
+
Si0TypeDefPhantom: Si0TypeDefPhantom;
|
|
2480
|
+
Si0TypeDefPrimitive: Si0TypeDefPrimitive;
|
|
2481
|
+
Si0TypeDefSequence: Si0TypeDefSequence;
|
|
2482
|
+
Si0TypeDefTuple: Si0TypeDefTuple;
|
|
2483
|
+
Si0TypeDefVariant: Si0TypeDefVariant;
|
|
2484
|
+
Si0TypeParameter: Si0TypeParameter;
|
|
2485
|
+
Si0Variant: Si0Variant;
|
|
2486
|
+
Si1Field: Si1Field;
|
|
2487
|
+
Si1LookupTypeId: Si1LookupTypeId;
|
|
2488
|
+
Si1Path: Si1Path;
|
|
2489
|
+
Si1Type: Si1Type;
|
|
2490
|
+
Si1TypeDef: Si1TypeDef;
|
|
2491
|
+
Si1TypeDefArray: Si1TypeDefArray;
|
|
2492
|
+
Si1TypeDefBitSequence: Si1TypeDefBitSequence;
|
|
2493
|
+
Si1TypeDefCompact: Si1TypeDefCompact;
|
|
2494
|
+
Si1TypeDefComposite: Si1TypeDefComposite;
|
|
2495
|
+
Si1TypeDefPrimitive: Si1TypeDefPrimitive;
|
|
2496
|
+
Si1TypeDefSequence: Si1TypeDefSequence;
|
|
2497
|
+
Si1TypeDefTuple: Si1TypeDefTuple;
|
|
2498
|
+
Si1TypeDefVariant: Si1TypeDefVariant;
|
|
2499
|
+
Si1TypeParameter: Si1TypeParameter;
|
|
2500
|
+
Si1Variant: Si1Variant;
|
|
2501
|
+
SiField: SiField;
|
|
2502
|
+
Signature: Signature;
|
|
2503
|
+
SignedAvailabilityBitfield: SignedAvailabilityBitfield;
|
|
2504
|
+
SignedAvailabilityBitfields: SignedAvailabilityBitfields;
|
|
2505
|
+
SignedBlock: SignedBlock;
|
|
2506
|
+
SignedBlockWithJustification: SignedBlockWithJustification;
|
|
2507
|
+
SignedBlockWithJustifications: SignedBlockWithJustifications;
|
|
2508
|
+
SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;
|
|
2509
|
+
SignedExtensionMetadataV14: SignedExtensionMetadataV14;
|
|
2510
|
+
SignedSubmission: SignedSubmission;
|
|
2511
|
+
SignedSubmissionOf: SignedSubmissionOf;
|
|
2512
|
+
SignedSubmissionTo276: SignedSubmissionTo276;
|
|
2513
|
+
SignerPayload: SignerPayload;
|
|
2514
|
+
SigningContext: SigningContext;
|
|
2515
|
+
SiLookupTypeId: SiLookupTypeId;
|
|
2516
|
+
SiPath: SiPath;
|
|
2517
|
+
SiType: SiType;
|
|
2518
|
+
SiTypeDef: SiTypeDef;
|
|
2519
|
+
SiTypeDefArray: SiTypeDefArray;
|
|
2520
|
+
SiTypeDefBitSequence: SiTypeDefBitSequence;
|
|
2521
|
+
SiTypeDefCompact: SiTypeDefCompact;
|
|
2522
|
+
SiTypeDefComposite: SiTypeDefComposite;
|
|
2523
|
+
SiTypeDefPrimitive: SiTypeDefPrimitive;
|
|
2524
|
+
SiTypeDefSequence: SiTypeDefSequence;
|
|
2525
|
+
SiTypeDefTuple: SiTypeDefTuple;
|
|
2526
|
+
SiTypeDefVariant: SiTypeDefVariant;
|
|
2527
|
+
SiTypeParameter: SiTypeParameter;
|
|
2528
|
+
SiVariant: SiVariant;
|
|
2529
|
+
SlashingOffenceKind: SlashingOffenceKind;
|
|
2530
|
+
SlashingSpans: SlashingSpans;
|
|
2531
|
+
SlashingSpansTo204: SlashingSpansTo204;
|
|
2532
|
+
SlashJournalEntry: SlashJournalEntry;
|
|
2533
|
+
Slot: Slot;
|
|
2534
|
+
SlotDuration: SlotDuration;
|
|
2535
|
+
SlotNumber: SlotNumber;
|
|
2536
|
+
SlotRange: SlotRange;
|
|
2537
|
+
SlotRange10: SlotRange10;
|
|
2538
|
+
SocietyJudgement: SocietyJudgement;
|
|
2539
|
+
SocietyVote: SocietyVote;
|
|
2540
|
+
SolutionOrSnapshotSize: SolutionOrSnapshotSize;
|
|
2541
|
+
SolutionSupport: SolutionSupport;
|
|
2542
|
+
SolutionSupports: SolutionSupports;
|
|
2543
|
+
SpanIndex: SpanIndex;
|
|
2544
|
+
SpanRecord: SpanRecord;
|
|
2545
|
+
SpecVersion: SpecVersion;
|
|
2546
|
+
Sr25519Signature: Sr25519Signature;
|
|
2547
|
+
StakingLedger: StakingLedger;
|
|
2548
|
+
StakingLedgerTo223: StakingLedgerTo223;
|
|
2549
|
+
StakingLedgerTo240: StakingLedgerTo240;
|
|
2550
|
+
Statement: Statement;
|
|
2551
|
+
StatementKind: StatementKind;
|
|
2552
|
+
StatementStoreInvalidStatement: StatementStoreInvalidStatement;
|
|
2553
|
+
StatementStoreStatementSource: StatementStoreStatementSource;
|
|
2554
|
+
StatementStoreValidStatement: StatementStoreValidStatement;
|
|
2555
|
+
StorageChangeSet: StorageChangeSet;
|
|
2556
|
+
StorageData: StorageData;
|
|
2557
|
+
StorageDataUnit: StorageDataUnit;
|
|
2558
|
+
StorageDeposit: StorageDeposit;
|
|
2559
|
+
StorageEntryMetadataLatest: StorageEntryMetadataLatest;
|
|
2560
|
+
StorageEntryMetadataV10: StorageEntryMetadataV10;
|
|
2561
|
+
StorageEntryMetadataV11: StorageEntryMetadataV11;
|
|
2562
|
+
StorageEntryMetadataV12: StorageEntryMetadataV12;
|
|
2563
|
+
StorageEntryMetadataV13: StorageEntryMetadataV13;
|
|
2564
|
+
StorageEntryMetadataV14: StorageEntryMetadataV14;
|
|
2565
|
+
StorageEntryMetadataV16: StorageEntryMetadataV16;
|
|
2566
|
+
StorageEntryMetadataV9: StorageEntryMetadataV9;
|
|
2567
|
+
StorageEntryModifierLatest: StorageEntryModifierLatest;
|
|
2568
|
+
StorageEntryModifierV10: StorageEntryModifierV10;
|
|
2569
|
+
StorageEntryModifierV11: StorageEntryModifierV11;
|
|
2570
|
+
StorageEntryModifierV12: StorageEntryModifierV12;
|
|
2571
|
+
StorageEntryModifierV13: StorageEntryModifierV13;
|
|
2572
|
+
StorageEntryModifierV14: StorageEntryModifierV14;
|
|
2573
|
+
StorageEntryModifierV9: StorageEntryModifierV9;
|
|
2574
|
+
StorageEntryTypeLatest: StorageEntryTypeLatest;
|
|
2575
|
+
StorageEntryTypeV10: StorageEntryTypeV10;
|
|
2576
|
+
StorageEntryTypeV11: StorageEntryTypeV11;
|
|
2577
|
+
StorageEntryTypeV12: StorageEntryTypeV12;
|
|
2578
|
+
StorageEntryTypeV13: StorageEntryTypeV13;
|
|
2579
|
+
StorageEntryTypeV14: StorageEntryTypeV14;
|
|
2580
|
+
StorageEntryTypeV9: StorageEntryTypeV9;
|
|
2581
|
+
StorageHasher: StorageHasher;
|
|
2582
|
+
StorageHasherV10: StorageHasherV10;
|
|
2583
|
+
StorageHasherV11: StorageHasherV11;
|
|
2584
|
+
StorageHasherV12: StorageHasherV12;
|
|
2585
|
+
StorageHasherV13: StorageHasherV13;
|
|
2586
|
+
StorageHasherV14: StorageHasherV14;
|
|
2587
|
+
StorageHasherV9: StorageHasherV9;
|
|
2588
|
+
StorageInfo: StorageInfo;
|
|
2589
|
+
StorageKey: StorageKey;
|
|
2590
|
+
StorageKind: StorageKind;
|
|
2591
|
+
StorageMetadataV10: StorageMetadataV10;
|
|
2592
|
+
StorageMetadataV11: StorageMetadataV11;
|
|
2593
|
+
StorageMetadataV12: StorageMetadataV12;
|
|
2594
|
+
StorageMetadataV13: StorageMetadataV13;
|
|
2595
|
+
StorageMetadataV9: StorageMetadataV9;
|
|
2596
|
+
StorageProof: StorageProof;
|
|
2597
|
+
StorageProviderId: StorageProviderId;
|
|
2598
|
+
StorageRequestMetadata: StorageRequestMetadata;
|
|
2599
|
+
StoredPendingChange: StoredPendingChange;
|
|
2600
|
+
StoredState: StoredState;
|
|
2601
|
+
StrikeCount: StrikeCount;
|
|
2602
|
+
SubId: SubId;
|
|
2603
|
+
SubmissionIndicesOf: SubmissionIndicesOf;
|
|
2604
|
+
Supports: Supports;
|
|
2605
|
+
SyncState: SyncState;
|
|
2606
|
+
SystemInherentData: SystemInherentData;
|
|
2607
|
+
SystemOrigin: SystemOrigin;
|
|
2608
|
+
Tally: Tally;
|
|
2609
|
+
TaskAddress: TaskAddress;
|
|
2610
|
+
TAssetBalance: TAssetBalance;
|
|
2611
|
+
TAssetConversion: TAssetConversion;
|
|
2612
|
+
TAssetDepositBalance: TAssetDepositBalance;
|
|
2613
|
+
Text: Text;
|
|
2614
|
+
Timepoint: Timepoint;
|
|
2615
|
+
TokenError: TokenError;
|
|
2616
|
+
TombstoneContractInfo: TombstoneContractInfo;
|
|
2617
|
+
TraceBlockResponse: TraceBlockResponse;
|
|
2618
|
+
TraceError: TraceError;
|
|
2619
|
+
TransactionalError: TransactionalError;
|
|
2620
|
+
TransactionExtensionMetadataLatest: TransactionExtensionMetadataLatest;
|
|
2621
|
+
TransactionExtensionMetadataV16: TransactionExtensionMetadataV16;
|
|
2622
|
+
TransactionInfo: TransactionInfo;
|
|
2623
|
+
TransactionLongevity: TransactionLongevity;
|
|
2624
|
+
TransactionPriority: TransactionPriority;
|
|
2625
|
+
TransactionSource: TransactionSource;
|
|
2626
|
+
TransactionStorageProof: TransactionStorageProof;
|
|
2627
|
+
TransactionTag: TransactionTag;
|
|
2628
|
+
TransactionV0: TransactionV0;
|
|
2629
|
+
TransactionV1: TransactionV1;
|
|
2630
|
+
TransactionV2: TransactionV2;
|
|
2631
|
+
TransactionV3: TransactionV3;
|
|
2632
|
+
TransactionValidity: TransactionValidity;
|
|
2633
|
+
TransactionValidityError: TransactionValidityError;
|
|
2634
|
+
TransientValidationData: TransientValidationData;
|
|
2635
|
+
TreasuryProposal: TreasuryProposal;
|
|
2636
|
+
TrieId: TrieId;
|
|
2637
|
+
TrieIndex: TrieIndex;
|
|
2638
|
+
TrieRemoveMutation: TrieRemoveMutation;
|
|
2639
|
+
Type: Type;
|
|
2640
|
+
u128: u128;
|
|
2641
|
+
U128: U128;
|
|
2642
|
+
u16: u16;
|
|
2643
|
+
U16: U16;
|
|
2644
|
+
u256: u256;
|
|
2645
|
+
U256: U256;
|
|
2646
|
+
u32: u32;
|
|
2647
|
+
U32: U32;
|
|
2648
|
+
U32F32: U32F32;
|
|
2649
|
+
u64: u64;
|
|
2650
|
+
U64: U64;
|
|
2651
|
+
u8: u8;
|
|
2652
|
+
U8: U8;
|
|
2653
|
+
UnappliedSlash: UnappliedSlash;
|
|
2654
|
+
UnappliedSlashOther: UnappliedSlashOther;
|
|
2655
|
+
UncheckedFungibilityV4: UncheckedFungibilityV4;
|
|
2656
|
+
UncheckedFungibilityV5: UncheckedFungibilityV5;
|
|
2657
|
+
UncleEntryItem: UncleEntryItem;
|
|
2658
|
+
UnknownTransaction: UnknownTransaction;
|
|
2659
|
+
UnlockChunk: UnlockChunk;
|
|
2660
|
+
UnrewardedRelayer: UnrewardedRelayer;
|
|
2661
|
+
UnrewardedRelayersState: UnrewardedRelayersState;
|
|
2662
|
+
UpgradeGoAhead: UpgradeGoAhead;
|
|
2663
|
+
UpgradeRestriction: UpgradeRestriction;
|
|
2664
|
+
UpwardMessage: UpwardMessage;
|
|
2665
|
+
usize: usize;
|
|
2666
|
+
USize: USize;
|
|
2667
|
+
ValidationCode: ValidationCode;
|
|
2668
|
+
ValidationCodeHash: ValidationCodeHash;
|
|
2669
|
+
ValidationData: ValidationData;
|
|
2670
|
+
ValidationDataType: ValidationDataType;
|
|
2671
|
+
ValidationFunctionParams: ValidationFunctionParams;
|
|
2672
|
+
ValidatorCount: ValidatorCount;
|
|
2673
|
+
ValidatorId: ValidatorId;
|
|
2674
|
+
ValidatorIdOf: ValidatorIdOf;
|
|
2675
|
+
ValidatorIndex: ValidatorIndex;
|
|
2676
|
+
ValidatorIndexCompact: ValidatorIndexCompact;
|
|
2677
|
+
ValidatorPrefs: ValidatorPrefs;
|
|
2678
|
+
ValidatorPrefsTo145: ValidatorPrefsTo145;
|
|
2679
|
+
ValidatorPrefsTo196: ValidatorPrefsTo196;
|
|
2680
|
+
ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;
|
|
2681
|
+
ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;
|
|
2682
|
+
ValidatorSet: ValidatorSet;
|
|
2683
|
+
ValidatorSetId: ValidatorSetId;
|
|
2684
|
+
ValidatorSignature: ValidatorSignature;
|
|
2685
|
+
ValidDisputeStatementKind: ValidDisputeStatementKind;
|
|
2686
|
+
ValidityAttestation: ValidityAttestation;
|
|
2687
|
+
ValidTransaction: ValidTransaction;
|
|
2688
|
+
ValuePropId: ValuePropId;
|
|
2689
|
+
ValueProposition: ValueProposition;
|
|
2690
|
+
ValuePropositionWithId: ValuePropositionWithId;
|
|
2691
|
+
VariantDeprecationInfoV16: VariantDeprecationInfoV16;
|
|
2692
|
+
VecInboundHrmpMessage: VecInboundHrmpMessage;
|
|
2693
|
+
VersionedMultiAsset: VersionedMultiAsset;
|
|
2694
|
+
VersionedMultiAssets: VersionedMultiAssets;
|
|
2695
|
+
VersionedMultiLocation: VersionedMultiLocation;
|
|
2696
|
+
VersionedResponse: VersionedResponse;
|
|
2697
|
+
VersionedXcm: VersionedXcm;
|
|
2698
|
+
VersionMigrationStage: VersionMigrationStage;
|
|
2699
|
+
VersionV3: VersionV3;
|
|
2700
|
+
VersionV4: VersionV4;
|
|
2701
|
+
VestingInfo: VestingInfo;
|
|
2702
|
+
VestingSchedule: VestingSchedule;
|
|
2703
|
+
Vote: Vote;
|
|
2704
|
+
VoteIndex: VoteIndex;
|
|
2705
|
+
Voter: Voter;
|
|
2706
|
+
VoterInfo: VoterInfo;
|
|
2707
|
+
Votes: Votes;
|
|
2708
|
+
VotesTo230: VotesTo230;
|
|
2709
|
+
VoteThreshold: VoteThreshold;
|
|
2710
|
+
VoteWeight: VoteWeight;
|
|
2711
|
+
Voting: Voting;
|
|
2712
|
+
VotingDelegating: VotingDelegating;
|
|
2713
|
+
VotingDirect: VotingDirect;
|
|
2714
|
+
VotingDirectVote: VotingDirectVote;
|
|
2715
|
+
VouchingStatus: VouchingStatus;
|
|
2716
|
+
VrfData: VrfData;
|
|
2717
|
+
VrfOutput: VrfOutput;
|
|
2718
|
+
VrfProof: VrfProof;
|
|
2719
|
+
Weight: Weight;
|
|
2720
|
+
WeightLimitV2: WeightLimitV2;
|
|
2721
|
+
WeightLimitV3: WeightLimitV3;
|
|
2722
|
+
WeightMultiplier: WeightMultiplier;
|
|
2723
|
+
WeightPerClass: WeightPerClass;
|
|
2724
|
+
WeightToFeeCoefficient: WeightToFeeCoefficient;
|
|
2725
|
+
WeightV0: WeightV0;
|
|
2726
|
+
WeightV1: WeightV1;
|
|
2727
|
+
WeightV2: WeightV2;
|
|
2728
|
+
WildFungibility: WildFungibility;
|
|
2729
|
+
WildFungibilityV0: WildFungibilityV0;
|
|
2730
|
+
WildFungibilityV1: WildFungibilityV1;
|
|
2731
|
+
WildFungibilityV2: WildFungibilityV2;
|
|
2732
|
+
WildFungibilityV3: WildFungibilityV3;
|
|
2733
|
+
WildFungibilityV4: WildFungibilityV4;
|
|
2734
|
+
WildFungibilityV5: WildFungibilityV5;
|
|
2735
|
+
WildMultiAsset: WildMultiAsset;
|
|
2736
|
+
WildMultiAssetV1: WildMultiAssetV1;
|
|
2737
|
+
WildMultiAssetV2: WildMultiAssetV2;
|
|
2738
|
+
WildMultiAssetV3: WildMultiAssetV3;
|
|
2739
|
+
WildMultiAssetV4: WildMultiAssetV4;
|
|
2740
|
+
WildMultiAssetV5: WildMultiAssetV5;
|
|
2741
|
+
WinnersData: WinnersData;
|
|
2742
|
+
WinnersData10: WinnersData10;
|
|
2743
|
+
WinnersDataTuple: WinnersDataTuple;
|
|
2744
|
+
WinnersDataTuple10: WinnersDataTuple10;
|
|
2745
|
+
WinningData: WinningData;
|
|
2746
|
+
WinningData10: WinningData10;
|
|
2747
|
+
WinningDataEntry: WinningDataEntry;
|
|
2748
|
+
WithdrawReasons: WithdrawReasons;
|
|
2749
|
+
Xcm: Xcm;
|
|
2750
|
+
XcmAssetId: XcmAssetId;
|
|
2751
|
+
XcmDryRunApiError: XcmDryRunApiError;
|
|
2752
|
+
XcmDryRunEffects: XcmDryRunEffects;
|
|
2753
|
+
XcmError: XcmError;
|
|
2754
|
+
XcmErrorV0: XcmErrorV0;
|
|
2755
|
+
XcmErrorV1: XcmErrorV1;
|
|
2756
|
+
XcmErrorV2: XcmErrorV2;
|
|
2757
|
+
XcmErrorV3: XcmErrorV3;
|
|
2758
|
+
XcmErrorV4: XcmErrorV4;
|
|
2759
|
+
XcmErrorV5: XcmErrorV5;
|
|
2760
|
+
XcmOrderV0: XcmOrderV0;
|
|
2761
|
+
XcmOrderV1: XcmOrderV1;
|
|
2762
|
+
XcmOrigin: XcmOrigin;
|
|
2763
|
+
XcmOriginKind: XcmOriginKind;
|
|
2764
|
+
XcmPaymentApiError: XcmPaymentApiError;
|
|
2765
|
+
XcmpMessageFormat: XcmpMessageFormat;
|
|
2766
|
+
XcmV0: XcmV0;
|
|
2767
|
+
XcmV1: XcmV1;
|
|
2768
|
+
XcmV2: XcmV2;
|
|
2769
|
+
XcmV3: XcmV3;
|
|
2770
|
+
XcmV4: XcmV4;
|
|
2771
|
+
XcmV5: XcmV5;
|
|
2772
|
+
XcmVersion: XcmVersion;
|
|
2773
|
+
} // InterfaceTypes
|
|
2774
|
+
} // declare module
|