@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "@polkadot/types/lookup";
|
|
2
2
|
import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec";
|
|
3
3
|
import type { ITuple } from "@polkadot/types-codec/types";
|
|
4
|
-
import type { AccountId32, Call, H256, MultiAddress } from "@polkadot/types/interfaces/runtime";
|
|
4
|
+
import type { AccountId32, Call, H256, MultiAddress, Perbill } from "@polkadot/types/interfaces/runtime";
|
|
5
5
|
import type { Event } from "@polkadot/types/interfaces/system";
|
|
6
6
|
declare module "@polkadot/types/lookup" {
|
|
7
7
|
/** @name FrameSystemAccountInfo (3) */
|
|
@@ -57,12 +57,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
57
57
|
interface FrameSystemEvent extends Enum {
|
|
58
58
|
readonly isExtrinsicSuccess: boolean;
|
|
59
59
|
readonly asExtrinsicSuccess: {
|
|
60
|
-
readonly dispatchInfo:
|
|
60
|
+
readonly dispatchInfo: FrameSystemDispatchEventInfo;
|
|
61
61
|
} & Struct;
|
|
62
62
|
readonly isExtrinsicFailed: boolean;
|
|
63
63
|
readonly asExtrinsicFailed: {
|
|
64
64
|
readonly dispatchError: SpRuntimeDispatchError;
|
|
65
|
-
readonly dispatchInfo:
|
|
65
|
+
readonly dispatchInfo: FrameSystemDispatchEventInfo;
|
|
66
66
|
} & Struct;
|
|
67
67
|
readonly isCodeUpdated: boolean;
|
|
68
68
|
readonly isNewAccount: boolean;
|
|
@@ -85,8 +85,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
85
85
|
} & Struct;
|
|
86
86
|
readonly type: "ExtrinsicSuccess" | "ExtrinsicFailed" | "CodeUpdated" | "NewAccount" | "KilledAccount" | "Remarked" | "UpgradeAuthorized";
|
|
87
87
|
}
|
|
88
|
-
/** @name
|
|
89
|
-
interface
|
|
88
|
+
/** @name FrameSystemDispatchEventInfo (23) */
|
|
89
|
+
interface FrameSystemDispatchEventInfo extends Struct {
|
|
90
90
|
readonly weight: SpWeightsWeightV2Weight;
|
|
91
91
|
readonly class: FrameSupportDispatchDispatchClass;
|
|
92
92
|
readonly paysFee: FrameSupportDispatchPays;
|
|
@@ -124,7 +124,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
124
124
|
readonly isCorruption: boolean;
|
|
125
125
|
readonly isUnavailable: boolean;
|
|
126
126
|
readonly isRootNotAllowed: boolean;
|
|
127
|
-
readonly
|
|
127
|
+
readonly isTrie: boolean;
|
|
128
|
+
readonly asTrie: SpRuntimeProvingTrieTrieError;
|
|
129
|
+
readonly type: "Other" | "CannotLookup" | "BadOrigin" | "Module" | "ConsumerRemaining" | "NoProviders" | "TooManyConsumers" | "Token" | "Arithmetic" | "Transactional" | "Exhausted" | "Corruption" | "Unavailable" | "RootNotAllowed" | "Trie";
|
|
128
130
|
}
|
|
129
131
|
/** @name SpRuntimeModuleError (27) */
|
|
130
132
|
interface SpRuntimeModuleError extends Struct {
|
|
@@ -158,7 +160,25 @@ declare module "@polkadot/types/lookup" {
|
|
|
158
160
|
readonly isNoLayer: boolean;
|
|
159
161
|
readonly type: "LimitReached" | "NoLayer";
|
|
160
162
|
}
|
|
161
|
-
/** @name
|
|
163
|
+
/** @name SpRuntimeProvingTrieTrieError (31) */
|
|
164
|
+
interface SpRuntimeProvingTrieTrieError extends Enum {
|
|
165
|
+
readonly isInvalidStateRoot: boolean;
|
|
166
|
+
readonly isIncompleteDatabase: boolean;
|
|
167
|
+
readonly isValueAtIncompleteKey: boolean;
|
|
168
|
+
readonly isDecoderError: boolean;
|
|
169
|
+
readonly isInvalidHash: boolean;
|
|
170
|
+
readonly isDuplicateKey: boolean;
|
|
171
|
+
readonly isExtraneousNode: boolean;
|
|
172
|
+
readonly isExtraneousValue: boolean;
|
|
173
|
+
readonly isExtraneousHashReference: boolean;
|
|
174
|
+
readonly isInvalidChildReference: boolean;
|
|
175
|
+
readonly isValueMismatch: boolean;
|
|
176
|
+
readonly isIncompleteProof: boolean;
|
|
177
|
+
readonly isRootMismatch: boolean;
|
|
178
|
+
readonly isDecodeError: boolean;
|
|
179
|
+
readonly type: "InvalidStateRoot" | "IncompleteDatabase" | "ValueAtIncompleteKey" | "DecoderError" | "InvalidHash" | "DuplicateKey" | "ExtraneousNode" | "ExtraneousValue" | "ExtraneousHashReference" | "InvalidChildReference" | "ValueMismatch" | "IncompleteProof" | "RootMismatch" | "DecodeError";
|
|
180
|
+
}
|
|
181
|
+
/** @name CumulusPalletParachainSystemEvent (32) */
|
|
162
182
|
interface CumulusPalletParachainSystemEvent extends Enum {
|
|
163
183
|
readonly isValidationFunctionStored: boolean;
|
|
164
184
|
readonly isValidationFunctionApplied: boolean;
|
|
@@ -181,7 +201,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
181
201
|
} & Struct;
|
|
182
202
|
readonly type: "ValidationFunctionStored" | "ValidationFunctionApplied" | "ValidationFunctionDiscarded" | "DownwardMessagesReceived" | "DownwardMessagesProcessed" | "UpwardMessageSent";
|
|
183
203
|
}
|
|
184
|
-
/** @name PalletBalancesEvent (
|
|
204
|
+
/** @name PalletBalancesEvent (34) */
|
|
185
205
|
interface PalletBalancesEvent extends Enum {
|
|
186
206
|
readonly isEndowed: boolean;
|
|
187
207
|
readonly asEndowed: {
|
|
@@ -295,13 +315,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
295
315
|
} & Struct;
|
|
296
316
|
readonly type: "Endowed" | "DustLost" | "Transfer" | "BalanceSet" | "Reserved" | "Unreserved" | "ReserveRepatriated" | "Deposit" | "Withdraw" | "Slashed" | "Minted" | "Burned" | "Suspended" | "Restored" | "Upgraded" | "Issued" | "Rescinded" | "Locked" | "Unlocked" | "Frozen" | "Thawed" | "TotalIssuanceForced";
|
|
297
317
|
}
|
|
298
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
318
|
+
/** @name FrameSupportTokensMiscBalanceStatus (35) */
|
|
299
319
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
300
320
|
readonly isFree: boolean;
|
|
301
321
|
readonly isReserved: boolean;
|
|
302
322
|
readonly type: "Free" | "Reserved";
|
|
303
323
|
}
|
|
304
|
-
/** @name PalletTransactionPaymentEvent (
|
|
324
|
+
/** @name PalletTransactionPaymentEvent (36) */
|
|
305
325
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
306
326
|
readonly isTransactionFeePaid: boolean;
|
|
307
327
|
readonly asTransactionFeePaid: {
|
|
@@ -311,7 +331,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
311
331
|
} & Struct;
|
|
312
332
|
readonly type: "TransactionFeePaid";
|
|
313
333
|
}
|
|
314
|
-
/** @name PalletSudoEvent (
|
|
334
|
+
/** @name PalletSudoEvent (37) */
|
|
315
335
|
interface PalletSudoEvent extends Enum {
|
|
316
336
|
readonly isSudid: boolean;
|
|
317
337
|
readonly asSudid: {
|
|
@@ -329,7 +349,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
329
349
|
} & Struct;
|
|
330
350
|
readonly type: "Sudid" | "KeyChanged" | "KeyRemoved" | "SudoAsDone";
|
|
331
351
|
}
|
|
332
|
-
/** @name PalletCollatorSelectionEvent (
|
|
352
|
+
/** @name PalletCollatorSelectionEvent (41) */
|
|
333
353
|
interface PalletCollatorSelectionEvent extends Enum {
|
|
334
354
|
readonly isNewInvulnerables: boolean;
|
|
335
355
|
readonly asNewInvulnerables: {
|
|
@@ -377,7 +397,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
377
397
|
} & Struct;
|
|
378
398
|
readonly type: "NewInvulnerables" | "InvulnerableAdded" | "InvulnerableRemoved" | "NewDesiredCandidates" | "NewCandidacyBond" | "CandidateAdded" | "CandidateBondUpdated" | "CandidateRemoved" | "CandidateReplaced" | "InvalidInvulnerableSkipped";
|
|
379
399
|
}
|
|
380
|
-
/** @name PalletSessionEvent (
|
|
400
|
+
/** @name PalletSessionEvent (43) */
|
|
381
401
|
interface PalletSessionEvent extends Enum {
|
|
382
402
|
readonly isNewSession: boolean;
|
|
383
403
|
readonly asNewSession: {
|
|
@@ -385,7 +405,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
385
405
|
} & Struct;
|
|
386
406
|
readonly type: "NewSession";
|
|
387
407
|
}
|
|
388
|
-
/** @name CumulusPalletXcmpQueueEvent (
|
|
408
|
+
/** @name CumulusPalletXcmpQueueEvent (44) */
|
|
389
409
|
interface CumulusPalletXcmpQueueEvent extends Enum {
|
|
390
410
|
readonly isXcmpMessageSent: boolean;
|
|
391
411
|
readonly asXcmpMessageSent: {
|
|
@@ -393,28 +413,28 @@ declare module "@polkadot/types/lookup" {
|
|
|
393
413
|
} & Struct;
|
|
394
414
|
readonly type: "XcmpMessageSent";
|
|
395
415
|
}
|
|
396
|
-
/** @name PalletXcmEvent (
|
|
416
|
+
/** @name PalletXcmEvent (45) */
|
|
397
417
|
interface PalletXcmEvent extends Enum {
|
|
398
418
|
readonly isAttempted: boolean;
|
|
399
419
|
readonly asAttempted: {
|
|
400
|
-
readonly outcome:
|
|
420
|
+
readonly outcome: StagingXcmV5TraitsOutcome;
|
|
401
421
|
} & Struct;
|
|
402
422
|
readonly isSent: boolean;
|
|
403
423
|
readonly asSent: {
|
|
404
|
-
readonly origin:
|
|
405
|
-
readonly destination:
|
|
406
|
-
readonly message:
|
|
424
|
+
readonly origin: StagingXcmV5Location;
|
|
425
|
+
readonly destination: StagingXcmV5Location;
|
|
426
|
+
readonly message: StagingXcmV5Xcm;
|
|
407
427
|
readonly messageId: U8aFixed;
|
|
408
428
|
} & Struct;
|
|
409
429
|
readonly isUnexpectedResponse: boolean;
|
|
410
430
|
readonly asUnexpectedResponse: {
|
|
411
|
-
readonly origin:
|
|
431
|
+
readonly origin: StagingXcmV5Location;
|
|
412
432
|
readonly queryId: u64;
|
|
413
433
|
} & Struct;
|
|
414
434
|
readonly isResponseReady: boolean;
|
|
415
435
|
readonly asResponseReady: {
|
|
416
436
|
readonly queryId: u64;
|
|
417
|
-
readonly response:
|
|
437
|
+
readonly response: StagingXcmV5Response;
|
|
418
438
|
} & Struct;
|
|
419
439
|
readonly isNotified: boolean;
|
|
420
440
|
readonly asNotified: {
|
|
@@ -444,13 +464,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
444
464
|
} & Struct;
|
|
445
465
|
readonly isInvalidResponder: boolean;
|
|
446
466
|
readonly asInvalidResponder: {
|
|
447
|
-
readonly origin:
|
|
467
|
+
readonly origin: StagingXcmV5Location;
|
|
448
468
|
readonly queryId: u64;
|
|
449
|
-
readonly expectedLocation: Option<
|
|
469
|
+
readonly expectedLocation: Option<StagingXcmV5Location>;
|
|
450
470
|
} & Struct;
|
|
451
471
|
readonly isInvalidResponderVersion: boolean;
|
|
452
472
|
readonly asInvalidResponderVersion: {
|
|
453
|
-
readonly origin:
|
|
473
|
+
readonly origin: StagingXcmV5Location;
|
|
454
474
|
readonly queryId: u64;
|
|
455
475
|
} & Struct;
|
|
456
476
|
readonly isResponseTaken: boolean;
|
|
@@ -460,26 +480,26 @@ declare module "@polkadot/types/lookup" {
|
|
|
460
480
|
readonly isAssetsTrapped: boolean;
|
|
461
481
|
readonly asAssetsTrapped: {
|
|
462
482
|
readonly hash_: H256;
|
|
463
|
-
readonly origin:
|
|
483
|
+
readonly origin: StagingXcmV5Location;
|
|
464
484
|
readonly assets: XcmVersionedAssets;
|
|
465
485
|
} & Struct;
|
|
466
486
|
readonly isVersionChangeNotified: boolean;
|
|
467
487
|
readonly asVersionChangeNotified: {
|
|
468
|
-
readonly destination:
|
|
488
|
+
readonly destination: StagingXcmV5Location;
|
|
469
489
|
readonly result: u32;
|
|
470
|
-
readonly cost:
|
|
490
|
+
readonly cost: StagingXcmV5AssetAssets;
|
|
471
491
|
readonly messageId: U8aFixed;
|
|
472
492
|
} & Struct;
|
|
473
493
|
readonly isSupportedVersionChanged: boolean;
|
|
474
494
|
readonly asSupportedVersionChanged: {
|
|
475
|
-
readonly location:
|
|
495
|
+
readonly location: StagingXcmV5Location;
|
|
476
496
|
readonly version: u32;
|
|
477
497
|
} & Struct;
|
|
478
498
|
readonly isNotifyTargetSendFail: boolean;
|
|
479
499
|
readonly asNotifyTargetSendFail: {
|
|
480
|
-
readonly location:
|
|
500
|
+
readonly location: StagingXcmV5Location;
|
|
481
501
|
readonly queryId: u64;
|
|
482
|
-
readonly error:
|
|
502
|
+
readonly error: XcmV5TraitsError;
|
|
483
503
|
} & Struct;
|
|
484
504
|
readonly isNotifyTargetMigrationFail: boolean;
|
|
485
505
|
readonly asNotifyTargetMigrationFail: {
|
|
@@ -488,43 +508,43 @@ declare module "@polkadot/types/lookup" {
|
|
|
488
508
|
} & Struct;
|
|
489
509
|
readonly isInvalidQuerierVersion: boolean;
|
|
490
510
|
readonly asInvalidQuerierVersion: {
|
|
491
|
-
readonly origin:
|
|
511
|
+
readonly origin: StagingXcmV5Location;
|
|
492
512
|
readonly queryId: u64;
|
|
493
513
|
} & Struct;
|
|
494
514
|
readonly isInvalidQuerier: boolean;
|
|
495
515
|
readonly asInvalidQuerier: {
|
|
496
|
-
readonly origin:
|
|
516
|
+
readonly origin: StagingXcmV5Location;
|
|
497
517
|
readonly queryId: u64;
|
|
498
|
-
readonly expectedQuerier:
|
|
499
|
-
readonly maybeActualQuerier: Option<
|
|
518
|
+
readonly expectedQuerier: StagingXcmV5Location;
|
|
519
|
+
readonly maybeActualQuerier: Option<StagingXcmV5Location>;
|
|
500
520
|
} & Struct;
|
|
501
521
|
readonly isVersionNotifyStarted: boolean;
|
|
502
522
|
readonly asVersionNotifyStarted: {
|
|
503
|
-
readonly destination:
|
|
504
|
-
readonly cost:
|
|
523
|
+
readonly destination: StagingXcmV5Location;
|
|
524
|
+
readonly cost: StagingXcmV5AssetAssets;
|
|
505
525
|
readonly messageId: U8aFixed;
|
|
506
526
|
} & Struct;
|
|
507
527
|
readonly isVersionNotifyRequested: boolean;
|
|
508
528
|
readonly asVersionNotifyRequested: {
|
|
509
|
-
readonly destination:
|
|
510
|
-
readonly cost:
|
|
529
|
+
readonly destination: StagingXcmV5Location;
|
|
530
|
+
readonly cost: StagingXcmV5AssetAssets;
|
|
511
531
|
readonly messageId: U8aFixed;
|
|
512
532
|
} & Struct;
|
|
513
533
|
readonly isVersionNotifyUnrequested: boolean;
|
|
514
534
|
readonly asVersionNotifyUnrequested: {
|
|
515
|
-
readonly destination:
|
|
516
|
-
readonly cost:
|
|
535
|
+
readonly destination: StagingXcmV5Location;
|
|
536
|
+
readonly cost: StagingXcmV5AssetAssets;
|
|
517
537
|
readonly messageId: U8aFixed;
|
|
518
538
|
} & Struct;
|
|
519
539
|
readonly isFeesPaid: boolean;
|
|
520
540
|
readonly asFeesPaid: {
|
|
521
|
-
readonly paying:
|
|
522
|
-
readonly fees:
|
|
541
|
+
readonly paying: StagingXcmV5Location;
|
|
542
|
+
readonly fees: StagingXcmV5AssetAssets;
|
|
523
543
|
} & Struct;
|
|
524
544
|
readonly isAssetsClaimed: boolean;
|
|
525
545
|
readonly asAssetsClaimed: {
|
|
526
546
|
readonly hash_: H256;
|
|
527
|
-
readonly origin:
|
|
547
|
+
readonly origin: StagingXcmV5Location;
|
|
528
548
|
readonly assets: XcmVersionedAssets;
|
|
529
549
|
} & Struct;
|
|
530
550
|
readonly isVersionMigrationFinished: boolean;
|
|
@@ -533,8 +553,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
533
553
|
} & Struct;
|
|
534
554
|
readonly type: "Attempted" | "Sent" | "UnexpectedResponse" | "ResponseReady" | "Notified" | "NotifyOverweight" | "NotifyDispatchError" | "NotifyDecodeFailed" | "InvalidResponder" | "InvalidResponderVersion" | "ResponseTaken" | "AssetsTrapped" | "VersionChangeNotified" | "SupportedVersionChanged" | "NotifyTargetSendFail" | "NotifyTargetMigrationFail" | "InvalidQuerierVersion" | "InvalidQuerier" | "VersionNotifyStarted" | "VersionNotifyRequested" | "VersionNotifyUnrequested" | "FeesPaid" | "AssetsClaimed" | "VersionMigrationFinished";
|
|
535
555
|
}
|
|
536
|
-
/** @name
|
|
537
|
-
interface
|
|
556
|
+
/** @name StagingXcmV5TraitsOutcome (46) */
|
|
557
|
+
interface StagingXcmV5TraitsOutcome extends Enum {
|
|
538
558
|
readonly isComplete: boolean;
|
|
539
559
|
readonly asComplete: {
|
|
540
560
|
readonly used: SpWeightsWeightV2Weight;
|
|
@@ -542,16 +562,16 @@ declare module "@polkadot/types/lookup" {
|
|
|
542
562
|
readonly isIncomplete: boolean;
|
|
543
563
|
readonly asIncomplete: {
|
|
544
564
|
readonly used: SpWeightsWeightV2Weight;
|
|
545
|
-
readonly error:
|
|
565
|
+
readonly error: XcmV5TraitsError;
|
|
546
566
|
} & Struct;
|
|
547
567
|
readonly isError: boolean;
|
|
548
568
|
readonly asError: {
|
|
549
|
-
readonly error:
|
|
569
|
+
readonly error: XcmV5TraitsError;
|
|
550
570
|
} & Struct;
|
|
551
571
|
readonly type: "Complete" | "Incomplete" | "Error";
|
|
552
572
|
}
|
|
553
|
-
/** @name
|
|
554
|
-
interface
|
|
573
|
+
/** @name XcmV5TraitsError (47) */
|
|
574
|
+
interface XcmV5TraitsError extends Enum {
|
|
555
575
|
readonly isOverflow: boolean;
|
|
556
576
|
readonly isUnimplemented: boolean;
|
|
557
577
|
readonly isUntrustedReserveLocation: boolean;
|
|
@@ -588,57 +608,58 @@ declare module "@polkadot/types/lookup" {
|
|
|
588
608
|
readonly isNoPermission: boolean;
|
|
589
609
|
readonly isUnanchored: boolean;
|
|
590
610
|
readonly isNotDepositable: boolean;
|
|
611
|
+
readonly isTooManyAssets: boolean;
|
|
591
612
|
readonly isUnhandledXcmVersion: boolean;
|
|
592
613
|
readonly isWeightLimitReached: boolean;
|
|
593
614
|
readonly asWeightLimitReached: SpWeightsWeightV2Weight;
|
|
594
615
|
readonly isBarrier: boolean;
|
|
595
616
|
readonly isWeightNotComputable: boolean;
|
|
596
617
|
readonly isExceedsStackLimit: boolean;
|
|
597
|
-
readonly type: "Overflow" | "Unimplemented" | "UntrustedReserveLocation" | "UntrustedTeleportLocation" | "LocationFull" | "LocationNotInvertible" | "BadOrigin" | "InvalidLocation" | "AssetNotFound" | "FailedToTransactAsset" | "NotWithdrawable" | "LocationCannotHold" | "ExceedsMaxMessageSize" | "DestinationUnsupported" | "Transport" | "Unroutable" | "UnknownClaim" | "FailedToDecode" | "MaxWeightInvalid" | "NotHoldingFees" | "TooExpensive" | "Trap" | "ExpectationFalse" | "PalletNotFound" | "NameMismatch" | "VersionIncompatible" | "HoldingWouldOverflow" | "ExportError" | "ReanchorFailed" | "NoDeal" | "FeesNotMet" | "LockError" | "NoPermission" | "Unanchored" | "NotDepositable" | "UnhandledXcmVersion" | "WeightLimitReached" | "Barrier" | "WeightNotComputable" | "ExceedsStackLimit";
|
|
618
|
+
readonly type: "Overflow" | "Unimplemented" | "UntrustedReserveLocation" | "UntrustedTeleportLocation" | "LocationFull" | "LocationNotInvertible" | "BadOrigin" | "InvalidLocation" | "AssetNotFound" | "FailedToTransactAsset" | "NotWithdrawable" | "LocationCannotHold" | "ExceedsMaxMessageSize" | "DestinationUnsupported" | "Transport" | "Unroutable" | "UnknownClaim" | "FailedToDecode" | "MaxWeightInvalid" | "NotHoldingFees" | "TooExpensive" | "Trap" | "ExpectationFalse" | "PalletNotFound" | "NameMismatch" | "VersionIncompatible" | "HoldingWouldOverflow" | "ExportError" | "ReanchorFailed" | "NoDeal" | "FeesNotMet" | "LockError" | "NoPermission" | "Unanchored" | "NotDepositable" | "TooManyAssets" | "UnhandledXcmVersion" | "WeightLimitReached" | "Barrier" | "WeightNotComputable" | "ExceedsStackLimit";
|
|
598
619
|
}
|
|
599
|
-
/** @name
|
|
600
|
-
interface
|
|
620
|
+
/** @name StagingXcmV5Location (48) */
|
|
621
|
+
interface StagingXcmV5Location extends Struct {
|
|
601
622
|
readonly parents: u8;
|
|
602
|
-
readonly interior:
|
|
623
|
+
readonly interior: StagingXcmV5Junctions;
|
|
603
624
|
}
|
|
604
|
-
/** @name
|
|
605
|
-
interface
|
|
625
|
+
/** @name StagingXcmV5Junctions (49) */
|
|
626
|
+
interface StagingXcmV5Junctions extends Enum {
|
|
606
627
|
readonly isHere: boolean;
|
|
607
628
|
readonly isX1: boolean;
|
|
608
|
-
readonly asX1:
|
|
629
|
+
readonly asX1: Vec<StagingXcmV5Junction>;
|
|
609
630
|
readonly isX2: boolean;
|
|
610
|
-
readonly asX2:
|
|
631
|
+
readonly asX2: Vec<StagingXcmV5Junction>;
|
|
611
632
|
readonly isX3: boolean;
|
|
612
|
-
readonly asX3:
|
|
633
|
+
readonly asX3: Vec<StagingXcmV5Junction>;
|
|
613
634
|
readonly isX4: boolean;
|
|
614
|
-
readonly asX4:
|
|
635
|
+
readonly asX4: Vec<StagingXcmV5Junction>;
|
|
615
636
|
readonly isX5: boolean;
|
|
616
|
-
readonly asX5:
|
|
637
|
+
readonly asX5: Vec<StagingXcmV5Junction>;
|
|
617
638
|
readonly isX6: boolean;
|
|
618
|
-
readonly asX6:
|
|
639
|
+
readonly asX6: Vec<StagingXcmV5Junction>;
|
|
619
640
|
readonly isX7: boolean;
|
|
620
|
-
readonly asX7:
|
|
641
|
+
readonly asX7: Vec<StagingXcmV5Junction>;
|
|
621
642
|
readonly isX8: boolean;
|
|
622
|
-
readonly asX8:
|
|
643
|
+
readonly asX8: Vec<StagingXcmV5Junction>;
|
|
623
644
|
readonly type: "Here" | "X1" | "X2" | "X3" | "X4" | "X5" | "X6" | "X7" | "X8";
|
|
624
645
|
}
|
|
625
|
-
/** @name
|
|
626
|
-
interface
|
|
646
|
+
/** @name StagingXcmV5Junction (51) */
|
|
647
|
+
interface StagingXcmV5Junction extends Enum {
|
|
627
648
|
readonly isParachain: boolean;
|
|
628
649
|
readonly asParachain: Compact<u32>;
|
|
629
650
|
readonly isAccountId32: boolean;
|
|
630
651
|
readonly asAccountId32: {
|
|
631
|
-
readonly network: Option<
|
|
652
|
+
readonly network: Option<StagingXcmV5JunctionNetworkId>;
|
|
632
653
|
readonly id: U8aFixed;
|
|
633
654
|
} & Struct;
|
|
634
655
|
readonly isAccountIndex64: boolean;
|
|
635
656
|
readonly asAccountIndex64: {
|
|
636
|
-
readonly network: Option<
|
|
657
|
+
readonly network: Option<StagingXcmV5JunctionNetworkId>;
|
|
637
658
|
readonly index: Compact<u64>;
|
|
638
659
|
} & Struct;
|
|
639
660
|
readonly isAccountKey20: boolean;
|
|
640
661
|
readonly asAccountKey20: {
|
|
641
|
-
readonly network: Option<
|
|
662
|
+
readonly network: Option<StagingXcmV5JunctionNetworkId>;
|
|
642
663
|
readonly key: U8aFixed;
|
|
643
664
|
} & Struct;
|
|
644
665
|
readonly isPalletInstance: boolean;
|
|
@@ -657,11 +678,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
657
678
|
readonly part: XcmV3JunctionBodyPart;
|
|
658
679
|
} & Struct;
|
|
659
680
|
readonly isGlobalConsensus: boolean;
|
|
660
|
-
readonly asGlobalConsensus:
|
|
681
|
+
readonly asGlobalConsensus: StagingXcmV5JunctionNetworkId;
|
|
661
682
|
readonly type: "Parachain" | "AccountId32" | "AccountIndex64" | "AccountKey20" | "PalletInstance" | "GeneralIndex" | "GeneralKey" | "OnlyChild" | "Plurality" | "GlobalConsensus";
|
|
662
683
|
}
|
|
663
|
-
/** @name
|
|
664
|
-
interface
|
|
684
|
+
/** @name StagingXcmV5JunctionNetworkId (54) */
|
|
685
|
+
interface StagingXcmV5JunctionNetworkId extends Enum {
|
|
665
686
|
readonly isByGenesis: boolean;
|
|
666
687
|
readonly asByGenesis: U8aFixed;
|
|
667
688
|
readonly isByFork: boolean;
|
|
@@ -671,9 +692,6 @@ declare module "@polkadot/types/lookup" {
|
|
|
671
692
|
} & Struct;
|
|
672
693
|
readonly isPolkadot: boolean;
|
|
673
694
|
readonly isKusama: boolean;
|
|
674
|
-
readonly isWestend: boolean;
|
|
675
|
-
readonly isRococo: boolean;
|
|
676
|
-
readonly isWococo: boolean;
|
|
677
695
|
readonly isEthereum: boolean;
|
|
678
696
|
readonly asEthereum: {
|
|
679
697
|
readonly chainId: Compact<u64>;
|
|
@@ -681,9 +699,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
681
699
|
readonly isBitcoinCore: boolean;
|
|
682
700
|
readonly isBitcoinCash: boolean;
|
|
683
701
|
readonly isPolkadotBulletin: boolean;
|
|
684
|
-
readonly type: "ByGenesis" | "ByFork" | "Polkadot" | "Kusama" | "
|
|
702
|
+
readonly type: "ByGenesis" | "ByFork" | "Polkadot" | "Kusama" | "Ethereum" | "BitcoinCore" | "BitcoinCash" | "PolkadotBulletin";
|
|
685
703
|
}
|
|
686
|
-
/** @name XcmV3JunctionBodyId (
|
|
704
|
+
/** @name XcmV3JunctionBodyId (57) */
|
|
687
705
|
interface XcmV3JunctionBodyId extends Enum {
|
|
688
706
|
readonly isUnit: boolean;
|
|
689
707
|
readonly isMoniker: boolean;
|
|
@@ -699,7 +717,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
699
717
|
readonly isTreasury: boolean;
|
|
700
718
|
readonly type: "Unit" | "Moniker" | "Index" | "Executive" | "Technical" | "Legislative" | "Judicial" | "Defense" | "Administration" | "Treasury";
|
|
701
719
|
}
|
|
702
|
-
/** @name XcmV3JunctionBodyPart (
|
|
720
|
+
/** @name XcmV3JunctionBodyPart (58) */
|
|
703
721
|
interface XcmV3JunctionBodyPart extends Enum {
|
|
704
722
|
readonly isVoice: boolean;
|
|
705
723
|
readonly isMembers: boolean;
|
|
@@ -723,39 +741,39 @@ declare module "@polkadot/types/lookup" {
|
|
|
723
741
|
} & Struct;
|
|
724
742
|
readonly type: "Voice" | "Members" | "Fraction" | "AtLeastProportion" | "MoreThanProportion";
|
|
725
743
|
}
|
|
726
|
-
/** @name
|
|
727
|
-
interface
|
|
744
|
+
/** @name StagingXcmV5Xcm (66) */
|
|
745
|
+
interface StagingXcmV5Xcm extends Vec<StagingXcmV5Instruction> {
|
|
728
746
|
}
|
|
729
|
-
/** @name
|
|
730
|
-
interface
|
|
747
|
+
/** @name StagingXcmV5Instruction (68) */
|
|
748
|
+
interface StagingXcmV5Instruction extends Enum {
|
|
731
749
|
readonly isWithdrawAsset: boolean;
|
|
732
|
-
readonly asWithdrawAsset:
|
|
750
|
+
readonly asWithdrawAsset: StagingXcmV5AssetAssets;
|
|
733
751
|
readonly isReserveAssetDeposited: boolean;
|
|
734
|
-
readonly asReserveAssetDeposited:
|
|
752
|
+
readonly asReserveAssetDeposited: StagingXcmV5AssetAssets;
|
|
735
753
|
readonly isReceiveTeleportedAsset: boolean;
|
|
736
|
-
readonly asReceiveTeleportedAsset:
|
|
754
|
+
readonly asReceiveTeleportedAsset: StagingXcmV5AssetAssets;
|
|
737
755
|
readonly isQueryResponse: boolean;
|
|
738
756
|
readonly asQueryResponse: {
|
|
739
757
|
readonly queryId: Compact<u64>;
|
|
740
|
-
readonly response:
|
|
758
|
+
readonly response: StagingXcmV5Response;
|
|
741
759
|
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
742
|
-
readonly querier: Option<
|
|
760
|
+
readonly querier: Option<StagingXcmV5Location>;
|
|
743
761
|
} & Struct;
|
|
744
762
|
readonly isTransferAsset: boolean;
|
|
745
763
|
readonly asTransferAsset: {
|
|
746
|
-
readonly assets:
|
|
747
|
-
readonly beneficiary:
|
|
764
|
+
readonly assets: StagingXcmV5AssetAssets;
|
|
765
|
+
readonly beneficiary: StagingXcmV5Location;
|
|
748
766
|
} & Struct;
|
|
749
767
|
readonly isTransferReserveAsset: boolean;
|
|
750
768
|
readonly asTransferReserveAsset: {
|
|
751
|
-
readonly assets:
|
|
752
|
-
readonly dest:
|
|
753
|
-
readonly xcm:
|
|
769
|
+
readonly assets: StagingXcmV5AssetAssets;
|
|
770
|
+
readonly dest: StagingXcmV5Location;
|
|
771
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
754
772
|
} & Struct;
|
|
755
773
|
readonly isTransact: boolean;
|
|
756
774
|
readonly asTransact: {
|
|
757
775
|
readonly originKind: XcmV3OriginKind;
|
|
758
|
-
readonly
|
|
776
|
+
readonly fallbackMaxWeight: Option<SpWeightsWeightV2Weight>;
|
|
759
777
|
readonly call: XcmDoubleEncoded;
|
|
760
778
|
} & Struct;
|
|
761
779
|
readonly isHrmpNewChannelOpenRequest: boolean;
|
|
@@ -776,58 +794,58 @@ declare module "@polkadot/types/lookup" {
|
|
|
776
794
|
} & Struct;
|
|
777
795
|
readonly isClearOrigin: boolean;
|
|
778
796
|
readonly isDescendOrigin: boolean;
|
|
779
|
-
readonly asDescendOrigin:
|
|
797
|
+
readonly asDescendOrigin: StagingXcmV5Junctions;
|
|
780
798
|
readonly isReportError: boolean;
|
|
781
|
-
readonly asReportError:
|
|
799
|
+
readonly asReportError: StagingXcmV5QueryResponseInfo;
|
|
782
800
|
readonly isDepositAsset: boolean;
|
|
783
801
|
readonly asDepositAsset: {
|
|
784
|
-
readonly assets:
|
|
785
|
-
readonly beneficiary:
|
|
802
|
+
readonly assets: StagingXcmV5AssetAssetFilter;
|
|
803
|
+
readonly beneficiary: StagingXcmV5Location;
|
|
786
804
|
} & Struct;
|
|
787
805
|
readonly isDepositReserveAsset: boolean;
|
|
788
806
|
readonly asDepositReserveAsset: {
|
|
789
|
-
readonly assets:
|
|
790
|
-
readonly dest:
|
|
791
|
-
readonly xcm:
|
|
807
|
+
readonly assets: StagingXcmV5AssetAssetFilter;
|
|
808
|
+
readonly dest: StagingXcmV5Location;
|
|
809
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
792
810
|
} & Struct;
|
|
793
811
|
readonly isExchangeAsset: boolean;
|
|
794
812
|
readonly asExchangeAsset: {
|
|
795
|
-
readonly give:
|
|
796
|
-
readonly want:
|
|
813
|
+
readonly give: StagingXcmV5AssetAssetFilter;
|
|
814
|
+
readonly want: StagingXcmV5AssetAssets;
|
|
797
815
|
readonly maximal: bool;
|
|
798
816
|
} & Struct;
|
|
799
817
|
readonly isInitiateReserveWithdraw: boolean;
|
|
800
818
|
readonly asInitiateReserveWithdraw: {
|
|
801
|
-
readonly assets:
|
|
802
|
-
readonly reserve:
|
|
803
|
-
readonly xcm:
|
|
819
|
+
readonly assets: StagingXcmV5AssetAssetFilter;
|
|
820
|
+
readonly reserve: StagingXcmV5Location;
|
|
821
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
804
822
|
} & Struct;
|
|
805
823
|
readonly isInitiateTeleport: boolean;
|
|
806
824
|
readonly asInitiateTeleport: {
|
|
807
|
-
readonly assets:
|
|
808
|
-
readonly dest:
|
|
809
|
-
readonly xcm:
|
|
825
|
+
readonly assets: StagingXcmV5AssetAssetFilter;
|
|
826
|
+
readonly dest: StagingXcmV5Location;
|
|
827
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
810
828
|
} & Struct;
|
|
811
829
|
readonly isReportHolding: boolean;
|
|
812
830
|
readonly asReportHolding: {
|
|
813
|
-
readonly responseInfo:
|
|
814
|
-
readonly assets:
|
|
831
|
+
readonly responseInfo: StagingXcmV5QueryResponseInfo;
|
|
832
|
+
readonly assets: StagingXcmV5AssetAssetFilter;
|
|
815
833
|
} & Struct;
|
|
816
834
|
readonly isBuyExecution: boolean;
|
|
817
835
|
readonly asBuyExecution: {
|
|
818
|
-
readonly fees:
|
|
836
|
+
readonly fees: StagingXcmV5Asset;
|
|
819
837
|
readonly weightLimit: XcmV3WeightLimit;
|
|
820
838
|
} & Struct;
|
|
821
839
|
readonly isRefundSurplus: boolean;
|
|
822
840
|
readonly isSetErrorHandler: boolean;
|
|
823
|
-
readonly asSetErrorHandler:
|
|
841
|
+
readonly asSetErrorHandler: StagingXcmV5Xcm;
|
|
824
842
|
readonly isSetAppendix: boolean;
|
|
825
|
-
readonly asSetAppendix:
|
|
843
|
+
readonly asSetAppendix: StagingXcmV5Xcm;
|
|
826
844
|
readonly isClearError: boolean;
|
|
827
845
|
readonly isClaimAsset: boolean;
|
|
828
846
|
readonly asClaimAsset: {
|
|
829
|
-
readonly assets:
|
|
830
|
-
readonly ticket:
|
|
847
|
+
readonly assets: StagingXcmV5AssetAssets;
|
|
848
|
+
readonly ticket: StagingXcmV5Location;
|
|
831
849
|
} & Struct;
|
|
832
850
|
readonly isTrap: boolean;
|
|
833
851
|
readonly asTrap: Compact<u64>;
|
|
@@ -838,19 +856,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
838
856
|
} & Struct;
|
|
839
857
|
readonly isUnsubscribeVersion: boolean;
|
|
840
858
|
readonly isBurnAsset: boolean;
|
|
841
|
-
readonly asBurnAsset:
|
|
859
|
+
readonly asBurnAsset: StagingXcmV5AssetAssets;
|
|
842
860
|
readonly isExpectAsset: boolean;
|
|
843
|
-
readonly asExpectAsset:
|
|
861
|
+
readonly asExpectAsset: StagingXcmV5AssetAssets;
|
|
844
862
|
readonly isExpectOrigin: boolean;
|
|
845
|
-
readonly asExpectOrigin: Option<
|
|
863
|
+
readonly asExpectOrigin: Option<StagingXcmV5Location>;
|
|
846
864
|
readonly isExpectError: boolean;
|
|
847
|
-
readonly asExpectError: Option<ITuple<[u32,
|
|
865
|
+
readonly asExpectError: Option<ITuple<[u32, XcmV5TraitsError]>>;
|
|
848
866
|
readonly isExpectTransactStatus: boolean;
|
|
849
867
|
readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
|
|
850
868
|
readonly isQueryPallet: boolean;
|
|
851
869
|
readonly asQueryPallet: {
|
|
852
870
|
readonly moduleName: Bytes;
|
|
853
|
-
readonly responseInfo:
|
|
871
|
+
readonly responseInfo: StagingXcmV5QueryResponseInfo;
|
|
854
872
|
} & Struct;
|
|
855
873
|
readonly isExpectPallet: boolean;
|
|
856
874
|
readonly asExpectPallet: {
|
|
@@ -861,35 +879,35 @@ declare module "@polkadot/types/lookup" {
|
|
|
861
879
|
readonly minCrateMinor: Compact<u32>;
|
|
862
880
|
} & Struct;
|
|
863
881
|
readonly isReportTransactStatus: boolean;
|
|
864
|
-
readonly asReportTransactStatus:
|
|
882
|
+
readonly asReportTransactStatus: StagingXcmV5QueryResponseInfo;
|
|
865
883
|
readonly isClearTransactStatus: boolean;
|
|
866
884
|
readonly isUniversalOrigin: boolean;
|
|
867
|
-
readonly asUniversalOrigin:
|
|
885
|
+
readonly asUniversalOrigin: StagingXcmV5Junction;
|
|
868
886
|
readonly isExportMessage: boolean;
|
|
869
887
|
readonly asExportMessage: {
|
|
870
|
-
readonly network:
|
|
871
|
-
readonly destination:
|
|
872
|
-
readonly xcm:
|
|
888
|
+
readonly network: StagingXcmV5JunctionNetworkId;
|
|
889
|
+
readonly destination: StagingXcmV5Junctions;
|
|
890
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
873
891
|
} & Struct;
|
|
874
892
|
readonly isLockAsset: boolean;
|
|
875
893
|
readonly asLockAsset: {
|
|
876
|
-
readonly asset:
|
|
877
|
-
readonly unlocker:
|
|
894
|
+
readonly asset: StagingXcmV5Asset;
|
|
895
|
+
readonly unlocker: StagingXcmV5Location;
|
|
878
896
|
} & Struct;
|
|
879
897
|
readonly isUnlockAsset: boolean;
|
|
880
898
|
readonly asUnlockAsset: {
|
|
881
|
-
readonly asset:
|
|
882
|
-
readonly target:
|
|
899
|
+
readonly asset: StagingXcmV5Asset;
|
|
900
|
+
readonly target: StagingXcmV5Location;
|
|
883
901
|
} & Struct;
|
|
884
902
|
readonly isNoteUnlockable: boolean;
|
|
885
903
|
readonly asNoteUnlockable: {
|
|
886
|
-
readonly asset:
|
|
887
|
-
readonly owner:
|
|
904
|
+
readonly asset: StagingXcmV5Asset;
|
|
905
|
+
readonly owner: StagingXcmV5Location;
|
|
888
906
|
} & Struct;
|
|
889
907
|
readonly isRequestUnlock: boolean;
|
|
890
908
|
readonly asRequestUnlock: {
|
|
891
|
-
readonly asset:
|
|
892
|
-
readonly locker:
|
|
909
|
+
readonly asset: StagingXcmV5Asset;
|
|
910
|
+
readonly locker: StagingXcmV5Location;
|
|
893
911
|
} & Struct;
|
|
894
912
|
readonly isSetFeesMode: boolean;
|
|
895
913
|
readonly asSetFeesMode: {
|
|
@@ -899,35 +917,56 @@ declare module "@polkadot/types/lookup" {
|
|
|
899
917
|
readonly asSetTopic: U8aFixed;
|
|
900
918
|
readonly isClearTopic: boolean;
|
|
901
919
|
readonly isAliasOrigin: boolean;
|
|
902
|
-
readonly asAliasOrigin:
|
|
920
|
+
readonly asAliasOrigin: StagingXcmV5Location;
|
|
903
921
|
readonly isUnpaidExecution: boolean;
|
|
904
922
|
readonly asUnpaidExecution: {
|
|
905
923
|
readonly weightLimit: XcmV3WeightLimit;
|
|
906
|
-
readonly checkOrigin: Option<
|
|
924
|
+
readonly checkOrigin: Option<StagingXcmV5Location>;
|
|
907
925
|
} & Struct;
|
|
908
|
-
readonly
|
|
926
|
+
readonly isPayFees: boolean;
|
|
927
|
+
readonly asPayFees: {
|
|
928
|
+
readonly asset: StagingXcmV5Asset;
|
|
929
|
+
} & Struct;
|
|
930
|
+
readonly isInitiateTransfer: boolean;
|
|
931
|
+
readonly asInitiateTransfer: {
|
|
932
|
+
readonly destination: StagingXcmV5Location;
|
|
933
|
+
readonly remoteFees: Option<StagingXcmV5AssetAssetTransferFilter>;
|
|
934
|
+
readonly preserveOrigin: bool;
|
|
935
|
+
readonly assets: Vec<StagingXcmV5AssetAssetTransferFilter>;
|
|
936
|
+
readonly remoteXcm: StagingXcmV5Xcm;
|
|
937
|
+
} & Struct;
|
|
938
|
+
readonly isExecuteWithOrigin: boolean;
|
|
939
|
+
readonly asExecuteWithOrigin: {
|
|
940
|
+
readonly descendantOrigin: Option<StagingXcmV5Junctions>;
|
|
941
|
+
readonly xcm: StagingXcmV5Xcm;
|
|
942
|
+
} & Struct;
|
|
943
|
+
readonly isSetHints: boolean;
|
|
944
|
+
readonly asSetHints: {
|
|
945
|
+
readonly hints: Vec<StagingXcmV5Hint>;
|
|
946
|
+
} & Struct;
|
|
947
|
+
readonly type: "WithdrawAsset" | "ReserveAssetDeposited" | "ReceiveTeleportedAsset" | "QueryResponse" | "TransferAsset" | "TransferReserveAsset" | "Transact" | "HrmpNewChannelOpenRequest" | "HrmpChannelAccepted" | "HrmpChannelClosing" | "ClearOrigin" | "DescendOrigin" | "ReportError" | "DepositAsset" | "DepositReserveAsset" | "ExchangeAsset" | "InitiateReserveWithdraw" | "InitiateTeleport" | "ReportHolding" | "BuyExecution" | "RefundSurplus" | "SetErrorHandler" | "SetAppendix" | "ClearError" | "ClaimAsset" | "Trap" | "SubscribeVersion" | "UnsubscribeVersion" | "BurnAsset" | "ExpectAsset" | "ExpectOrigin" | "ExpectError" | "ExpectTransactStatus" | "QueryPallet" | "ExpectPallet" | "ReportTransactStatus" | "ClearTransactStatus" | "UniversalOrigin" | "ExportMessage" | "LockAsset" | "UnlockAsset" | "NoteUnlockable" | "RequestUnlock" | "SetFeesMode" | "SetTopic" | "ClearTopic" | "AliasOrigin" | "UnpaidExecution" | "PayFees" | "InitiateTransfer" | "ExecuteWithOrigin" | "SetHints";
|
|
909
948
|
}
|
|
910
|
-
/** @name
|
|
911
|
-
interface
|
|
949
|
+
/** @name StagingXcmV5AssetAssets (69) */
|
|
950
|
+
interface StagingXcmV5AssetAssets extends Vec<StagingXcmV5Asset> {
|
|
912
951
|
}
|
|
913
|
-
/** @name
|
|
914
|
-
interface
|
|
915
|
-
readonly id:
|
|
916
|
-
readonly fun:
|
|
952
|
+
/** @name StagingXcmV5Asset (71) */
|
|
953
|
+
interface StagingXcmV5Asset extends Struct {
|
|
954
|
+
readonly id: StagingXcmV5AssetAssetId;
|
|
955
|
+
readonly fun: StagingXcmV5AssetFungibility;
|
|
917
956
|
}
|
|
918
|
-
/** @name
|
|
919
|
-
interface
|
|
957
|
+
/** @name StagingXcmV5AssetAssetId (72) */
|
|
958
|
+
interface StagingXcmV5AssetAssetId extends StagingXcmV5Location {
|
|
920
959
|
}
|
|
921
|
-
/** @name
|
|
922
|
-
interface
|
|
960
|
+
/** @name StagingXcmV5AssetFungibility (73) */
|
|
961
|
+
interface StagingXcmV5AssetFungibility extends Enum {
|
|
923
962
|
readonly isFungible: boolean;
|
|
924
963
|
readonly asFungible: Compact<u128>;
|
|
925
964
|
readonly isNonFungible: boolean;
|
|
926
|
-
readonly asNonFungible:
|
|
965
|
+
readonly asNonFungible: StagingXcmV5AssetAssetInstance;
|
|
927
966
|
readonly type: "Fungible" | "NonFungible";
|
|
928
967
|
}
|
|
929
|
-
/** @name
|
|
930
|
-
interface
|
|
968
|
+
/** @name StagingXcmV5AssetAssetInstance (74) */
|
|
969
|
+
interface StagingXcmV5AssetAssetInstance extends Enum {
|
|
931
970
|
readonly isUndefined: boolean;
|
|
932
971
|
readonly isIndex: boolean;
|
|
933
972
|
readonly asIndex: Compact<u128>;
|
|
@@ -941,23 +980,23 @@ declare module "@polkadot/types/lookup" {
|
|
|
941
980
|
readonly asArray32: U8aFixed;
|
|
942
981
|
readonly type: "Undefined" | "Index" | "Array4" | "Array8" | "Array16" | "Array32";
|
|
943
982
|
}
|
|
944
|
-
/** @name
|
|
945
|
-
interface
|
|
983
|
+
/** @name StagingXcmV5Response (77) */
|
|
984
|
+
interface StagingXcmV5Response extends Enum {
|
|
946
985
|
readonly isNull: boolean;
|
|
947
986
|
readonly isAssets: boolean;
|
|
948
|
-
readonly asAssets:
|
|
987
|
+
readonly asAssets: StagingXcmV5AssetAssets;
|
|
949
988
|
readonly isExecutionResult: boolean;
|
|
950
|
-
readonly asExecutionResult: Option<ITuple<[u32,
|
|
989
|
+
readonly asExecutionResult: Option<ITuple<[u32, XcmV5TraitsError]>>;
|
|
951
990
|
readonly isVersion: boolean;
|
|
952
991
|
readonly asVersion: u32;
|
|
953
992
|
readonly isPalletsInfo: boolean;
|
|
954
|
-
readonly asPalletsInfo: Vec<
|
|
993
|
+
readonly asPalletsInfo: Vec<StagingXcmV5PalletInfo>;
|
|
955
994
|
readonly isDispatchResult: boolean;
|
|
956
995
|
readonly asDispatchResult: XcmV3MaybeErrorCode;
|
|
957
996
|
readonly type: "Null" | "Assets" | "ExecutionResult" | "Version" | "PalletsInfo" | "DispatchResult";
|
|
958
997
|
}
|
|
959
|
-
/** @name
|
|
960
|
-
interface
|
|
998
|
+
/** @name StagingXcmV5PalletInfo (81) */
|
|
999
|
+
interface StagingXcmV5PalletInfo extends Struct {
|
|
961
1000
|
readonly index: Compact<u32>;
|
|
962
1001
|
readonly name: Bytes;
|
|
963
1002
|
readonly moduleName: Bytes;
|
|
@@ -965,7 +1004,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
965
1004
|
readonly minor: Compact<u32>;
|
|
966
1005
|
readonly patch: Compact<u32>;
|
|
967
1006
|
}
|
|
968
|
-
/** @name XcmV3MaybeErrorCode (
|
|
1007
|
+
/** @name XcmV3MaybeErrorCode (84) */
|
|
969
1008
|
interface XcmV3MaybeErrorCode extends Enum {
|
|
970
1009
|
readonly isSuccess: boolean;
|
|
971
1010
|
readonly isError: boolean;
|
|
@@ -974,7 +1013,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
974
1013
|
readonly asTruncatedError: Bytes;
|
|
975
1014
|
readonly type: "Success" | "Error" | "TruncatedError";
|
|
976
1015
|
}
|
|
977
|
-
/** @name XcmV3OriginKind (
|
|
1016
|
+
/** @name XcmV3OriginKind (87) */
|
|
978
1017
|
interface XcmV3OriginKind extends Enum {
|
|
979
1018
|
readonly isNative: boolean;
|
|
980
1019
|
readonly isSovereignAccount: boolean;
|
|
@@ -982,154 +1021,172 @@ declare module "@polkadot/types/lookup" {
|
|
|
982
1021
|
readonly isXcm: boolean;
|
|
983
1022
|
readonly type: "Native" | "SovereignAccount" | "Superuser" | "Xcm";
|
|
984
1023
|
}
|
|
985
|
-
/** @name XcmDoubleEncoded (
|
|
1024
|
+
/** @name XcmDoubleEncoded (89) */
|
|
986
1025
|
interface XcmDoubleEncoded extends Struct {
|
|
987
1026
|
readonly encoded: Bytes;
|
|
988
1027
|
}
|
|
989
|
-
/** @name
|
|
990
|
-
interface
|
|
991
|
-
readonly destination:
|
|
1028
|
+
/** @name StagingXcmV5QueryResponseInfo (90) */
|
|
1029
|
+
interface StagingXcmV5QueryResponseInfo extends Struct {
|
|
1030
|
+
readonly destination: StagingXcmV5Location;
|
|
992
1031
|
readonly queryId: Compact<u64>;
|
|
993
1032
|
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
994
1033
|
}
|
|
995
|
-
/** @name
|
|
996
|
-
interface
|
|
1034
|
+
/** @name StagingXcmV5AssetAssetFilter (91) */
|
|
1035
|
+
interface StagingXcmV5AssetAssetFilter extends Enum {
|
|
997
1036
|
readonly isDefinite: boolean;
|
|
998
|
-
readonly asDefinite:
|
|
1037
|
+
readonly asDefinite: StagingXcmV5AssetAssets;
|
|
999
1038
|
readonly isWild: boolean;
|
|
1000
|
-
readonly asWild:
|
|
1039
|
+
readonly asWild: StagingXcmV5AssetWildAsset;
|
|
1001
1040
|
readonly type: "Definite" | "Wild";
|
|
1002
1041
|
}
|
|
1003
|
-
/** @name
|
|
1004
|
-
interface
|
|
1042
|
+
/** @name StagingXcmV5AssetWildAsset (92) */
|
|
1043
|
+
interface StagingXcmV5AssetWildAsset extends Enum {
|
|
1005
1044
|
readonly isAll: boolean;
|
|
1006
1045
|
readonly isAllOf: boolean;
|
|
1007
1046
|
readonly asAllOf: {
|
|
1008
|
-
readonly id:
|
|
1009
|
-
readonly fun:
|
|
1047
|
+
readonly id: StagingXcmV5AssetAssetId;
|
|
1048
|
+
readonly fun: StagingXcmV5AssetWildFungibility;
|
|
1010
1049
|
} & Struct;
|
|
1011
1050
|
readonly isAllCounted: boolean;
|
|
1012
1051
|
readonly asAllCounted: Compact<u32>;
|
|
1013
1052
|
readonly isAllOfCounted: boolean;
|
|
1014
1053
|
readonly asAllOfCounted: {
|
|
1015
|
-
readonly id:
|
|
1016
|
-
readonly fun:
|
|
1054
|
+
readonly id: StagingXcmV5AssetAssetId;
|
|
1055
|
+
readonly fun: StagingXcmV5AssetWildFungibility;
|
|
1017
1056
|
readonly count: Compact<u32>;
|
|
1018
1057
|
} & Struct;
|
|
1019
1058
|
readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
|
|
1020
1059
|
}
|
|
1021
|
-
/** @name
|
|
1022
|
-
interface
|
|
1060
|
+
/** @name StagingXcmV5AssetWildFungibility (93) */
|
|
1061
|
+
interface StagingXcmV5AssetWildFungibility extends Enum {
|
|
1023
1062
|
readonly isFungible: boolean;
|
|
1024
1063
|
readonly isNonFungible: boolean;
|
|
1025
1064
|
readonly type: "Fungible" | "NonFungible";
|
|
1026
1065
|
}
|
|
1027
|
-
/** @name XcmV3WeightLimit (
|
|
1066
|
+
/** @name XcmV3WeightLimit (94) */
|
|
1028
1067
|
interface XcmV3WeightLimit extends Enum {
|
|
1029
1068
|
readonly isUnlimited: boolean;
|
|
1030
1069
|
readonly isLimited: boolean;
|
|
1031
1070
|
readonly asLimited: SpWeightsWeightV2Weight;
|
|
1032
1071
|
readonly type: "Unlimited" | "Limited";
|
|
1033
1072
|
}
|
|
1034
|
-
/** @name
|
|
1073
|
+
/** @name StagingXcmV5AssetAssetTransferFilter (96) */
|
|
1074
|
+
interface StagingXcmV5AssetAssetTransferFilter extends Enum {
|
|
1075
|
+
readonly isTeleport: boolean;
|
|
1076
|
+
readonly asTeleport: StagingXcmV5AssetAssetFilter;
|
|
1077
|
+
readonly isReserveDeposit: boolean;
|
|
1078
|
+
readonly asReserveDeposit: StagingXcmV5AssetAssetFilter;
|
|
1079
|
+
readonly isReserveWithdraw: boolean;
|
|
1080
|
+
readonly asReserveWithdraw: StagingXcmV5AssetAssetFilter;
|
|
1081
|
+
readonly type: "Teleport" | "ReserveDeposit" | "ReserveWithdraw";
|
|
1082
|
+
}
|
|
1083
|
+
/** @name StagingXcmV5Hint (101) */
|
|
1084
|
+
interface StagingXcmV5Hint extends Enum {
|
|
1085
|
+
readonly isAssetClaimer: boolean;
|
|
1086
|
+
readonly asAssetClaimer: {
|
|
1087
|
+
readonly location: StagingXcmV5Location;
|
|
1088
|
+
} & Struct;
|
|
1089
|
+
readonly type: "AssetClaimer";
|
|
1090
|
+
}
|
|
1091
|
+
/** @name XcmVersionedAssets (103) */
|
|
1035
1092
|
interface XcmVersionedAssets extends Enum {
|
|
1036
|
-
readonly isV2: boolean;
|
|
1037
|
-
readonly asV2: XcmV2MultiassetMultiAssets;
|
|
1038
1093
|
readonly isV3: boolean;
|
|
1039
1094
|
readonly asV3: XcmV3MultiassetMultiAssets;
|
|
1040
1095
|
readonly isV4: boolean;
|
|
1041
1096
|
readonly asV4: StagingXcmV4AssetAssets;
|
|
1042
|
-
readonly
|
|
1097
|
+
readonly isV5: boolean;
|
|
1098
|
+
readonly asV5: StagingXcmV5AssetAssets;
|
|
1099
|
+
readonly type: "V3" | "V4" | "V5";
|
|
1043
1100
|
}
|
|
1044
|
-
/** @name
|
|
1045
|
-
interface
|
|
1101
|
+
/** @name XcmV3MultiassetMultiAssets (104) */
|
|
1102
|
+
interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {
|
|
1046
1103
|
}
|
|
1047
|
-
/** @name
|
|
1048
|
-
interface
|
|
1049
|
-
readonly id:
|
|
1050
|
-
readonly fun:
|
|
1104
|
+
/** @name XcmV3MultiAsset (106) */
|
|
1105
|
+
interface XcmV3MultiAsset extends Struct {
|
|
1106
|
+
readonly id: XcmV3MultiassetAssetId;
|
|
1107
|
+
readonly fun: XcmV3MultiassetFungibility;
|
|
1051
1108
|
}
|
|
1052
|
-
/** @name
|
|
1053
|
-
interface
|
|
1109
|
+
/** @name XcmV3MultiassetAssetId (107) */
|
|
1110
|
+
interface XcmV3MultiassetAssetId extends Enum {
|
|
1054
1111
|
readonly isConcrete: boolean;
|
|
1055
|
-
readonly asConcrete:
|
|
1112
|
+
readonly asConcrete: StagingXcmV3MultiLocation;
|
|
1056
1113
|
readonly isAbstract: boolean;
|
|
1057
|
-
readonly asAbstract:
|
|
1114
|
+
readonly asAbstract: U8aFixed;
|
|
1058
1115
|
readonly type: "Concrete" | "Abstract";
|
|
1059
1116
|
}
|
|
1060
|
-
/** @name
|
|
1061
|
-
interface
|
|
1117
|
+
/** @name StagingXcmV3MultiLocation (108) */
|
|
1118
|
+
interface StagingXcmV3MultiLocation extends Struct {
|
|
1062
1119
|
readonly parents: u8;
|
|
1063
|
-
readonly interior:
|
|
1120
|
+
readonly interior: XcmV3Junctions;
|
|
1064
1121
|
}
|
|
1065
|
-
/** @name
|
|
1066
|
-
interface
|
|
1122
|
+
/** @name XcmV3Junctions (109) */
|
|
1123
|
+
interface XcmV3Junctions extends Enum {
|
|
1067
1124
|
readonly isHere: boolean;
|
|
1068
1125
|
readonly isX1: boolean;
|
|
1069
|
-
readonly asX1:
|
|
1126
|
+
readonly asX1: XcmV3Junction;
|
|
1070
1127
|
readonly isX2: boolean;
|
|
1071
|
-
readonly asX2: ITuple<[
|
|
1128
|
+
readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;
|
|
1072
1129
|
readonly isX3: boolean;
|
|
1073
|
-
readonly asX3: ITuple<[
|
|
1130
|
+
readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
|
|
1074
1131
|
readonly isX4: boolean;
|
|
1075
|
-
readonly asX4: ITuple<[
|
|
1132
|
+
readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
|
|
1076
1133
|
readonly isX5: boolean;
|
|
1077
1134
|
readonly asX5: ITuple<[
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1135
|
+
XcmV3Junction,
|
|
1136
|
+
XcmV3Junction,
|
|
1137
|
+
XcmV3Junction,
|
|
1138
|
+
XcmV3Junction,
|
|
1139
|
+
XcmV3Junction
|
|
1083
1140
|
]>;
|
|
1084
1141
|
readonly isX6: boolean;
|
|
1085
1142
|
readonly asX6: ITuple<[
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1143
|
+
XcmV3Junction,
|
|
1144
|
+
XcmV3Junction,
|
|
1145
|
+
XcmV3Junction,
|
|
1146
|
+
XcmV3Junction,
|
|
1147
|
+
XcmV3Junction,
|
|
1148
|
+
XcmV3Junction
|
|
1092
1149
|
]>;
|
|
1093
1150
|
readonly isX7: boolean;
|
|
1094
1151
|
readonly asX7: ITuple<[
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1152
|
+
XcmV3Junction,
|
|
1153
|
+
XcmV3Junction,
|
|
1154
|
+
XcmV3Junction,
|
|
1155
|
+
XcmV3Junction,
|
|
1156
|
+
XcmV3Junction,
|
|
1157
|
+
XcmV3Junction,
|
|
1158
|
+
XcmV3Junction
|
|
1102
1159
|
]>;
|
|
1103
1160
|
readonly isX8: boolean;
|
|
1104
1161
|
readonly asX8: ITuple<[
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1162
|
+
XcmV3Junction,
|
|
1163
|
+
XcmV3Junction,
|
|
1164
|
+
XcmV3Junction,
|
|
1165
|
+
XcmV3Junction,
|
|
1166
|
+
XcmV3Junction,
|
|
1167
|
+
XcmV3Junction,
|
|
1168
|
+
XcmV3Junction,
|
|
1169
|
+
XcmV3Junction
|
|
1113
1170
|
]>;
|
|
1114
1171
|
readonly type: "Here" | "X1" | "X2" | "X3" | "X4" | "X5" | "X6" | "X7" | "X8";
|
|
1115
1172
|
}
|
|
1116
|
-
/** @name
|
|
1117
|
-
interface
|
|
1173
|
+
/** @name XcmV3Junction (110) */
|
|
1174
|
+
interface XcmV3Junction extends Enum {
|
|
1118
1175
|
readonly isParachain: boolean;
|
|
1119
1176
|
readonly asParachain: Compact<u32>;
|
|
1120
1177
|
readonly isAccountId32: boolean;
|
|
1121
1178
|
readonly asAccountId32: {
|
|
1122
|
-
readonly network:
|
|
1179
|
+
readonly network: Option<XcmV3JunctionNetworkId>;
|
|
1123
1180
|
readonly id: U8aFixed;
|
|
1124
1181
|
} & Struct;
|
|
1125
1182
|
readonly isAccountIndex64: boolean;
|
|
1126
1183
|
readonly asAccountIndex64: {
|
|
1127
|
-
readonly network:
|
|
1184
|
+
readonly network: Option<XcmV3JunctionNetworkId>;
|
|
1128
1185
|
readonly index: Compact<u64>;
|
|
1129
1186
|
} & Struct;
|
|
1130
1187
|
readonly isAccountKey20: boolean;
|
|
1131
1188
|
readonly asAccountKey20: {
|
|
1132
|
-
readonly network:
|
|
1189
|
+
readonly network: Option<XcmV3JunctionNetworkId>;
|
|
1133
1190
|
readonly key: U8aFixed;
|
|
1134
1191
|
} & Struct;
|
|
1135
1192
|
readonly isPalletInstance: boolean;
|
|
@@ -1137,74 +1194,53 @@ declare module "@polkadot/types/lookup" {
|
|
|
1137
1194
|
readonly isGeneralIndex: boolean;
|
|
1138
1195
|
readonly asGeneralIndex: Compact<u128>;
|
|
1139
1196
|
readonly isGeneralKey: boolean;
|
|
1140
|
-
readonly asGeneralKey:
|
|
1197
|
+
readonly asGeneralKey: {
|
|
1198
|
+
readonly length: u8;
|
|
1199
|
+
readonly data: U8aFixed;
|
|
1200
|
+
} & Struct;
|
|
1141
1201
|
readonly isOnlyChild: boolean;
|
|
1142
1202
|
readonly isPlurality: boolean;
|
|
1143
1203
|
readonly asPlurality: {
|
|
1144
|
-
readonly id:
|
|
1145
|
-
readonly part:
|
|
1204
|
+
readonly id: XcmV3JunctionBodyId;
|
|
1205
|
+
readonly part: XcmV3JunctionBodyPart;
|
|
1146
1206
|
} & Struct;
|
|
1147
|
-
readonly
|
|
1207
|
+
readonly isGlobalConsensus: boolean;
|
|
1208
|
+
readonly asGlobalConsensus: XcmV3JunctionNetworkId;
|
|
1209
|
+
readonly type: "Parachain" | "AccountId32" | "AccountIndex64" | "AccountKey20" | "PalletInstance" | "GeneralIndex" | "GeneralKey" | "OnlyChild" | "Plurality" | "GlobalConsensus";
|
|
1148
1210
|
}
|
|
1149
|
-
/** @name
|
|
1150
|
-
interface
|
|
1151
|
-
readonly
|
|
1152
|
-
readonly
|
|
1153
|
-
readonly
|
|
1211
|
+
/** @name XcmV3JunctionNetworkId (112) */
|
|
1212
|
+
interface XcmV3JunctionNetworkId extends Enum {
|
|
1213
|
+
readonly isByGenesis: boolean;
|
|
1214
|
+
readonly asByGenesis: U8aFixed;
|
|
1215
|
+
readonly isByFork: boolean;
|
|
1216
|
+
readonly asByFork: {
|
|
1217
|
+
readonly blockNumber: u64;
|
|
1218
|
+
readonly blockHash: U8aFixed;
|
|
1219
|
+
} & Struct;
|
|
1154
1220
|
readonly isPolkadot: boolean;
|
|
1155
1221
|
readonly isKusama: boolean;
|
|
1156
|
-
readonly
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
readonly
|
|
1161
|
-
|
|
1162
|
-
readonly asNamed: Bytes;
|
|
1163
|
-
readonly isIndex: boolean;
|
|
1164
|
-
readonly asIndex: Compact<u32>;
|
|
1165
|
-
readonly isExecutive: boolean;
|
|
1166
|
-
readonly isTechnical: boolean;
|
|
1167
|
-
readonly isLegislative: boolean;
|
|
1168
|
-
readonly isJudicial: boolean;
|
|
1169
|
-
readonly isDefense: boolean;
|
|
1170
|
-
readonly isAdministration: boolean;
|
|
1171
|
-
readonly isTreasury: boolean;
|
|
1172
|
-
readonly type: "Unit" | "Named" | "Index" | "Executive" | "Technical" | "Legislative" | "Judicial" | "Defense" | "Administration" | "Treasury";
|
|
1173
|
-
}
|
|
1174
|
-
/** @name XcmV2BodyPart (104) */
|
|
1175
|
-
interface XcmV2BodyPart extends Enum {
|
|
1176
|
-
readonly isVoice: boolean;
|
|
1177
|
-
readonly isMembers: boolean;
|
|
1178
|
-
readonly asMembers: {
|
|
1179
|
-
readonly count: Compact<u32>;
|
|
1180
|
-
} & Struct;
|
|
1181
|
-
readonly isFraction: boolean;
|
|
1182
|
-
readonly asFraction: {
|
|
1183
|
-
readonly nom: Compact<u32>;
|
|
1184
|
-
readonly denom: Compact<u32>;
|
|
1185
|
-
} & Struct;
|
|
1186
|
-
readonly isAtLeastProportion: boolean;
|
|
1187
|
-
readonly asAtLeastProportion: {
|
|
1188
|
-
readonly nom: Compact<u32>;
|
|
1189
|
-
readonly denom: Compact<u32>;
|
|
1190
|
-
} & Struct;
|
|
1191
|
-
readonly isMoreThanProportion: boolean;
|
|
1192
|
-
readonly asMoreThanProportion: {
|
|
1193
|
-
readonly nom: Compact<u32>;
|
|
1194
|
-
readonly denom: Compact<u32>;
|
|
1222
|
+
readonly isWestend: boolean;
|
|
1223
|
+
readonly isRococo: boolean;
|
|
1224
|
+
readonly isWococo: boolean;
|
|
1225
|
+
readonly isEthereum: boolean;
|
|
1226
|
+
readonly asEthereum: {
|
|
1227
|
+
readonly chainId: Compact<u64>;
|
|
1195
1228
|
} & Struct;
|
|
1196
|
-
readonly
|
|
1229
|
+
readonly isBitcoinCore: boolean;
|
|
1230
|
+
readonly isBitcoinCash: boolean;
|
|
1231
|
+
readonly isPolkadotBulletin: boolean;
|
|
1232
|
+
readonly type: "ByGenesis" | "ByFork" | "Polkadot" | "Kusama" | "Westend" | "Rococo" | "Wococo" | "Ethereum" | "BitcoinCore" | "BitcoinCash" | "PolkadotBulletin";
|
|
1197
1233
|
}
|
|
1198
|
-
/** @name
|
|
1199
|
-
interface
|
|
1234
|
+
/** @name XcmV3MultiassetFungibility (113) */
|
|
1235
|
+
interface XcmV3MultiassetFungibility extends Enum {
|
|
1200
1236
|
readonly isFungible: boolean;
|
|
1201
1237
|
readonly asFungible: Compact<u128>;
|
|
1202
1238
|
readonly isNonFungible: boolean;
|
|
1203
|
-
readonly asNonFungible:
|
|
1239
|
+
readonly asNonFungible: XcmV3MultiassetAssetInstance;
|
|
1204
1240
|
readonly type: "Fungible" | "NonFungible";
|
|
1205
1241
|
}
|
|
1206
|
-
/** @name
|
|
1207
|
-
interface
|
|
1242
|
+
/** @name XcmV3MultiassetAssetInstance (114) */
|
|
1243
|
+
interface XcmV3MultiassetAssetInstance extends Enum {
|
|
1208
1244
|
readonly isUndefined: boolean;
|
|
1209
1245
|
readonly isIndex: boolean;
|
|
1210
1246
|
readonly asIndex: Compact<u128>;
|
|
@@ -1216,99 +1252,62 @@ declare module "@polkadot/types/lookup" {
|
|
|
1216
1252
|
readonly asArray16: U8aFixed;
|
|
1217
1253
|
readonly isArray32: boolean;
|
|
1218
1254
|
readonly asArray32: U8aFixed;
|
|
1219
|
-
readonly
|
|
1220
|
-
readonly asBlob: Bytes;
|
|
1221
|
-
readonly type: "Undefined" | "Index" | "Array4" | "Array8" | "Array16" | "Array32" | "Blob";
|
|
1255
|
+
readonly type: "Undefined" | "Index" | "Array4" | "Array8" | "Array16" | "Array32";
|
|
1222
1256
|
}
|
|
1223
|
-
/** @name
|
|
1224
|
-
interface
|
|
1257
|
+
/** @name StagingXcmV4AssetAssets (115) */
|
|
1258
|
+
interface StagingXcmV4AssetAssets extends Vec<StagingXcmV4Asset> {
|
|
1225
1259
|
}
|
|
1226
|
-
/** @name
|
|
1227
|
-
interface
|
|
1228
|
-
readonly id:
|
|
1229
|
-
readonly fun:
|
|
1260
|
+
/** @name StagingXcmV4Asset (117) */
|
|
1261
|
+
interface StagingXcmV4Asset extends Struct {
|
|
1262
|
+
readonly id: StagingXcmV4AssetAssetId;
|
|
1263
|
+
readonly fun: StagingXcmV4AssetFungibility;
|
|
1230
1264
|
}
|
|
1231
|
-
/** @name
|
|
1232
|
-
interface
|
|
1233
|
-
readonly isConcrete: boolean;
|
|
1234
|
-
readonly asConcrete: StagingXcmV3MultiLocation;
|
|
1235
|
-
readonly isAbstract: boolean;
|
|
1236
|
-
readonly asAbstract: U8aFixed;
|
|
1237
|
-
readonly type: "Concrete" | "Abstract";
|
|
1265
|
+
/** @name StagingXcmV4AssetAssetId (118) */
|
|
1266
|
+
interface StagingXcmV4AssetAssetId extends StagingXcmV4Location {
|
|
1238
1267
|
}
|
|
1239
|
-
/** @name
|
|
1240
|
-
interface
|
|
1268
|
+
/** @name StagingXcmV4Location (119) */
|
|
1269
|
+
interface StagingXcmV4Location extends Struct {
|
|
1241
1270
|
readonly parents: u8;
|
|
1242
|
-
readonly interior:
|
|
1271
|
+
readonly interior: StagingXcmV4Junctions;
|
|
1243
1272
|
}
|
|
1244
|
-
/** @name
|
|
1245
|
-
interface
|
|
1273
|
+
/** @name StagingXcmV4Junctions (120) */
|
|
1274
|
+
interface StagingXcmV4Junctions extends Enum {
|
|
1246
1275
|
readonly isHere: boolean;
|
|
1247
1276
|
readonly isX1: boolean;
|
|
1248
|
-
readonly asX1:
|
|
1277
|
+
readonly asX1: StagingXcmV4Junction;
|
|
1249
1278
|
readonly isX2: boolean;
|
|
1250
|
-
readonly asX2:
|
|
1279
|
+
readonly asX2: StagingXcmV4Junction;
|
|
1251
1280
|
readonly isX3: boolean;
|
|
1252
|
-
readonly asX3:
|
|
1281
|
+
readonly asX3: StagingXcmV4Junction;
|
|
1253
1282
|
readonly isX4: boolean;
|
|
1254
|
-
readonly asX4:
|
|
1283
|
+
readonly asX4: StagingXcmV4Junction;
|
|
1255
1284
|
readonly isX5: boolean;
|
|
1256
|
-
readonly asX5:
|
|
1257
|
-
XcmV3Junction,
|
|
1258
|
-
XcmV3Junction,
|
|
1259
|
-
XcmV3Junction,
|
|
1260
|
-
XcmV3Junction,
|
|
1261
|
-
XcmV3Junction
|
|
1262
|
-
]>;
|
|
1285
|
+
readonly asX5: StagingXcmV4Junction;
|
|
1263
1286
|
readonly isX6: boolean;
|
|
1264
|
-
readonly asX6:
|
|
1265
|
-
XcmV3Junction,
|
|
1266
|
-
XcmV3Junction,
|
|
1267
|
-
XcmV3Junction,
|
|
1268
|
-
XcmV3Junction,
|
|
1269
|
-
XcmV3Junction,
|
|
1270
|
-
XcmV3Junction
|
|
1271
|
-
]>;
|
|
1287
|
+
readonly asX6: StagingXcmV4Junction;
|
|
1272
1288
|
readonly isX7: boolean;
|
|
1273
|
-
readonly asX7:
|
|
1274
|
-
XcmV3Junction,
|
|
1275
|
-
XcmV3Junction,
|
|
1276
|
-
XcmV3Junction,
|
|
1277
|
-
XcmV3Junction,
|
|
1278
|
-
XcmV3Junction,
|
|
1279
|
-
XcmV3Junction,
|
|
1280
|
-
XcmV3Junction
|
|
1281
|
-
]>;
|
|
1289
|
+
readonly asX7: StagingXcmV4Junction;
|
|
1282
1290
|
readonly isX8: boolean;
|
|
1283
|
-
readonly asX8:
|
|
1284
|
-
XcmV3Junction,
|
|
1285
|
-
XcmV3Junction,
|
|
1286
|
-
XcmV3Junction,
|
|
1287
|
-
XcmV3Junction,
|
|
1288
|
-
XcmV3Junction,
|
|
1289
|
-
XcmV3Junction,
|
|
1290
|
-
XcmV3Junction,
|
|
1291
|
-
XcmV3Junction
|
|
1292
|
-
]>;
|
|
1291
|
+
readonly asX8: StagingXcmV4Junction;
|
|
1293
1292
|
readonly type: "Here" | "X1" | "X2" | "X3" | "X4" | "X5" | "X6" | "X7" | "X8";
|
|
1294
1293
|
}
|
|
1295
|
-
/** @name
|
|
1296
|
-
interface
|
|
1294
|
+
/** @name StagingXcmV4Junction (122) */
|
|
1295
|
+
interface StagingXcmV4Junction extends Enum {
|
|
1297
1296
|
readonly isParachain: boolean;
|
|
1298
1297
|
readonly asParachain: Compact<u32>;
|
|
1299
1298
|
readonly isAccountId32: boolean;
|
|
1300
1299
|
readonly asAccountId32: {
|
|
1301
|
-
readonly network: Option<
|
|
1300
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
1302
1301
|
readonly id: U8aFixed;
|
|
1303
1302
|
} & Struct;
|
|
1304
1303
|
readonly isAccountIndex64: boolean;
|
|
1305
1304
|
readonly asAccountIndex64: {
|
|
1306
|
-
readonly network: Option<
|
|
1305
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
1307
1306
|
readonly index: Compact<u64>;
|
|
1308
1307
|
} & Struct;
|
|
1309
1308
|
readonly isAccountKey20: boolean;
|
|
1310
1309
|
readonly asAccountKey20: {
|
|
1311
|
-
readonly network: Option<
|
|
1310
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
1312
1311
|
readonly key: U8aFixed;
|
|
1313
1312
|
} & Struct;
|
|
1314
1313
|
readonly isPalletInstance: boolean;
|
|
@@ -1327,11 +1326,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
1327
1326
|
readonly part: XcmV3JunctionBodyPart;
|
|
1328
1327
|
} & Struct;
|
|
1329
1328
|
readonly isGlobalConsensus: boolean;
|
|
1330
|
-
readonly asGlobalConsensus:
|
|
1329
|
+
readonly asGlobalConsensus: StagingXcmV4JunctionNetworkId;
|
|
1331
1330
|
readonly type: "Parachain" | "AccountId32" | "AccountIndex64" | "AccountKey20" | "PalletInstance" | "GeneralIndex" | "GeneralKey" | "OnlyChild" | "Plurality" | "GlobalConsensus";
|
|
1332
1331
|
}
|
|
1333
|
-
/** @name
|
|
1334
|
-
interface
|
|
1332
|
+
/** @name StagingXcmV4JunctionNetworkId (124) */
|
|
1333
|
+
interface StagingXcmV4JunctionNetworkId extends Enum {
|
|
1335
1334
|
readonly isByGenesis: boolean;
|
|
1336
1335
|
readonly asByGenesis: U8aFixed;
|
|
1337
1336
|
readonly isByFork: boolean;
|
|
@@ -1353,16 +1352,16 @@ declare module "@polkadot/types/lookup" {
|
|
|
1353
1352
|
readonly isPolkadotBulletin: boolean;
|
|
1354
1353
|
readonly type: "ByGenesis" | "ByFork" | "Polkadot" | "Kusama" | "Westend" | "Rococo" | "Wococo" | "Ethereum" | "BitcoinCore" | "BitcoinCash" | "PolkadotBulletin";
|
|
1355
1354
|
}
|
|
1356
|
-
/** @name
|
|
1357
|
-
interface
|
|
1355
|
+
/** @name StagingXcmV4AssetFungibility (132) */
|
|
1356
|
+
interface StagingXcmV4AssetFungibility extends Enum {
|
|
1358
1357
|
readonly isFungible: boolean;
|
|
1359
1358
|
readonly asFungible: Compact<u128>;
|
|
1360
1359
|
readonly isNonFungible: boolean;
|
|
1361
|
-
readonly asNonFungible:
|
|
1360
|
+
readonly asNonFungible: StagingXcmV4AssetAssetInstance;
|
|
1362
1361
|
readonly type: "Fungible" | "NonFungible";
|
|
1363
1362
|
}
|
|
1364
|
-
/** @name
|
|
1365
|
-
interface
|
|
1363
|
+
/** @name StagingXcmV4AssetAssetInstance (133) */
|
|
1364
|
+
interface StagingXcmV4AssetAssetInstance extends Enum {
|
|
1366
1365
|
readonly isUndefined: boolean;
|
|
1367
1366
|
readonly isIndex: boolean;
|
|
1368
1367
|
readonly asIndex: Compact<u128>;
|
|
@@ -1376,27 +1375,27 @@ declare module "@polkadot/types/lookup" {
|
|
|
1376
1375
|
readonly asArray32: U8aFixed;
|
|
1377
1376
|
readonly type: "Undefined" | "Index" | "Array4" | "Array8" | "Array16" | "Array32";
|
|
1378
1377
|
}
|
|
1379
|
-
/** @name XcmVersionedLocation (
|
|
1378
|
+
/** @name XcmVersionedLocation (134) */
|
|
1380
1379
|
interface XcmVersionedLocation extends Enum {
|
|
1381
|
-
readonly isV2: boolean;
|
|
1382
|
-
readonly asV2: XcmV2MultiLocation;
|
|
1383
1380
|
readonly isV3: boolean;
|
|
1384
1381
|
readonly asV3: StagingXcmV3MultiLocation;
|
|
1385
1382
|
readonly isV4: boolean;
|
|
1386
1383
|
readonly asV4: StagingXcmV4Location;
|
|
1387
|
-
readonly
|
|
1384
|
+
readonly isV5: boolean;
|
|
1385
|
+
readonly asV5: StagingXcmV5Location;
|
|
1386
|
+
readonly type: "V3" | "V4" | "V5";
|
|
1388
1387
|
}
|
|
1389
|
-
/** @name CumulusPalletXcmEvent (
|
|
1388
|
+
/** @name CumulusPalletXcmEvent (135) */
|
|
1390
1389
|
interface CumulusPalletXcmEvent extends Enum {
|
|
1391
1390
|
readonly isInvalidFormat: boolean;
|
|
1392
1391
|
readonly asInvalidFormat: U8aFixed;
|
|
1393
1392
|
readonly isUnsupportedVersion: boolean;
|
|
1394
1393
|
readonly asUnsupportedVersion: U8aFixed;
|
|
1395
1394
|
readonly isExecutedDownward: boolean;
|
|
1396
|
-
readonly asExecutedDownward: ITuple<[U8aFixed,
|
|
1395
|
+
readonly asExecutedDownward: ITuple<[U8aFixed, StagingXcmV5TraitsOutcome]>;
|
|
1397
1396
|
readonly type: "InvalidFormat" | "UnsupportedVersion" | "ExecutedDownward";
|
|
1398
1397
|
}
|
|
1399
|
-
/** @name PalletMessageQueueEvent (
|
|
1398
|
+
/** @name PalletMessageQueueEvent (136) */
|
|
1400
1399
|
interface PalletMessageQueueEvent extends Enum {
|
|
1401
1400
|
readonly isProcessingFailed: boolean;
|
|
1402
1401
|
readonly asProcessingFailed: {
|
|
@@ -1425,7 +1424,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1425
1424
|
} & Struct;
|
|
1426
1425
|
readonly type: "ProcessingFailed" | "Processed" | "OverweightEnqueued" | "PageReaped";
|
|
1427
1426
|
}
|
|
1428
|
-
/** @name CumulusPrimitivesCoreAggregateMessageOrigin (
|
|
1427
|
+
/** @name CumulusPrimitivesCoreAggregateMessageOrigin (137) */
|
|
1429
1428
|
interface CumulusPrimitivesCoreAggregateMessageOrigin extends Enum {
|
|
1430
1429
|
readonly isHere: boolean;
|
|
1431
1430
|
readonly isParent: boolean;
|
|
@@ -1433,7 +1432,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1433
1432
|
readonly asSibling: u32;
|
|
1434
1433
|
readonly type: "Here" | "Parent" | "Sibling";
|
|
1435
1434
|
}
|
|
1436
|
-
/** @name FrameSupportMessagesProcessMessageError (
|
|
1435
|
+
/** @name FrameSupportMessagesProcessMessageError (139) */
|
|
1437
1436
|
interface FrameSupportMessagesProcessMessageError extends Enum {
|
|
1438
1437
|
readonly isBadFormat: boolean;
|
|
1439
1438
|
readonly isCorrupt: boolean;
|
|
@@ -1444,14 +1443,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
1444
1443
|
readonly isStackLimitReached: boolean;
|
|
1445
1444
|
readonly type: "BadFormat" | "Corrupt" | "Unsupported" | "Overweight" | "Yield" | "StackLimitReached";
|
|
1446
1445
|
}
|
|
1447
|
-
/** @name PalletStorageProvidersEvent (
|
|
1446
|
+
/** @name PalletStorageProvidersEvent (140) */
|
|
1448
1447
|
interface PalletStorageProvidersEvent extends Enum {
|
|
1449
1448
|
readonly isMspRequestSignUpSuccess: boolean;
|
|
1450
1449
|
readonly asMspRequestSignUpSuccess: {
|
|
1451
1450
|
readonly who: AccountId32;
|
|
1452
1451
|
readonly multiaddresses: Vec<Bytes>;
|
|
1453
1452
|
readonly capacity: u64;
|
|
1454
|
-
readonly valueProp: PalletStorageProvidersValueProposition;
|
|
1455
1453
|
} & Struct;
|
|
1456
1454
|
readonly isMspSignUpSuccess: boolean;
|
|
1457
1455
|
readonly asMspSignUpSuccess: {
|
|
@@ -1459,7 +1457,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1459
1457
|
readonly mspId: H256;
|
|
1460
1458
|
readonly multiaddresses: Vec<Bytes>;
|
|
1461
1459
|
readonly capacity: u64;
|
|
1462
|
-
readonly valueProp:
|
|
1460
|
+
readonly valueProp: PalletStorageProvidersValuePropositionWithId;
|
|
1463
1461
|
} & Struct;
|
|
1464
1462
|
readonly isBspRequestSignUpSuccess: boolean;
|
|
1465
1463
|
readonly asBspRequestSignUpSuccess: {
|
|
@@ -1471,6 +1469,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1471
1469
|
readonly asBspSignUpSuccess: {
|
|
1472
1470
|
readonly who: AccountId32;
|
|
1473
1471
|
readonly bspId: H256;
|
|
1472
|
+
readonly root: H256;
|
|
1474
1473
|
readonly multiaddresses: Vec<Bytes>;
|
|
1475
1474
|
readonly capacity: u64;
|
|
1476
1475
|
} & Struct;
|
|
@@ -1499,17 +1498,97 @@ declare module "@polkadot/types/lookup" {
|
|
|
1499
1498
|
readonly isSlashed: boolean;
|
|
1500
1499
|
readonly asSlashed: {
|
|
1501
1500
|
readonly providerId: H256;
|
|
1502
|
-
readonly
|
|
1501
|
+
readonly amount: u128;
|
|
1502
|
+
} & Struct;
|
|
1503
|
+
readonly isAwaitingTopUp: boolean;
|
|
1504
|
+
readonly asAwaitingTopUp: {
|
|
1505
|
+
readonly providerId: H256;
|
|
1506
|
+
readonly topUpMetadata: PalletStorageProvidersTopUpMetadata;
|
|
1507
|
+
} & Struct;
|
|
1508
|
+
readonly isTopUpFulfilled: boolean;
|
|
1509
|
+
readonly asTopUpFulfilled: {
|
|
1510
|
+
readonly providerId: H256;
|
|
1511
|
+
readonly amount: u128;
|
|
1512
|
+
} & Struct;
|
|
1513
|
+
readonly isFailedToGetOwnerAccountOfInsolventProvider: boolean;
|
|
1514
|
+
readonly asFailedToGetOwnerAccountOfInsolventProvider: {
|
|
1515
|
+
readonly providerId: H256;
|
|
1516
|
+
} & Struct;
|
|
1517
|
+
readonly isFailedToSlashInsolventProvider: boolean;
|
|
1518
|
+
readonly asFailedToSlashInsolventProvider: {
|
|
1519
|
+
readonly providerId: H256;
|
|
1520
|
+
readonly amountToSlash: u128;
|
|
1521
|
+
readonly error: SpRuntimeDispatchError;
|
|
1522
|
+
} & Struct;
|
|
1523
|
+
readonly isFailedToStopAllCyclesForInsolventBsp: boolean;
|
|
1524
|
+
readonly asFailedToStopAllCyclesForInsolventBsp: {
|
|
1525
|
+
readonly providerId: H256;
|
|
1526
|
+
readonly error: SpRuntimeDispatchError;
|
|
1527
|
+
} & Struct;
|
|
1528
|
+
readonly isFailedToInsertProviderTopUpExpiration: boolean;
|
|
1529
|
+
readonly asFailedToInsertProviderTopUpExpiration: {
|
|
1530
|
+
readonly providerId: H256;
|
|
1531
|
+
readonly expirationTick: u32;
|
|
1532
|
+
} & Struct;
|
|
1533
|
+
readonly isProviderInsolvent: boolean;
|
|
1534
|
+
readonly asProviderInsolvent: {
|
|
1535
|
+
readonly providerId: H256;
|
|
1536
|
+
} & Struct;
|
|
1537
|
+
readonly isBucketsOfInsolventMsp: boolean;
|
|
1538
|
+
readonly asBucketsOfInsolventMsp: {
|
|
1539
|
+
readonly mspId: H256;
|
|
1540
|
+
readonly buckets: Vec<H256>;
|
|
1541
|
+
} & Struct;
|
|
1542
|
+
readonly isBucketRootChanged: boolean;
|
|
1543
|
+
readonly asBucketRootChanged: {
|
|
1544
|
+
readonly bucketId: H256;
|
|
1545
|
+
readonly oldRoot: H256;
|
|
1546
|
+
readonly newRoot: H256;
|
|
1547
|
+
} & Struct;
|
|
1548
|
+
readonly isMultiAddressAdded: boolean;
|
|
1549
|
+
readonly asMultiAddressAdded: {
|
|
1550
|
+
readonly providerId: H256;
|
|
1551
|
+
readonly newMultiaddress: Bytes;
|
|
1552
|
+
} & Struct;
|
|
1553
|
+
readonly isMultiAddressRemoved: boolean;
|
|
1554
|
+
readonly asMultiAddressRemoved: {
|
|
1555
|
+
readonly providerId: H256;
|
|
1556
|
+
readonly removedMultiaddress: Bytes;
|
|
1557
|
+
} & Struct;
|
|
1558
|
+
readonly isValuePropAdded: boolean;
|
|
1559
|
+
readonly asValuePropAdded: {
|
|
1560
|
+
readonly mspId: H256;
|
|
1561
|
+
readonly valuePropId: H256;
|
|
1562
|
+
readonly valueProp: PalletStorageProvidersValueProposition;
|
|
1563
|
+
} & Struct;
|
|
1564
|
+
readonly isValuePropUnavailable: boolean;
|
|
1565
|
+
readonly asValuePropUnavailable: {
|
|
1566
|
+
readonly mspId: H256;
|
|
1567
|
+
readonly valuePropId: H256;
|
|
1568
|
+
} & Struct;
|
|
1569
|
+
readonly isMspDeleted: boolean;
|
|
1570
|
+
readonly asMspDeleted: {
|
|
1571
|
+
readonly providerId: H256;
|
|
1572
|
+
} & Struct;
|
|
1573
|
+
readonly isBspDeleted: boolean;
|
|
1574
|
+
readonly asBspDeleted: {
|
|
1575
|
+
readonly providerId: H256;
|
|
1503
1576
|
} & Struct;
|
|
1504
|
-
readonly type: "MspRequestSignUpSuccess" | "MspSignUpSuccess" | "BspRequestSignUpSuccess" | "BspSignUpSuccess" | "SignUpRequestCanceled" | "MspSignOffSuccess" | "BspSignOffSuccess" | "CapacityChanged" | "Slashed";
|
|
1577
|
+
readonly type: "MspRequestSignUpSuccess" | "MspSignUpSuccess" | "BspRequestSignUpSuccess" | "BspSignUpSuccess" | "SignUpRequestCanceled" | "MspSignOffSuccess" | "BspSignOffSuccess" | "CapacityChanged" | "Slashed" | "AwaitingTopUp" | "TopUpFulfilled" | "FailedToGetOwnerAccountOfInsolventProvider" | "FailedToSlashInsolventProvider" | "FailedToStopAllCyclesForInsolventBsp" | "FailedToInsertProviderTopUpExpiration" | "ProviderInsolvent" | "BucketsOfInsolventMsp" | "BucketRootChanged" | "MultiAddressAdded" | "MultiAddressRemoved" | "ValuePropAdded" | "ValuePropUnavailable" | "MspDeleted" | "BspDeleted";
|
|
1505
1578
|
}
|
|
1506
|
-
/** @name
|
|
1579
|
+
/** @name PalletStorageProvidersValuePropositionWithId (144) */
|
|
1580
|
+
interface PalletStorageProvidersValuePropositionWithId extends Struct {
|
|
1581
|
+
readonly id: H256;
|
|
1582
|
+
readonly valueProp: PalletStorageProvidersValueProposition;
|
|
1583
|
+
}
|
|
1584
|
+
/** @name PalletStorageProvidersValueProposition (145) */
|
|
1507
1585
|
interface PalletStorageProvidersValueProposition extends Struct {
|
|
1508
|
-
readonly
|
|
1509
|
-
readonly
|
|
1510
|
-
readonly
|
|
1586
|
+
readonly pricePerGigaUnitOfDataPerBlock: u128;
|
|
1587
|
+
readonly commitment: Bytes;
|
|
1588
|
+
readonly bucketDataLimit: u64;
|
|
1589
|
+
readonly available: bool;
|
|
1511
1590
|
}
|
|
1512
|
-
/** @name PalletStorageProvidersStorageProviderId (
|
|
1591
|
+
/** @name PalletStorageProvidersStorageProviderId (147) */
|
|
1513
1592
|
interface PalletStorageProvidersStorageProviderId extends Enum {
|
|
1514
1593
|
readonly isBackupStorageProvider: boolean;
|
|
1515
1594
|
readonly asBackupStorageProvider: H256;
|
|
@@ -1517,7 +1596,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
1517
1596
|
readonly asMainStorageProvider: H256;
|
|
1518
1597
|
readonly type: "BackupStorageProvider" | "MainStorageProvider";
|
|
1519
1598
|
}
|
|
1520
|
-
/** @name
|
|
1599
|
+
/** @name PalletStorageProvidersTopUpMetadata (148) */
|
|
1600
|
+
interface PalletStorageProvidersTopUpMetadata extends Struct {
|
|
1601
|
+
readonly startedAt: u32;
|
|
1602
|
+
readonly endTickGracePeriod: u32;
|
|
1603
|
+
}
|
|
1604
|
+
/** @name PalletFileSystemEvent (150) */
|
|
1521
1605
|
interface PalletFileSystemEvent extends Enum {
|
|
1522
1606
|
readonly isNewBucket: boolean;
|
|
1523
1607
|
readonly asNewBucket: {
|
|
@@ -1525,14 +1609,23 @@ declare module "@polkadot/types/lookup" {
|
|
|
1525
1609
|
readonly mspId: H256;
|
|
1526
1610
|
readonly bucketId: H256;
|
|
1527
1611
|
readonly name: Bytes;
|
|
1612
|
+
readonly root: H256;
|
|
1528
1613
|
readonly collectionId: Option<u32>;
|
|
1529
1614
|
readonly private: bool;
|
|
1615
|
+
readonly valuePropId: H256;
|
|
1616
|
+
} & Struct;
|
|
1617
|
+
readonly isBucketDeleted: boolean;
|
|
1618
|
+
readonly asBucketDeleted: {
|
|
1619
|
+
readonly who: AccountId32;
|
|
1620
|
+
readonly bucketId: H256;
|
|
1621
|
+
readonly maybeCollectionId: Option<u32>;
|
|
1530
1622
|
} & Struct;
|
|
1531
1623
|
readonly isMoveBucketRequested: boolean;
|
|
1532
1624
|
readonly asMoveBucketRequested: {
|
|
1533
1625
|
readonly who: AccountId32;
|
|
1534
1626
|
readonly bucketId: H256;
|
|
1535
1627
|
readonly newMspId: H256;
|
|
1628
|
+
readonly newValuePropId: H256;
|
|
1536
1629
|
} & Struct;
|
|
1537
1630
|
readonly isBucketPrivacyUpdated: boolean;
|
|
1538
1631
|
readonly asBucketPrivacyUpdated: {
|
|
@@ -1556,10 +1649,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
1556
1649
|
readonly fingerprint: H256;
|
|
1557
1650
|
readonly size_: u64;
|
|
1558
1651
|
readonly peerIds: Vec<Bytes>;
|
|
1652
|
+
readonly expiresAt: u32;
|
|
1559
1653
|
} & Struct;
|
|
1560
|
-
readonly
|
|
1561
|
-
readonly
|
|
1562
|
-
readonly
|
|
1654
|
+
readonly isMspAcceptedStorageRequest: boolean;
|
|
1655
|
+
readonly asMspAcceptedStorageRequest: {
|
|
1656
|
+
readonly fileKey: H256;
|
|
1657
|
+
readonly fileMetadata: ShpFileMetadataFileMetadata;
|
|
1563
1658
|
} & Struct;
|
|
1564
1659
|
readonly isAcceptedBspVolunteer: boolean;
|
|
1565
1660
|
readonly asAcceptedBspVolunteer: {
|
|
@@ -1575,7 +1670,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
1575
1670
|
readonly asBspConfirmedStoring: {
|
|
1576
1671
|
readonly who: AccountId32;
|
|
1577
1672
|
readonly bspId: H256;
|
|
1578
|
-
readonly
|
|
1673
|
+
readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
|
|
1674
|
+
readonly skippedFileKeys: Vec<H256>;
|
|
1579
1675
|
readonly newRoot: H256;
|
|
1580
1676
|
} & Struct;
|
|
1581
1677
|
readonly isStorageRequestFulfilled: boolean;
|
|
@@ -1590,6 +1686,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
1590
1686
|
readonly asStorageRequestRevoked: {
|
|
1591
1687
|
readonly fileKey: H256;
|
|
1592
1688
|
} & Struct;
|
|
1689
|
+
readonly isStorageRequestRejected: boolean;
|
|
1690
|
+
readonly asStorageRequestRejected: {
|
|
1691
|
+
readonly fileKey: H256;
|
|
1692
|
+
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
1693
|
+
} & Struct;
|
|
1593
1694
|
readonly isBspRequestedToStopStoring: boolean;
|
|
1594
1695
|
readonly asBspRequestedToStopStoring: {
|
|
1595
1696
|
readonly bspId: H256;
|
|
@@ -1616,25 +1717,33 @@ declare module "@polkadot/types/lookup" {
|
|
|
1616
1717
|
readonly location: Bytes;
|
|
1617
1718
|
readonly newRoot: H256;
|
|
1618
1719
|
} & Struct;
|
|
1720
|
+
readonly isMspStopStoringBucketInsolventUser: boolean;
|
|
1721
|
+
readonly asMspStopStoringBucketInsolventUser: {
|
|
1722
|
+
readonly mspId: H256;
|
|
1723
|
+
readonly owner: AccountId32;
|
|
1724
|
+
readonly bucketId: H256;
|
|
1725
|
+
} & Struct;
|
|
1619
1726
|
readonly isFailedToQueuePriorityChallenge: boolean;
|
|
1620
1727
|
readonly asFailedToQueuePriorityChallenge: {
|
|
1621
|
-
readonly user: AccountId32;
|
|
1622
1728
|
readonly fileKey: H256;
|
|
1729
|
+
readonly error: SpRuntimeDispatchError;
|
|
1623
1730
|
} & Struct;
|
|
1624
1731
|
readonly isFileDeletionRequest: boolean;
|
|
1625
1732
|
readonly asFileDeletionRequest: {
|
|
1626
1733
|
readonly user: AccountId32;
|
|
1627
1734
|
readonly fileKey: H256;
|
|
1735
|
+
readonly fileSize: u64;
|
|
1628
1736
|
readonly bucketId: H256;
|
|
1629
1737
|
readonly mspId: H256;
|
|
1630
1738
|
readonly proofOfInclusion: bool;
|
|
1631
1739
|
} & Struct;
|
|
1632
1740
|
readonly isProofSubmittedForPendingFileDeletionRequest: boolean;
|
|
1633
1741
|
readonly asProofSubmittedForPendingFileDeletionRequest: {
|
|
1634
|
-
readonly mspId: H256;
|
|
1635
1742
|
readonly user: AccountId32;
|
|
1636
1743
|
readonly fileKey: H256;
|
|
1744
|
+
readonly fileSize: u64;
|
|
1637
1745
|
readonly bucketId: H256;
|
|
1746
|
+
readonly mspId: H256;
|
|
1638
1747
|
readonly proofOfInclusion: bool;
|
|
1639
1748
|
} & Struct;
|
|
1640
1749
|
readonly isBspChallengeCycleInitialised: boolean;
|
|
@@ -1642,71 +1751,117 @@ declare module "@polkadot/types/lookup" {
|
|
|
1642
1751
|
readonly who: AccountId32;
|
|
1643
1752
|
readonly bspId: H256;
|
|
1644
1753
|
} & Struct;
|
|
1645
|
-
readonly isMoveBucketRequestExpired: boolean;
|
|
1646
|
-
readonly asMoveBucketRequestExpired: {
|
|
1647
|
-
readonly
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
readonly
|
|
1651
|
-
|
|
1652
|
-
readonly
|
|
1653
|
-
readonly
|
|
1754
|
+
readonly isMoveBucketRequestExpired: boolean;
|
|
1755
|
+
readonly asMoveBucketRequestExpired: {
|
|
1756
|
+
readonly bucketId: H256;
|
|
1757
|
+
} & Struct;
|
|
1758
|
+
readonly isMoveBucketAccepted: boolean;
|
|
1759
|
+
readonly asMoveBucketAccepted: {
|
|
1760
|
+
readonly bucketId: H256;
|
|
1761
|
+
readonly oldMspId: Option<H256>;
|
|
1762
|
+
readonly newMspId: H256;
|
|
1763
|
+
readonly valuePropId: H256;
|
|
1764
|
+
} & Struct;
|
|
1765
|
+
readonly isMoveBucketRejected: boolean;
|
|
1766
|
+
readonly asMoveBucketRejected: {
|
|
1767
|
+
readonly bucketId: H256;
|
|
1768
|
+
readonly oldMspId: Option<H256>;
|
|
1769
|
+
readonly newMspId: H256;
|
|
1770
|
+
} & Struct;
|
|
1771
|
+
readonly isMspStoppedStoringBucket: boolean;
|
|
1772
|
+
readonly asMspStoppedStoringBucket: {
|
|
1773
|
+
readonly mspId: H256;
|
|
1774
|
+
readonly owner: AccountId32;
|
|
1775
|
+
readonly bucketId: H256;
|
|
1776
|
+
} & Struct;
|
|
1777
|
+
readonly isFailedToGetMspOfBucket: boolean;
|
|
1778
|
+
readonly asFailedToGetMspOfBucket: {
|
|
1779
|
+
readonly bucketId: H256;
|
|
1780
|
+
readonly error: SpRuntimeDispatchError;
|
|
1781
|
+
} & Struct;
|
|
1782
|
+
readonly isFailedToDecreaseMspUsedCapacity: boolean;
|
|
1783
|
+
readonly asFailedToDecreaseMspUsedCapacity: {
|
|
1784
|
+
readonly user: AccountId32;
|
|
1785
|
+
readonly mspId: H256;
|
|
1786
|
+
readonly fileKey: H256;
|
|
1787
|
+
readonly fileSize: u64;
|
|
1788
|
+
readonly error: SpRuntimeDispatchError;
|
|
1789
|
+
} & Struct;
|
|
1790
|
+
readonly isUsedCapacityShouldBeZero: boolean;
|
|
1791
|
+
readonly asUsedCapacityShouldBeZero: {
|
|
1792
|
+
readonly actualUsedCapacity: u64;
|
|
1793
|
+
} & Struct;
|
|
1794
|
+
readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
|
|
1795
|
+
readonly asFailedToReleaseStorageRequestCreationDeposit: {
|
|
1796
|
+
readonly fileKey: H256;
|
|
1797
|
+
readonly owner: AccountId32;
|
|
1798
|
+
readonly amountToReturn: u128;
|
|
1799
|
+
readonly error: SpRuntimeDispatchError;
|
|
1800
|
+
} & Struct;
|
|
1801
|
+
readonly isFailedToTransferDepositFundsToBsp: boolean;
|
|
1802
|
+
readonly asFailedToTransferDepositFundsToBsp: {
|
|
1803
|
+
readonly fileKey: H256;
|
|
1804
|
+
readonly owner: AccountId32;
|
|
1805
|
+
readonly bspId: H256;
|
|
1806
|
+
readonly amountToTransfer: u128;
|
|
1807
|
+
readonly error: SpRuntimeDispatchError;
|
|
1808
|
+
} & Struct;
|
|
1809
|
+
readonly isFileDeletionRequested: boolean;
|
|
1810
|
+
readonly asFileDeletionRequested: {
|
|
1811
|
+
readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
|
|
1812
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
1654
1813
|
} & Struct;
|
|
1655
|
-
readonly
|
|
1656
|
-
readonly
|
|
1814
|
+
readonly isBucketFileDeletionCompleted: boolean;
|
|
1815
|
+
readonly asBucketFileDeletionCompleted: {
|
|
1816
|
+
readonly user: AccountId32;
|
|
1817
|
+
readonly fileKey: H256;
|
|
1818
|
+
readonly fileSize: u64;
|
|
1657
1819
|
readonly bucketId: H256;
|
|
1658
|
-
readonly mspId: H256
|
|
1820
|
+
readonly mspId: Option<H256>;
|
|
1821
|
+
readonly oldRoot: H256;
|
|
1822
|
+
readonly newRoot: H256;
|
|
1659
1823
|
} & Struct;
|
|
1660
|
-
readonly
|
|
1661
|
-
readonly
|
|
1824
|
+
readonly isBspFileDeletionCompleted: boolean;
|
|
1825
|
+
readonly asBspFileDeletionCompleted: {
|
|
1826
|
+
readonly user: AccountId32;
|
|
1827
|
+
readonly fileKey: H256;
|
|
1828
|
+
readonly fileSize: u64;
|
|
1662
1829
|
readonly bspId: H256;
|
|
1663
|
-
readonly
|
|
1830
|
+
readonly oldRoot: H256;
|
|
1831
|
+
readonly newRoot: H256;
|
|
1664
1832
|
} & Struct;
|
|
1665
|
-
readonly
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
readonly
|
|
1833
|
+
readonly isFileDeletedFromIncompleteStorageRequest: boolean;
|
|
1834
|
+
readonly asFileDeletedFromIncompleteStorageRequest: {
|
|
1835
|
+
readonly fileKey: H256;
|
|
1836
|
+
readonly bspId: Option<H256>;
|
|
1837
|
+
} & Struct;
|
|
1838
|
+
readonly isIncompleteStorageRequest: boolean;
|
|
1839
|
+
readonly asIncompleteStorageRequest: {
|
|
1840
|
+
readonly fileKey: H256;
|
|
1841
|
+
} & Struct;
|
|
1842
|
+
readonly type: "NewBucket" | "BucketDeleted" | "MoveBucketRequested" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "PriorityChallengeForFileDeletionQueued" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FailedToQueuePriorityChallenge" | "FileDeletionRequest" | "ProofSubmittedForPendingFileDeletionRequest" | "BspChallengeCycleInitialised" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "MspStoppedStoringBucket" | "FailedToGetMspOfBucket" | "FailedToDecreaseMspUsedCapacity" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "FailedToTransferDepositFundsToBsp" | "FileDeletionRequested" | "BucketFileDeletionCompleted" | "BspFileDeletionCompleted" | "FileDeletedFromIncompleteStorageRequest" | "IncompleteStorageRequest";
|
|
1671
1843
|
}
|
|
1672
|
-
/** @name
|
|
1673
|
-
interface
|
|
1674
|
-
readonly
|
|
1675
|
-
readonly
|
|
1676
|
-
readonly
|
|
1677
|
-
readonly
|
|
1678
|
-
readonly
|
|
1679
|
-
readonly asFailed: PalletFileSystemMspFailedBatchStorageRequests;
|
|
1680
|
-
readonly type: "Accepted" | "Rejected" | "Failed";
|
|
1681
|
-
}
|
|
1682
|
-
/** @name PalletFileSystemMspAcceptedBatchStorageRequests (137) */
|
|
1683
|
-
interface PalletFileSystemMspAcceptedBatchStorageRequests extends Struct {
|
|
1684
|
-
readonly fileKeys: Vec<H256>;
|
|
1685
|
-
readonly bucketId: H256;
|
|
1686
|
-
readonly newBucketRoot: H256;
|
|
1687
|
-
readonly owner: AccountId32;
|
|
1844
|
+
/** @name ShpFileMetadataFileMetadata (153) */
|
|
1845
|
+
interface ShpFileMetadataFileMetadata extends Struct {
|
|
1846
|
+
readonly owner: Bytes;
|
|
1847
|
+
readonly bucketId: Bytes;
|
|
1848
|
+
readonly location: Bytes;
|
|
1849
|
+
readonly fileSize: Compact<u64>;
|
|
1850
|
+
readonly fingerprint: ShpFileMetadataFingerprint;
|
|
1688
1851
|
}
|
|
1689
|
-
/** @name
|
|
1690
|
-
interface
|
|
1691
|
-
readonly fileKeys: Vec<ITuple<[H256, PalletFileSystemRejectedStorageRequestReason]>>;
|
|
1692
|
-
readonly bucketId: H256;
|
|
1693
|
-
readonly owner: AccountId32;
|
|
1852
|
+
/** @name ShpFileMetadataFingerprint (154) */
|
|
1853
|
+
interface ShpFileMetadataFingerprint extends U8aFixed {
|
|
1694
1854
|
}
|
|
1695
|
-
/** @name PalletFileSystemRejectedStorageRequestReason (
|
|
1855
|
+
/** @name PalletFileSystemRejectedStorageRequestReason (159) */
|
|
1696
1856
|
interface PalletFileSystemRejectedStorageRequestReason extends Enum {
|
|
1697
1857
|
readonly isReachedMaximumCapacity: boolean;
|
|
1698
1858
|
readonly isReceivedInvalidProof: boolean;
|
|
1699
1859
|
readonly isFileKeyAlreadyStored: boolean;
|
|
1860
|
+
readonly isRequestExpired: boolean;
|
|
1700
1861
|
readonly isInternalError: boolean;
|
|
1701
|
-
readonly type: "ReachedMaximumCapacity" | "ReceivedInvalidProof" | "FileKeyAlreadyStored" | "InternalError";
|
|
1702
|
-
}
|
|
1703
|
-
/** @name PalletFileSystemMspFailedBatchStorageRequests (145) */
|
|
1704
|
-
interface PalletFileSystemMspFailedBatchStorageRequests extends Struct {
|
|
1705
|
-
readonly fileKeys: Vec<ITuple<[H256, SpRuntimeDispatchError]>>;
|
|
1706
|
-
readonly bucketId: H256;
|
|
1707
|
-
readonly owner: AccountId32;
|
|
1862
|
+
readonly type: "ReachedMaximumCapacity" | "ReceivedInvalidProof" | "FileKeyAlreadyStored" | "RequestExpired" | "InternalError";
|
|
1708
1863
|
}
|
|
1709
|
-
/** @name PalletFileSystemEitherAccountIdOrMspId (
|
|
1864
|
+
/** @name PalletFileSystemEitherAccountIdOrMspId (160) */
|
|
1710
1865
|
interface PalletFileSystemEitherAccountIdOrMspId extends Enum {
|
|
1711
1866
|
readonly isAccountId: boolean;
|
|
1712
1867
|
readonly asAccountId: AccountId32;
|
|
@@ -1714,17 +1869,44 @@ declare module "@polkadot/types/lookup" {
|
|
|
1714
1869
|
readonly asMspId: H256;
|
|
1715
1870
|
readonly type: "AccountId" | "MspId";
|
|
1716
1871
|
}
|
|
1717
|
-
/** @name
|
|
1872
|
+
/** @name PalletFileSystemFileOperationIntention (162) */
|
|
1873
|
+
interface PalletFileSystemFileOperationIntention extends Struct {
|
|
1874
|
+
readonly fileKey: H256;
|
|
1875
|
+
readonly operation: PalletFileSystemFileOperation;
|
|
1876
|
+
}
|
|
1877
|
+
/** @name PalletFileSystemFileOperation (163) */
|
|
1878
|
+
interface PalletFileSystemFileOperation extends Enum {
|
|
1879
|
+
readonly isDelete: boolean;
|
|
1880
|
+
readonly type: "Delete";
|
|
1881
|
+
}
|
|
1882
|
+
/** @name SpRuntimeMultiSignature (164) */
|
|
1883
|
+
interface SpRuntimeMultiSignature extends Enum {
|
|
1884
|
+
readonly isEd25519: boolean;
|
|
1885
|
+
readonly asEd25519: U8aFixed;
|
|
1886
|
+
readonly isSr25519: boolean;
|
|
1887
|
+
readonly asSr25519: U8aFixed;
|
|
1888
|
+
readonly isEcdsa: boolean;
|
|
1889
|
+
readonly asEcdsa: U8aFixed;
|
|
1890
|
+
readonly type: "Ed25519" | "Sr25519" | "Ecdsa";
|
|
1891
|
+
}
|
|
1892
|
+
/** @name PalletProofsDealerEvent (167) */
|
|
1718
1893
|
interface PalletProofsDealerEvent extends Enum {
|
|
1719
1894
|
readonly isNewChallenge: boolean;
|
|
1720
1895
|
readonly asNewChallenge: {
|
|
1721
|
-
readonly who: AccountId32
|
|
1896
|
+
readonly who: Option<AccountId32>;
|
|
1897
|
+
readonly keyChallenged: H256;
|
|
1898
|
+
} & Struct;
|
|
1899
|
+
readonly isNewPriorityChallenge: boolean;
|
|
1900
|
+
readonly asNewPriorityChallenge: {
|
|
1901
|
+
readonly who: Option<AccountId32>;
|
|
1722
1902
|
readonly keyChallenged: H256;
|
|
1903
|
+
readonly shouldRemoveKey: bool;
|
|
1723
1904
|
} & Struct;
|
|
1724
1905
|
readonly isProofAccepted: boolean;
|
|
1725
1906
|
readonly asProofAccepted: {
|
|
1726
|
-
readonly
|
|
1907
|
+
readonly providerId: H256;
|
|
1727
1908
|
readonly proof: PalletProofsDealerProof;
|
|
1909
|
+
readonly lastTickProven: u32;
|
|
1728
1910
|
} & Struct;
|
|
1729
1911
|
readonly isNewChallengeSeed: boolean;
|
|
1730
1912
|
readonly asNewChallengeSeed: {
|
|
@@ -1734,7 +1916,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1734
1916
|
readonly isNewCheckpointChallenge: boolean;
|
|
1735
1917
|
readonly asNewCheckpointChallenge: {
|
|
1736
1918
|
readonly challengesTicker: u32;
|
|
1737
|
-
readonly challenges: Vec<
|
|
1919
|
+
readonly challenges: Vec<PalletProofsDealerCustomChallenge>;
|
|
1738
1920
|
} & Struct;
|
|
1739
1921
|
readonly isSlashableProvider: boolean;
|
|
1740
1922
|
readonly asSlashableProvider: {
|
|
@@ -1752,51 +1934,67 @@ declare module "@polkadot/types/lookup" {
|
|
|
1752
1934
|
readonly provider: H256;
|
|
1753
1935
|
readonly maybeProviderAccount: Option<AccountId32>;
|
|
1754
1936
|
} & Struct;
|
|
1937
|
+
readonly isMutationsAppliedForProvider: boolean;
|
|
1938
|
+
readonly asMutationsAppliedForProvider: {
|
|
1939
|
+
readonly providerId: H256;
|
|
1940
|
+
readonly mutations: Vec<ITuple<[H256, ShpTraitsTrieMutation]>>;
|
|
1941
|
+
readonly oldRoot: H256;
|
|
1942
|
+
readonly newRoot: H256;
|
|
1943
|
+
} & Struct;
|
|
1755
1944
|
readonly isMutationsApplied: boolean;
|
|
1756
1945
|
readonly asMutationsApplied: {
|
|
1757
|
-
readonly
|
|
1758
|
-
readonly
|
|
1946
|
+
readonly mutations: Vec<ITuple<[H256, ShpTraitsTrieMutation]>>;
|
|
1947
|
+
readonly oldRoot: H256;
|
|
1759
1948
|
readonly newRoot: H256;
|
|
1949
|
+
readonly eventInfo: Option<Bytes>;
|
|
1760
1950
|
} & Struct;
|
|
1761
1951
|
readonly isChallengesTickerSet: boolean;
|
|
1762
1952
|
readonly asChallengesTickerSet: {
|
|
1763
1953
|
readonly paused: bool;
|
|
1764
1954
|
} & Struct;
|
|
1765
|
-
readonly type: "NewChallenge" | "ProofAccepted" | "NewChallengeSeed" | "NewCheckpointChallenge" | "SlashableProvider" | "NoRecordOfLastSubmittedProof" | "NewChallengeCycleInitialised" | "MutationsApplied" | "ChallengesTickerSet";
|
|
1955
|
+
readonly type: "NewChallenge" | "NewPriorityChallenge" | "ProofAccepted" | "NewChallengeSeed" | "NewCheckpointChallenge" | "SlashableProvider" | "NoRecordOfLastSubmittedProof" | "NewChallengeCycleInitialised" | "MutationsAppliedForProvider" | "MutationsApplied" | "ChallengesTickerSet";
|
|
1766
1956
|
}
|
|
1767
|
-
/** @name PalletProofsDealerProof (
|
|
1957
|
+
/** @name PalletProofsDealerProof (168) */
|
|
1768
1958
|
interface PalletProofsDealerProof extends Struct {
|
|
1769
1959
|
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
1770
1960
|
readonly keyProofs: BTreeMap<H256, PalletProofsDealerKeyProof>;
|
|
1771
1961
|
}
|
|
1772
|
-
/** @name SpTrieStorageProofCompactProof (
|
|
1962
|
+
/** @name SpTrieStorageProofCompactProof (169) */
|
|
1773
1963
|
interface SpTrieStorageProofCompactProof extends Struct {
|
|
1774
1964
|
readonly encodedNodes: Vec<Bytes>;
|
|
1775
1965
|
}
|
|
1776
|
-
/** @name PalletProofsDealerKeyProof (
|
|
1966
|
+
/** @name PalletProofsDealerKeyProof (172) */
|
|
1777
1967
|
interface PalletProofsDealerKeyProof extends Struct {
|
|
1778
1968
|
readonly proof: ShpFileKeyVerifierFileKeyProof;
|
|
1779
1969
|
readonly challengeCount: u32;
|
|
1780
1970
|
}
|
|
1781
|
-
/** @name ShpFileKeyVerifierFileKeyProof (
|
|
1971
|
+
/** @name ShpFileKeyVerifierFileKeyProof (173) */
|
|
1782
1972
|
interface ShpFileKeyVerifierFileKeyProof extends Struct {
|
|
1783
1973
|
readonly fileMetadata: ShpFileMetadataFileMetadata;
|
|
1784
1974
|
readonly proof: SpTrieStorageProofCompactProof;
|
|
1785
1975
|
}
|
|
1786
|
-
/** @name
|
|
1787
|
-
interface
|
|
1788
|
-
readonly
|
|
1789
|
-
readonly
|
|
1790
|
-
readonly location: Bytes;
|
|
1791
|
-
readonly fileSize: Compact<u64>;
|
|
1792
|
-
readonly fingerprint: ShpFileMetadataFingerprint;
|
|
1976
|
+
/** @name PalletProofsDealerCustomChallenge (177) */
|
|
1977
|
+
interface PalletProofsDealerCustomChallenge extends Struct {
|
|
1978
|
+
readonly key: H256;
|
|
1979
|
+
readonly shouldRemoveKey: bool;
|
|
1793
1980
|
}
|
|
1794
|
-
/** @name
|
|
1795
|
-
interface
|
|
1981
|
+
/** @name ShpTraitsTrieMutation (181) */
|
|
1982
|
+
interface ShpTraitsTrieMutation extends Enum {
|
|
1983
|
+
readonly isAdd: boolean;
|
|
1984
|
+
readonly asAdd: ShpTraitsTrieAddMutation;
|
|
1985
|
+
readonly isRemove: boolean;
|
|
1986
|
+
readonly asRemove: ShpTraitsTrieRemoveMutation;
|
|
1987
|
+
readonly type: "Add" | "Remove";
|
|
1796
1988
|
}
|
|
1797
|
-
/** @name
|
|
1798
|
-
|
|
1799
|
-
|
|
1989
|
+
/** @name ShpTraitsTrieAddMutation (182) */
|
|
1990
|
+
interface ShpTraitsTrieAddMutation extends Struct {
|
|
1991
|
+
readonly value: Bytes;
|
|
1992
|
+
}
|
|
1993
|
+
/** @name ShpTraitsTrieRemoveMutation (183) */
|
|
1994
|
+
interface ShpTraitsTrieRemoveMutation extends Struct {
|
|
1995
|
+
readonly maybeValue: Option<Bytes>;
|
|
1996
|
+
}
|
|
1997
|
+
/** @name PalletRandomnessEvent (185) */
|
|
1800
1998
|
interface PalletRandomnessEvent extends Enum {
|
|
1801
1999
|
readonly isNewOneEpochAgoRandomnessAvailable: boolean;
|
|
1802
2000
|
readonly asNewOneEpochAgoRandomnessAvailable: {
|
|
@@ -1806,7 +2004,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1806
2004
|
} & Struct;
|
|
1807
2005
|
readonly type: "NewOneEpochAgoRandomnessAvailable";
|
|
1808
2006
|
}
|
|
1809
|
-
/** @name PalletPaymentStreamsEvent (
|
|
2007
|
+
/** @name PalletPaymentStreamsEvent (186) */
|
|
1810
2008
|
interface PalletPaymentStreamsEvent extends Enum {
|
|
1811
2009
|
readonly isFixedRatePaymentStreamCreated: boolean;
|
|
1812
2010
|
readonly asFixedRatePaymentStreamCreated: {
|
|
@@ -1850,6 +2048,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
1850
2048
|
readonly lastTickCharged: u32;
|
|
1851
2049
|
readonly chargedAtTick: u32;
|
|
1852
2050
|
} & Struct;
|
|
2051
|
+
readonly isUsersCharged: boolean;
|
|
2052
|
+
readonly asUsersCharged: {
|
|
2053
|
+
readonly userAccounts: Vec<AccountId32>;
|
|
2054
|
+
readonly providerId: H256;
|
|
2055
|
+
readonly chargedAtTick: u32;
|
|
2056
|
+
} & Struct;
|
|
1853
2057
|
readonly isLastChargeableInfoUpdated: boolean;
|
|
1854
2058
|
readonly asLastChargeableInfoUpdated: {
|
|
1855
2059
|
readonly providerId: H256;
|
|
@@ -1860,17 +2064,26 @@ declare module "@polkadot/types/lookup" {
|
|
|
1860
2064
|
readonly asUserWithoutFunds: {
|
|
1861
2065
|
readonly who: AccountId32;
|
|
1862
2066
|
} & Struct;
|
|
1863
|
-
readonly
|
|
1864
|
-
readonly
|
|
2067
|
+
readonly isUserPaidAllDebts: boolean;
|
|
2068
|
+
readonly asUserPaidAllDebts: {
|
|
2069
|
+
readonly who: AccountId32;
|
|
2070
|
+
} & Struct;
|
|
2071
|
+
readonly isUserPaidSomeDebts: boolean;
|
|
2072
|
+
readonly asUserPaidSomeDebts: {
|
|
1865
2073
|
readonly who: AccountId32;
|
|
1866
2074
|
} & Struct;
|
|
1867
2075
|
readonly isUserSolvent: boolean;
|
|
1868
2076
|
readonly asUserSolvent: {
|
|
1869
2077
|
readonly who: AccountId32;
|
|
1870
2078
|
} & Struct;
|
|
1871
|
-
readonly
|
|
2079
|
+
readonly isInconsistentTickProcessing: boolean;
|
|
2080
|
+
readonly asInconsistentTickProcessing: {
|
|
2081
|
+
readonly lastProcessedTick: u32;
|
|
2082
|
+
readonly tickToProcess: u32;
|
|
2083
|
+
} & Struct;
|
|
2084
|
+
readonly type: "FixedRatePaymentStreamCreated" | "FixedRatePaymentStreamUpdated" | "FixedRatePaymentStreamDeleted" | "DynamicRatePaymentStreamCreated" | "DynamicRatePaymentStreamUpdated" | "DynamicRatePaymentStreamDeleted" | "PaymentStreamCharged" | "UsersCharged" | "LastChargeableInfoUpdated" | "UserWithoutFunds" | "UserPaidAllDebts" | "UserPaidSomeDebts" | "UserSolvent" | "InconsistentTickProcessing";
|
|
1872
2085
|
}
|
|
1873
|
-
/** @name PalletBucketNftsEvent (
|
|
2086
|
+
/** @name PalletBucketNftsEvent (188) */
|
|
1874
2087
|
interface PalletBucketNftsEvent extends Enum {
|
|
1875
2088
|
readonly isAccessShared: boolean;
|
|
1876
2089
|
readonly asAccessShared: {
|
|
@@ -1891,7 +2104,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
1891
2104
|
} & Struct;
|
|
1892
2105
|
readonly type: "AccessShared" | "ItemReadAccessUpdated" | "ItemBurned";
|
|
1893
2106
|
}
|
|
1894
|
-
/** @name PalletNftsEvent (
|
|
2107
|
+
/** @name PalletNftsEvent (189) */
|
|
1895
2108
|
interface PalletNftsEvent extends Enum {
|
|
1896
2109
|
readonly isCreated: boolean;
|
|
1897
2110
|
readonly asCreated: {
|
|
@@ -2127,7 +2340,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
2127
2340
|
} & Struct;
|
|
2128
2341
|
readonly type: "Created" | "ForceCreated" | "Destroyed" | "Issued" | "Transferred" | "Burned" | "ItemTransferLocked" | "ItemTransferUnlocked" | "ItemPropertiesLocked" | "CollectionLocked" | "OwnerChanged" | "TeamChanged" | "TransferApproved" | "ApprovalCancelled" | "AllApprovalsCancelled" | "CollectionConfigChanged" | "CollectionMetadataSet" | "CollectionMetadataCleared" | "ItemMetadataSet" | "ItemMetadataCleared" | "Redeposited" | "AttributeSet" | "AttributeCleared" | "ItemAttributesApprovalAdded" | "ItemAttributesApprovalRemoved" | "OwnershipAcceptanceChanged" | "CollectionMaxSupplySet" | "CollectionMintSettingsUpdated" | "NextCollectionIdIncremented" | "ItemPriceSet" | "ItemPriceRemoved" | "ItemBought" | "TipSent" | "SwapCreated" | "SwapCancelled" | "SwapClaimed" | "PreSignedAttributesSet" | "PalletAttributeSet";
|
|
2129
2342
|
}
|
|
2130
|
-
/** @name PalletNftsAttributeNamespace (
|
|
2343
|
+
/** @name PalletNftsAttributeNamespace (193) */
|
|
2131
2344
|
interface PalletNftsAttributeNamespace extends Enum {
|
|
2132
2345
|
readonly isPallet: boolean;
|
|
2133
2346
|
readonly isCollectionOwner: boolean;
|
|
@@ -2136,64 +2349,142 @@ declare module "@polkadot/types/lookup" {
|
|
|
2136
2349
|
readonly asAccount: AccountId32;
|
|
2137
2350
|
readonly type: "Pallet" | "CollectionOwner" | "ItemOwner" | "Account";
|
|
2138
2351
|
}
|
|
2139
|
-
/** @name PalletNftsPriceWithDirection (
|
|
2352
|
+
/** @name PalletNftsPriceWithDirection (195) */
|
|
2140
2353
|
interface PalletNftsPriceWithDirection extends Struct {
|
|
2141
2354
|
readonly amount: u128;
|
|
2142
2355
|
readonly direction: PalletNftsPriceDirection;
|
|
2143
2356
|
}
|
|
2144
|
-
/** @name PalletNftsPriceDirection (
|
|
2357
|
+
/** @name PalletNftsPriceDirection (196) */
|
|
2145
2358
|
interface PalletNftsPriceDirection extends Enum {
|
|
2146
2359
|
readonly isSend: boolean;
|
|
2147
2360
|
readonly isReceive: boolean;
|
|
2148
2361
|
readonly type: "Send" | "Receive";
|
|
2149
2362
|
}
|
|
2150
|
-
/** @name PalletNftsPalletAttributes (
|
|
2363
|
+
/** @name PalletNftsPalletAttributes (197) */
|
|
2151
2364
|
interface PalletNftsPalletAttributes extends Enum {
|
|
2152
2365
|
readonly isUsedToClaim: boolean;
|
|
2153
2366
|
readonly asUsedToClaim: u32;
|
|
2154
2367
|
readonly isTransferDisabled: boolean;
|
|
2155
2368
|
readonly type: "UsedToClaim" | "TransferDisabled";
|
|
2156
2369
|
}
|
|
2157
|
-
/** @name PalletParametersEvent (
|
|
2370
|
+
/** @name PalletParametersEvent (198) */
|
|
2158
2371
|
interface PalletParametersEvent extends Enum {
|
|
2159
2372
|
readonly isUpdated: boolean;
|
|
2160
2373
|
readonly asUpdated: {
|
|
2161
|
-
readonly key:
|
|
2162
|
-
readonly oldValue: Option<
|
|
2163
|
-
readonly newValue: Option<
|
|
2374
|
+
readonly key: ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey;
|
|
2375
|
+
readonly oldValue: Option<ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue>;
|
|
2376
|
+
readonly newValue: Option<ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue>;
|
|
2164
2377
|
} & Struct;
|
|
2165
2378
|
readonly type: "Updated";
|
|
2166
2379
|
}
|
|
2167
|
-
/** @name
|
|
2168
|
-
interface
|
|
2380
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey (199) */
|
|
2381
|
+
interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey extends Enum {
|
|
2169
2382
|
readonly isRuntimeConfig: boolean;
|
|
2170
|
-
readonly asRuntimeConfig:
|
|
2383
|
+
readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey;
|
|
2171
2384
|
readonly type: "RuntimeConfig";
|
|
2172
2385
|
}
|
|
2173
|
-
/** @name
|
|
2174
|
-
interface
|
|
2386
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey (200) */
|
|
2387
|
+
interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey extends Enum {
|
|
2175
2388
|
readonly isSlashAmountPerMaxFileSize: boolean;
|
|
2176
2389
|
readonly isStakeToChallengePeriod: boolean;
|
|
2177
2390
|
readonly isCheckpointChallengePeriod: boolean;
|
|
2178
2391
|
readonly isMinChallengePeriod: boolean;
|
|
2179
|
-
readonly
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2392
|
+
readonly isSystemUtilisationLowerThresholdPercentage: boolean;
|
|
2393
|
+
readonly isSystemUtilisationUpperThresholdPercentage: boolean;
|
|
2394
|
+
readonly isMostlyStablePrice: boolean;
|
|
2395
|
+
readonly isMaxPrice: boolean;
|
|
2396
|
+
readonly isMinPrice: boolean;
|
|
2397
|
+
readonly isUpperExponentFactor: boolean;
|
|
2398
|
+
readonly isLowerExponentFactor: boolean;
|
|
2399
|
+
readonly isZeroSizeBucketFixedRate: boolean;
|
|
2400
|
+
readonly isIdealUtilisationRate: boolean;
|
|
2401
|
+
readonly isDecayRate: boolean;
|
|
2402
|
+
readonly isMinimumTreasuryCut: boolean;
|
|
2403
|
+
readonly isMaximumTreasuryCut: boolean;
|
|
2404
|
+
readonly isBspStopStoringFilePenalty: boolean;
|
|
2405
|
+
readonly isProviderTopUpTtl: boolean;
|
|
2406
|
+
readonly isBasicReplicationTarget: boolean;
|
|
2407
|
+
readonly isStandardReplicationTarget: boolean;
|
|
2408
|
+
readonly isHighSecurityReplicationTarget: boolean;
|
|
2409
|
+
readonly isSuperHighSecurityReplicationTarget: boolean;
|
|
2410
|
+
readonly isUltraHighSecurityReplicationTarget: boolean;
|
|
2411
|
+
readonly isMaxReplicationTarget: boolean;
|
|
2412
|
+
readonly isTickRangeToMaximumThreshold: boolean;
|
|
2413
|
+
readonly isStorageRequestTtl: boolean;
|
|
2414
|
+
readonly isMinWaitForStopStoring: boolean;
|
|
2415
|
+
readonly isMinSeedPeriod: boolean;
|
|
2416
|
+
readonly isStakeToSeedPeriod: boolean;
|
|
2417
|
+
readonly isUpfrontTicksToPay: boolean;
|
|
2418
|
+
readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
|
|
2419
|
+
}
|
|
2420
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize (201) */
|
|
2421
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize = Null;
|
|
2422
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod (202) */
|
|
2423
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod = Null;
|
|
2424
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod (203) */
|
|
2425
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod = Null;
|
|
2426
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod (204) */
|
|
2427
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod = Null;
|
|
2428
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage (205) */
|
|
2429
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage = Null;
|
|
2430
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage (206) */
|
|
2431
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage = Null;
|
|
2432
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice (207) */
|
|
2433
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice = Null;
|
|
2434
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice (208) */
|
|
2435
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice = Null;
|
|
2436
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice (209) */
|
|
2437
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice = Null;
|
|
2438
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor (210) */
|
|
2439
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor = Null;
|
|
2440
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor (211) */
|
|
2441
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor = Null;
|
|
2442
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate (212) */
|
|
2443
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate = Null;
|
|
2444
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate (213) */
|
|
2445
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate = Null;
|
|
2446
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate (214) */
|
|
2447
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate = Null;
|
|
2448
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut (215) */
|
|
2449
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut = Null;
|
|
2450
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut (216) */
|
|
2451
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut = Null;
|
|
2452
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty (217) */
|
|
2453
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty = Null;
|
|
2454
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl (218) */
|
|
2455
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl = Null;
|
|
2456
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget (219) */
|
|
2457
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget = Null;
|
|
2458
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget (220) */
|
|
2459
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget = Null;
|
|
2460
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget (221) */
|
|
2461
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget = Null;
|
|
2462
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget (222) */
|
|
2463
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget = Null;
|
|
2464
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget (223) */
|
|
2465
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget = Null;
|
|
2466
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget (224) */
|
|
2467
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget = Null;
|
|
2468
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold (225) */
|
|
2469
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold = Null;
|
|
2470
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl (226) */
|
|
2471
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl = Null;
|
|
2472
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring (227) */
|
|
2473
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring = Null;
|
|
2474
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod (228) */
|
|
2475
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod = Null;
|
|
2476
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod (229) */
|
|
2477
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod = Null;
|
|
2478
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay (230) */
|
|
2479
|
+
type ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay = Null;
|
|
2480
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue (232) */
|
|
2481
|
+
interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue extends Enum {
|
|
2191
2482
|
readonly isRuntimeConfig: boolean;
|
|
2192
|
-
readonly asRuntimeConfig:
|
|
2483
|
+
readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue;
|
|
2193
2484
|
readonly type: "RuntimeConfig";
|
|
2194
2485
|
}
|
|
2195
|
-
/** @name
|
|
2196
|
-
interface
|
|
2486
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue (233) */
|
|
2487
|
+
interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue extends Enum {
|
|
2197
2488
|
readonly isSlashAmountPerMaxFileSize: boolean;
|
|
2198
2489
|
readonly asSlashAmountPerMaxFileSize: u128;
|
|
2199
2490
|
readonly isStakeToChallengePeriod: boolean;
|
|
@@ -2202,9 +2493,61 @@ declare module "@polkadot/types/lookup" {
|
|
|
2202
2493
|
readonly asCheckpointChallengePeriod: u32;
|
|
2203
2494
|
readonly isMinChallengePeriod: boolean;
|
|
2204
2495
|
readonly asMinChallengePeriod: u32;
|
|
2205
|
-
readonly
|
|
2206
|
-
|
|
2207
|
-
|
|
2496
|
+
readonly isSystemUtilisationLowerThresholdPercentage: boolean;
|
|
2497
|
+
readonly asSystemUtilisationLowerThresholdPercentage: Perbill;
|
|
2498
|
+
readonly isSystemUtilisationUpperThresholdPercentage: boolean;
|
|
2499
|
+
readonly asSystemUtilisationUpperThresholdPercentage: Perbill;
|
|
2500
|
+
readonly isMostlyStablePrice: boolean;
|
|
2501
|
+
readonly asMostlyStablePrice: u128;
|
|
2502
|
+
readonly isMaxPrice: boolean;
|
|
2503
|
+
readonly asMaxPrice: u128;
|
|
2504
|
+
readonly isMinPrice: boolean;
|
|
2505
|
+
readonly asMinPrice: u128;
|
|
2506
|
+
readonly isUpperExponentFactor: boolean;
|
|
2507
|
+
readonly asUpperExponentFactor: u32;
|
|
2508
|
+
readonly isLowerExponentFactor: boolean;
|
|
2509
|
+
readonly asLowerExponentFactor: u32;
|
|
2510
|
+
readonly isZeroSizeBucketFixedRate: boolean;
|
|
2511
|
+
readonly asZeroSizeBucketFixedRate: u128;
|
|
2512
|
+
readonly isIdealUtilisationRate: boolean;
|
|
2513
|
+
readonly asIdealUtilisationRate: Perbill;
|
|
2514
|
+
readonly isDecayRate: boolean;
|
|
2515
|
+
readonly asDecayRate: Perbill;
|
|
2516
|
+
readonly isMinimumTreasuryCut: boolean;
|
|
2517
|
+
readonly asMinimumTreasuryCut: Perbill;
|
|
2518
|
+
readonly isMaximumTreasuryCut: boolean;
|
|
2519
|
+
readonly asMaximumTreasuryCut: Perbill;
|
|
2520
|
+
readonly isBspStopStoringFilePenalty: boolean;
|
|
2521
|
+
readonly asBspStopStoringFilePenalty: u128;
|
|
2522
|
+
readonly isProviderTopUpTtl: boolean;
|
|
2523
|
+
readonly asProviderTopUpTtl: u32;
|
|
2524
|
+
readonly isBasicReplicationTarget: boolean;
|
|
2525
|
+
readonly asBasicReplicationTarget: u32;
|
|
2526
|
+
readonly isStandardReplicationTarget: boolean;
|
|
2527
|
+
readonly asStandardReplicationTarget: u32;
|
|
2528
|
+
readonly isHighSecurityReplicationTarget: boolean;
|
|
2529
|
+
readonly asHighSecurityReplicationTarget: u32;
|
|
2530
|
+
readonly isSuperHighSecurityReplicationTarget: boolean;
|
|
2531
|
+
readonly asSuperHighSecurityReplicationTarget: u32;
|
|
2532
|
+
readonly isUltraHighSecurityReplicationTarget: boolean;
|
|
2533
|
+
readonly asUltraHighSecurityReplicationTarget: u32;
|
|
2534
|
+
readonly isMaxReplicationTarget: boolean;
|
|
2535
|
+
readonly asMaxReplicationTarget: u32;
|
|
2536
|
+
readonly isTickRangeToMaximumThreshold: boolean;
|
|
2537
|
+
readonly asTickRangeToMaximumThreshold: u32;
|
|
2538
|
+
readonly isStorageRequestTtl: boolean;
|
|
2539
|
+
readonly asStorageRequestTtl: u32;
|
|
2540
|
+
readonly isMinWaitForStopStoring: boolean;
|
|
2541
|
+
readonly asMinWaitForStopStoring: u32;
|
|
2542
|
+
readonly isMinSeedPeriod: boolean;
|
|
2543
|
+
readonly asMinSeedPeriod: u32;
|
|
2544
|
+
readonly isStakeToSeedPeriod: boolean;
|
|
2545
|
+
readonly asStakeToSeedPeriod: u128;
|
|
2546
|
+
readonly isUpfrontTicksToPay: boolean;
|
|
2547
|
+
readonly asUpfrontTicksToPay: u32;
|
|
2548
|
+
readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
|
|
2549
|
+
}
|
|
2550
|
+
/** @name FrameSystemPhase (235) */
|
|
2208
2551
|
interface FrameSystemPhase extends Enum {
|
|
2209
2552
|
readonly isApplyExtrinsic: boolean;
|
|
2210
2553
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2212,17 +2555,17 @@ declare module "@polkadot/types/lookup" {
|
|
|
2212
2555
|
readonly isInitialization: boolean;
|
|
2213
2556
|
readonly type: "ApplyExtrinsic" | "Finalization" | "Initialization";
|
|
2214
2557
|
}
|
|
2215
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2558
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (238) */
|
|
2216
2559
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2217
2560
|
readonly specVersion: Compact<u32>;
|
|
2218
2561
|
readonly specName: Text;
|
|
2219
2562
|
}
|
|
2220
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2563
|
+
/** @name FrameSystemCodeUpgradeAuthorization (241) */
|
|
2221
2564
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2222
2565
|
readonly codeHash: H256;
|
|
2223
2566
|
readonly checkVersion: bool;
|
|
2224
2567
|
}
|
|
2225
|
-
/** @name FrameSystemCall (
|
|
2568
|
+
/** @name FrameSystemCall (242) */
|
|
2226
2569
|
interface FrameSystemCall extends Enum {
|
|
2227
2570
|
readonly isRemark: boolean;
|
|
2228
2571
|
readonly asRemark: {
|
|
@@ -2271,41 +2614,41 @@ declare module "@polkadot/types/lookup" {
|
|
|
2271
2614
|
} & Struct;
|
|
2272
2615
|
readonly type: "Remark" | "SetHeapPages" | "SetCode" | "SetCodeWithoutChecks" | "SetStorage" | "KillStorage" | "KillPrefix" | "RemarkWithEvent" | "AuthorizeUpgrade" | "AuthorizeUpgradeWithoutChecks" | "ApplyAuthorizedUpgrade";
|
|
2273
2616
|
}
|
|
2274
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2617
|
+
/** @name FrameSystemLimitsBlockWeights (245) */
|
|
2275
2618
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2276
2619
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2277
2620
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2278
2621
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2279
2622
|
}
|
|
2280
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2623
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (246) */
|
|
2281
2624
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2282
2625
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2283
2626
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2284
2627
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2285
2628
|
}
|
|
2286
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2629
|
+
/** @name FrameSystemLimitsWeightsPerClass (247) */
|
|
2287
2630
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2288
2631
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2289
2632
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2290
2633
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2291
2634
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2292
2635
|
}
|
|
2293
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2636
|
+
/** @name FrameSystemLimitsBlockLength (248) */
|
|
2294
2637
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2295
2638
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2296
2639
|
}
|
|
2297
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2640
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (249) */
|
|
2298
2641
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2299
2642
|
readonly normal: u32;
|
|
2300
2643
|
readonly operational: u32;
|
|
2301
2644
|
readonly mandatory: u32;
|
|
2302
2645
|
}
|
|
2303
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2646
|
+
/** @name SpWeightsRuntimeDbWeight (250) */
|
|
2304
2647
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2305
2648
|
readonly read: u64;
|
|
2306
2649
|
readonly write: u64;
|
|
2307
2650
|
}
|
|
2308
|
-
/** @name SpVersionRuntimeVersion (
|
|
2651
|
+
/** @name SpVersionRuntimeVersion (251) */
|
|
2309
2652
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2310
2653
|
readonly specName: Text;
|
|
2311
2654
|
readonly implName: Text;
|
|
@@ -2314,9 +2657,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
2314
2657
|
readonly implVersion: u32;
|
|
2315
2658
|
readonly apis: Vec<ITuple<[U8aFixed, u32]>>;
|
|
2316
2659
|
readonly transactionVersion: u32;
|
|
2317
|
-
readonly
|
|
2660
|
+
readonly systemVersion: u8;
|
|
2318
2661
|
}
|
|
2319
|
-
/** @name FrameSystemError (
|
|
2662
|
+
/** @name FrameSystemError (256) */
|
|
2320
2663
|
interface FrameSystemError extends Enum {
|
|
2321
2664
|
readonly isInvalidSpecName: boolean;
|
|
2322
2665
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2329,65 +2672,65 @@ declare module "@polkadot/types/lookup" {
|
|
|
2329
2672
|
readonly isUnauthorized: boolean;
|
|
2330
2673
|
readonly type: "InvalidSpecName" | "SpecVersionNeedsToIncrease" | "FailedToExtractRuntimeVersion" | "NonDefaultComposite" | "NonZeroRefCount" | "CallFiltered" | "MultiBlockMigrationsOngoing" | "NothingAuthorized" | "Unauthorized";
|
|
2331
2674
|
}
|
|
2332
|
-
/** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (
|
|
2675
|
+
/** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (258) */
|
|
2333
2676
|
interface CumulusPalletParachainSystemUnincludedSegmentAncestor extends Struct {
|
|
2334
2677
|
readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
2335
2678
|
readonly paraHeadHash: Option<H256>;
|
|
2336
|
-
readonly consumedGoAheadSignal: Option<
|
|
2679
|
+
readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
|
|
2337
2680
|
}
|
|
2338
|
-
/** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (
|
|
2681
|
+
/** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (259) */
|
|
2339
2682
|
interface CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth extends Struct {
|
|
2340
2683
|
readonly umpMsgCount: u32;
|
|
2341
2684
|
readonly umpTotalBytes: u32;
|
|
2342
2685
|
readonly hrmpOutgoing: BTreeMap<u32, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate>;
|
|
2343
2686
|
}
|
|
2344
|
-
/** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (
|
|
2687
|
+
/** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (261) */
|
|
2345
2688
|
interface CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate extends Struct {
|
|
2346
2689
|
readonly msgCount: u32;
|
|
2347
2690
|
readonly totalBytes: u32;
|
|
2348
2691
|
}
|
|
2349
|
-
/** @name
|
|
2350
|
-
interface
|
|
2692
|
+
/** @name PolkadotPrimitivesV8UpgradeGoAhead (265) */
|
|
2693
|
+
interface PolkadotPrimitivesV8UpgradeGoAhead extends Enum {
|
|
2351
2694
|
readonly isAbort: boolean;
|
|
2352
2695
|
readonly isGoAhead: boolean;
|
|
2353
2696
|
readonly type: "Abort" | "GoAhead";
|
|
2354
2697
|
}
|
|
2355
|
-
/** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (
|
|
2698
|
+
/** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (266) */
|
|
2356
2699
|
interface CumulusPalletParachainSystemUnincludedSegmentSegmentTracker extends Struct {
|
|
2357
2700
|
readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth;
|
|
2358
2701
|
readonly hrmpWatermark: Option<u32>;
|
|
2359
|
-
readonly consumedGoAheadSignal: Option<
|
|
2702
|
+
readonly consumedGoAheadSignal: Option<PolkadotPrimitivesV8UpgradeGoAhead>;
|
|
2360
2703
|
}
|
|
2361
|
-
/** @name
|
|
2362
|
-
interface
|
|
2704
|
+
/** @name PolkadotPrimitivesV8PersistedValidationData (267) */
|
|
2705
|
+
interface PolkadotPrimitivesV8PersistedValidationData extends Struct {
|
|
2363
2706
|
readonly parentHead: Bytes;
|
|
2364
2707
|
readonly relayParentNumber: u32;
|
|
2365
2708
|
readonly relayParentStorageRoot: H256;
|
|
2366
2709
|
readonly maxPovSize: u32;
|
|
2367
2710
|
}
|
|
2368
|
-
/** @name
|
|
2369
|
-
interface
|
|
2711
|
+
/** @name PolkadotPrimitivesV8UpgradeRestriction (270) */
|
|
2712
|
+
interface PolkadotPrimitivesV8UpgradeRestriction extends Enum {
|
|
2370
2713
|
readonly isPresent: boolean;
|
|
2371
2714
|
readonly type: "Present";
|
|
2372
2715
|
}
|
|
2373
|
-
/** @name SpTrieStorageProof (
|
|
2716
|
+
/** @name SpTrieStorageProof (271) */
|
|
2374
2717
|
interface SpTrieStorageProof extends Struct {
|
|
2375
2718
|
readonly trieNodes: BTreeSet<Bytes>;
|
|
2376
2719
|
}
|
|
2377
|
-
/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (
|
|
2720
|
+
/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (273) */
|
|
2378
2721
|
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
|
|
2379
2722
|
readonly dmqMqcHead: H256;
|
|
2380
2723
|
readonly relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity;
|
|
2381
|
-
readonly ingressChannels: Vec<ITuple<[u32,
|
|
2382
|
-
readonly egressChannels: Vec<ITuple<[u32,
|
|
2724
|
+
readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV8AbridgedHrmpChannel]>>;
|
|
2725
|
+
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV8AbridgedHrmpChannel]>>;
|
|
2383
2726
|
}
|
|
2384
|
-
/** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (
|
|
2727
|
+
/** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (274) */
|
|
2385
2728
|
interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity extends Struct {
|
|
2386
2729
|
readonly remainingCount: u32;
|
|
2387
2730
|
readonly remainingSize: u32;
|
|
2388
2731
|
}
|
|
2389
|
-
/** @name
|
|
2390
|
-
interface
|
|
2732
|
+
/** @name PolkadotPrimitivesV8AbridgedHrmpChannel (277) */
|
|
2733
|
+
interface PolkadotPrimitivesV8AbridgedHrmpChannel extends Struct {
|
|
2391
2734
|
readonly maxCapacity: u32;
|
|
2392
2735
|
readonly maxTotalSize: u32;
|
|
2393
2736
|
readonly maxMessageSize: u32;
|
|
@@ -2395,8 +2738,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
2395
2738
|
readonly totalSize: u32;
|
|
2396
2739
|
readonly mqcHead: Option<H256>;
|
|
2397
2740
|
}
|
|
2398
|
-
/** @name
|
|
2399
|
-
interface
|
|
2741
|
+
/** @name PolkadotPrimitivesV8AbridgedHostConfiguration (278) */
|
|
2742
|
+
interface PolkadotPrimitivesV8AbridgedHostConfiguration extends Struct {
|
|
2400
2743
|
readonly maxCodeSize: u32;
|
|
2401
2744
|
readonly maxHeadDataSize: u32;
|
|
2402
2745
|
readonly maxUpwardQueueCount: u32;
|
|
@@ -2406,19 +2749,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
2406
2749
|
readonly hrmpMaxMessageNumPerCandidate: u32;
|
|
2407
2750
|
readonly validationUpgradeCooldown: u32;
|
|
2408
2751
|
readonly validationUpgradeDelay: u32;
|
|
2409
|
-
readonly asyncBackingParams:
|
|
2752
|
+
readonly asyncBackingParams: PolkadotPrimitivesV8AsyncBackingAsyncBackingParams;
|
|
2410
2753
|
}
|
|
2411
|
-
/** @name
|
|
2412
|
-
interface
|
|
2754
|
+
/** @name PolkadotPrimitivesV8AsyncBackingAsyncBackingParams (279) */
|
|
2755
|
+
interface PolkadotPrimitivesV8AsyncBackingAsyncBackingParams extends Struct {
|
|
2413
2756
|
readonly maxCandidateDepth: u32;
|
|
2414
2757
|
readonly allowedAncestryLen: u32;
|
|
2415
2758
|
}
|
|
2416
|
-
/** @name PolkadotCorePrimitivesOutboundHrmpMessage (
|
|
2759
|
+
/** @name PolkadotCorePrimitivesOutboundHrmpMessage (285) */
|
|
2417
2760
|
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
|
|
2418
2761
|
readonly recipient: u32;
|
|
2419
2762
|
readonly data: Bytes;
|
|
2420
2763
|
}
|
|
2421
|
-
/** @name CumulusPalletParachainSystemCall (
|
|
2764
|
+
/** @name CumulusPalletParachainSystemCall (287) */
|
|
2422
2765
|
interface CumulusPalletParachainSystemCall extends Enum {
|
|
2423
2766
|
readonly isSetValidationData: boolean;
|
|
2424
2767
|
readonly asSetValidationData: {
|
|
@@ -2428,35 +2771,26 @@ declare module "@polkadot/types/lookup" {
|
|
|
2428
2771
|
readonly asSudoSendUpwardMessage: {
|
|
2429
2772
|
readonly message: Bytes;
|
|
2430
2773
|
} & Struct;
|
|
2431
|
-
readonly
|
|
2432
|
-
readonly asAuthorizeUpgrade: {
|
|
2433
|
-
readonly codeHash: H256;
|
|
2434
|
-
readonly checkVersion: bool;
|
|
2435
|
-
} & Struct;
|
|
2436
|
-
readonly isEnactAuthorizedUpgrade: boolean;
|
|
2437
|
-
readonly asEnactAuthorizedUpgrade: {
|
|
2438
|
-
readonly code: Bytes;
|
|
2439
|
-
} & Struct;
|
|
2440
|
-
readonly type: "SetValidationData" | "SudoSendUpwardMessage" | "AuthorizeUpgrade" | "EnactAuthorizedUpgrade";
|
|
2774
|
+
readonly type: "SetValidationData" | "SudoSendUpwardMessage";
|
|
2441
2775
|
}
|
|
2442
|
-
/** @name CumulusPrimitivesParachainInherentParachainInherentData (
|
|
2776
|
+
/** @name CumulusPrimitivesParachainInherentParachainInherentData (288) */
|
|
2443
2777
|
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
|
|
2444
|
-
readonly validationData:
|
|
2778
|
+
readonly validationData: PolkadotPrimitivesV8PersistedValidationData;
|
|
2445
2779
|
readonly relayChainState: SpTrieStorageProof;
|
|
2446
2780
|
readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
|
|
2447
2781
|
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
|
|
2448
2782
|
}
|
|
2449
|
-
/** @name PolkadotCorePrimitivesInboundDownwardMessage (
|
|
2783
|
+
/** @name PolkadotCorePrimitivesInboundDownwardMessage (290) */
|
|
2450
2784
|
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
|
|
2451
2785
|
readonly sentAt: u32;
|
|
2452
2786
|
readonly msg: Bytes;
|
|
2453
2787
|
}
|
|
2454
|
-
/** @name PolkadotCorePrimitivesInboundHrmpMessage (
|
|
2788
|
+
/** @name PolkadotCorePrimitivesInboundHrmpMessage (293) */
|
|
2455
2789
|
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
|
|
2456
2790
|
readonly sentAt: u32;
|
|
2457
2791
|
readonly data: Bytes;
|
|
2458
2792
|
}
|
|
2459
|
-
/** @name CumulusPalletParachainSystemError (
|
|
2793
|
+
/** @name CumulusPalletParachainSystemError (296) */
|
|
2460
2794
|
interface CumulusPalletParachainSystemError extends Enum {
|
|
2461
2795
|
readonly isOverlappingUpgrades: boolean;
|
|
2462
2796
|
readonly isProhibitedByPolkadot: boolean;
|
|
@@ -2468,7 +2802,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
2468
2802
|
readonly isUnauthorized: boolean;
|
|
2469
2803
|
readonly type: "OverlappingUpgrades" | "ProhibitedByPolkadot" | "TooBig" | "ValidationDataNotAvailable" | "HostConfigurationNotAvailable" | "NotScheduled" | "NothingAuthorized" | "Unauthorized";
|
|
2470
2804
|
}
|
|
2471
|
-
/** @name PalletTimestampCall (
|
|
2805
|
+
/** @name PalletTimestampCall (297) */
|
|
2472
2806
|
interface PalletTimestampCall extends Enum {
|
|
2473
2807
|
readonly isSet: boolean;
|
|
2474
2808
|
readonly asSet: {
|
|
@@ -2476,51 +2810,59 @@ declare module "@polkadot/types/lookup" {
|
|
|
2476
2810
|
} & Struct;
|
|
2477
2811
|
readonly type: "Set";
|
|
2478
2812
|
}
|
|
2479
|
-
/** @name StagingParachainInfoCall (
|
|
2813
|
+
/** @name StagingParachainInfoCall (298) */
|
|
2480
2814
|
type StagingParachainInfoCall = Null;
|
|
2481
|
-
/** @name PalletBalancesBalanceLock (
|
|
2815
|
+
/** @name PalletBalancesBalanceLock (300) */
|
|
2482
2816
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2483
2817
|
readonly id: U8aFixed;
|
|
2484
2818
|
readonly amount: u128;
|
|
2485
2819
|
readonly reasons: PalletBalancesReasons;
|
|
2486
2820
|
}
|
|
2487
|
-
/** @name PalletBalancesReasons (
|
|
2821
|
+
/** @name PalletBalancesReasons (301) */
|
|
2488
2822
|
interface PalletBalancesReasons extends Enum {
|
|
2489
2823
|
readonly isFee: boolean;
|
|
2490
2824
|
readonly isMisc: boolean;
|
|
2491
2825
|
readonly isAll: boolean;
|
|
2492
2826
|
readonly type: "Fee" | "Misc" | "All";
|
|
2493
2827
|
}
|
|
2494
|
-
/** @name PalletBalancesReserveData (
|
|
2828
|
+
/** @name PalletBalancesReserveData (304) */
|
|
2495
2829
|
interface PalletBalancesReserveData extends Struct {
|
|
2496
2830
|
readonly id: U8aFixed;
|
|
2497
2831
|
readonly amount: u128;
|
|
2498
2832
|
}
|
|
2499
|
-
/** @name
|
|
2500
|
-
interface
|
|
2833
|
+
/** @name ShParachainRuntimeRuntimeHoldReason (308) */
|
|
2834
|
+
interface ShParachainRuntimeRuntimeHoldReason extends Enum {
|
|
2501
2835
|
readonly isProviders: boolean;
|
|
2502
2836
|
readonly asProviders: PalletStorageProvidersHoldReason;
|
|
2837
|
+
readonly isFileSystem: boolean;
|
|
2838
|
+
readonly asFileSystem: PalletFileSystemHoldReason;
|
|
2503
2839
|
readonly isPaymentStreams: boolean;
|
|
2504
2840
|
readonly asPaymentStreams: PalletPaymentStreamsHoldReason;
|
|
2505
|
-
readonly type: "Providers" | "PaymentStreams";
|
|
2841
|
+
readonly type: "Providers" | "FileSystem" | "PaymentStreams";
|
|
2506
2842
|
}
|
|
2507
|
-
/** @name PalletStorageProvidersHoldReason (
|
|
2843
|
+
/** @name PalletStorageProvidersHoldReason (309) */
|
|
2508
2844
|
interface PalletStorageProvidersHoldReason extends Enum {
|
|
2509
2845
|
readonly isStorageProviderDeposit: boolean;
|
|
2510
2846
|
readonly isBucketDeposit: boolean;
|
|
2511
2847
|
readonly type: "StorageProviderDeposit" | "BucketDeposit";
|
|
2512
2848
|
}
|
|
2513
|
-
/** @name
|
|
2849
|
+
/** @name PalletFileSystemHoldReason (310) */
|
|
2850
|
+
interface PalletFileSystemHoldReason extends Enum {
|
|
2851
|
+
readonly isStorageRequestCreationHold: boolean;
|
|
2852
|
+
readonly isFileDeletionRequestHold: boolean;
|
|
2853
|
+
readonly type: "StorageRequestCreationHold" | "FileDeletionRequestHold";
|
|
2854
|
+
}
|
|
2855
|
+
/** @name PalletPaymentStreamsHoldReason (311) */
|
|
2514
2856
|
interface PalletPaymentStreamsHoldReason extends Enum {
|
|
2515
2857
|
readonly isPaymentStreamDeposit: boolean;
|
|
2516
2858
|
readonly type: "PaymentStreamDeposit";
|
|
2517
2859
|
}
|
|
2518
|
-
/** @name FrameSupportTokensMiscIdAmount (
|
|
2860
|
+
/** @name FrameSupportTokensMiscIdAmount (314) */
|
|
2519
2861
|
interface FrameSupportTokensMiscIdAmount extends Struct {
|
|
2520
2862
|
readonly id: Null;
|
|
2521
2863
|
readonly amount: u128;
|
|
2522
2864
|
}
|
|
2523
|
-
/** @name PalletBalancesCall (
|
|
2865
|
+
/** @name PalletBalancesCall (316) */
|
|
2524
2866
|
interface PalletBalancesCall extends Enum {
|
|
2525
2867
|
readonly isTransferAllowDeath: boolean;
|
|
2526
2868
|
readonly asTransferAllowDeath: {
|
|
@@ -2569,13 +2911,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
2569
2911
|
} & Struct;
|
|
2570
2912
|
readonly type: "TransferAllowDeath" | "ForceTransfer" | "TransferKeepAlive" | "TransferAll" | "ForceUnreserve" | "UpgradeAccounts" | "ForceSetBalance" | "ForceAdjustTotalIssuance" | "Burn";
|
|
2571
2913
|
}
|
|
2572
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
2914
|
+
/** @name PalletBalancesAdjustmentDirection (319) */
|
|
2573
2915
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
2574
2916
|
readonly isIncrease: boolean;
|
|
2575
2917
|
readonly isDecrease: boolean;
|
|
2576
2918
|
readonly type: "Increase" | "Decrease";
|
|
2577
2919
|
}
|
|
2578
|
-
/** @name PalletBalancesError (
|
|
2920
|
+
/** @name PalletBalancesError (320) */
|
|
2579
2921
|
interface PalletBalancesError extends Enum {
|
|
2580
2922
|
readonly isVestingBalance: boolean;
|
|
2581
2923
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2591,13 +2933,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
2591
2933
|
readonly isDeltaZero: boolean;
|
|
2592
2934
|
readonly type: "VestingBalance" | "LiquidityRestrictions" | "InsufficientBalance" | "ExistentialDeposit" | "Expendability" | "ExistingVestingSchedule" | "DeadAccount" | "TooManyReserves" | "TooManyHolds" | "TooManyFreezes" | "IssuanceDeactivated" | "DeltaZero";
|
|
2593
2935
|
}
|
|
2594
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2936
|
+
/** @name PalletTransactionPaymentReleases (321) */
|
|
2595
2937
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2596
2938
|
readonly isV1Ancient: boolean;
|
|
2597
2939
|
readonly isV2: boolean;
|
|
2598
2940
|
readonly type: "V1Ancient" | "V2";
|
|
2599
2941
|
}
|
|
2600
|
-
/** @name PalletSudoCall (
|
|
2942
|
+
/** @name PalletSudoCall (322) */
|
|
2601
2943
|
interface PalletSudoCall extends Enum {
|
|
2602
2944
|
readonly isSudo: boolean;
|
|
2603
2945
|
readonly asSudo: {
|
|
@@ -2620,7 +2962,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
2620
2962
|
readonly isRemoveKey: boolean;
|
|
2621
2963
|
readonly type: "Sudo" | "SudoUncheckedWeight" | "SetKey" | "SudoAs" | "RemoveKey";
|
|
2622
2964
|
}
|
|
2623
|
-
/** @name PalletCollatorSelectionCall (
|
|
2965
|
+
/** @name PalletCollatorSelectionCall (324) */
|
|
2624
2966
|
interface PalletCollatorSelectionCall extends Enum {
|
|
2625
2967
|
readonly isSetInvulnerables: boolean;
|
|
2626
2968
|
readonly asSetInvulnerables: {
|
|
@@ -2655,24 +2997,24 @@ declare module "@polkadot/types/lookup" {
|
|
|
2655
2997
|
} & Struct;
|
|
2656
2998
|
readonly type: "SetInvulnerables" | "SetDesiredCandidates" | "SetCandidacyBond" | "RegisterAsCandidate" | "LeaveIntent" | "AddInvulnerable" | "RemoveInvulnerable" | "UpdateBond" | "TakeCandidateSlot";
|
|
2657
2999
|
}
|
|
2658
|
-
/** @name PalletSessionCall (
|
|
3000
|
+
/** @name PalletSessionCall (325) */
|
|
2659
3001
|
interface PalletSessionCall extends Enum {
|
|
2660
3002
|
readonly isSetKeys: boolean;
|
|
2661
3003
|
readonly asSetKeys: {
|
|
2662
|
-
readonly keys_:
|
|
3004
|
+
readonly keys_: ShParachainRuntimeSessionKeys;
|
|
2663
3005
|
readonly proof: Bytes;
|
|
2664
3006
|
} & Struct;
|
|
2665
3007
|
readonly isPurgeKeys: boolean;
|
|
2666
3008
|
readonly type: "SetKeys" | "PurgeKeys";
|
|
2667
3009
|
}
|
|
2668
|
-
/** @name
|
|
2669
|
-
interface
|
|
3010
|
+
/** @name ShParachainRuntimeSessionKeys (326) */
|
|
3011
|
+
interface ShParachainRuntimeSessionKeys extends Struct {
|
|
2670
3012
|
readonly aura: SpConsensusAuraSr25519AppSr25519Public;
|
|
2671
3013
|
}
|
|
2672
|
-
/** @name SpConsensusAuraSr25519AppSr25519Public (
|
|
3014
|
+
/** @name SpConsensusAuraSr25519AppSr25519Public (327) */
|
|
2673
3015
|
interface SpConsensusAuraSr25519AppSr25519Public extends U8aFixed {
|
|
2674
3016
|
}
|
|
2675
|
-
/** @name CumulusPalletXcmpQueueCall (
|
|
3017
|
+
/** @name CumulusPalletXcmpQueueCall (328) */
|
|
2676
3018
|
interface CumulusPalletXcmpQueueCall extends Enum {
|
|
2677
3019
|
readonly isSuspendXcmExecution: boolean;
|
|
2678
3020
|
readonly isResumeXcmExecution: boolean;
|
|
@@ -2690,7 +3032,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
2690
3032
|
} & Struct;
|
|
2691
3033
|
readonly type: "SuspendXcmExecution" | "ResumeXcmExecution" | "UpdateSuspendThreshold" | "UpdateDropThreshold" | "UpdateResumeThreshold";
|
|
2692
3034
|
}
|
|
2693
|
-
/** @name PalletXcmCall (
|
|
3035
|
+
/** @name PalletXcmCall (329) */
|
|
2694
3036
|
interface PalletXcmCall extends Enum {
|
|
2695
3037
|
readonly isSend: boolean;
|
|
2696
3038
|
readonly asSend: {
|
|
@@ -2718,7 +3060,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
2718
3060
|
} & Struct;
|
|
2719
3061
|
readonly isForceXcmVersion: boolean;
|
|
2720
3062
|
readonly asForceXcmVersion: {
|
|
2721
|
-
readonly location:
|
|
3063
|
+
readonly location: StagingXcmV5Location;
|
|
2722
3064
|
readonly version: u32;
|
|
2723
3065
|
} & Struct;
|
|
2724
3066
|
readonly isForceDefaultXcmVersion: boolean;
|
|
@@ -2778,48 +3120,49 @@ declare module "@polkadot/types/lookup" {
|
|
|
2778
3120
|
} & Struct;
|
|
2779
3121
|
readonly type: "Send" | "TeleportAssets" | "ReserveTransferAssets" | "Execute" | "ForceXcmVersion" | "ForceDefaultXcmVersion" | "ForceSubscribeVersionNotify" | "ForceUnsubscribeVersionNotify" | "LimitedReserveTransferAssets" | "LimitedTeleportAssets" | "ForceSuspension" | "TransferAssets" | "ClaimAssets" | "TransferAssetsUsingTypeAndThen";
|
|
2780
3122
|
}
|
|
2781
|
-
/** @name XcmVersionedXcm (
|
|
3123
|
+
/** @name XcmVersionedXcm (330) */
|
|
2782
3124
|
interface XcmVersionedXcm extends Enum {
|
|
2783
|
-
readonly isV2: boolean;
|
|
2784
|
-
readonly asV2: XcmV2Xcm;
|
|
2785
3125
|
readonly isV3: boolean;
|
|
2786
3126
|
readonly asV3: XcmV3Xcm;
|
|
2787
3127
|
readonly isV4: boolean;
|
|
2788
3128
|
readonly asV4: StagingXcmV4Xcm;
|
|
2789
|
-
readonly
|
|
3129
|
+
readonly isV5: boolean;
|
|
3130
|
+
readonly asV5: StagingXcmV5Xcm;
|
|
3131
|
+
readonly type: "V3" | "V4" | "V5";
|
|
2790
3132
|
}
|
|
2791
|
-
/** @name
|
|
2792
|
-
interface
|
|
3133
|
+
/** @name XcmV3Xcm (331) */
|
|
3134
|
+
interface XcmV3Xcm extends Vec<XcmV3Instruction> {
|
|
2793
3135
|
}
|
|
2794
|
-
/** @name
|
|
2795
|
-
interface
|
|
3136
|
+
/** @name XcmV3Instruction (333) */
|
|
3137
|
+
interface XcmV3Instruction extends Enum {
|
|
2796
3138
|
readonly isWithdrawAsset: boolean;
|
|
2797
|
-
readonly asWithdrawAsset:
|
|
3139
|
+
readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
|
|
2798
3140
|
readonly isReserveAssetDeposited: boolean;
|
|
2799
|
-
readonly asReserveAssetDeposited:
|
|
3141
|
+
readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;
|
|
2800
3142
|
readonly isReceiveTeleportedAsset: boolean;
|
|
2801
|
-
readonly asReceiveTeleportedAsset:
|
|
3143
|
+
readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;
|
|
2802
3144
|
readonly isQueryResponse: boolean;
|
|
2803
3145
|
readonly asQueryResponse: {
|
|
2804
3146
|
readonly queryId: Compact<u64>;
|
|
2805
|
-
readonly response:
|
|
2806
|
-
readonly maxWeight:
|
|
3147
|
+
readonly response: XcmV3Response;
|
|
3148
|
+
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
3149
|
+
readonly querier: Option<StagingXcmV3MultiLocation>;
|
|
2807
3150
|
} & Struct;
|
|
2808
3151
|
readonly isTransferAsset: boolean;
|
|
2809
3152
|
readonly asTransferAsset: {
|
|
2810
|
-
readonly assets:
|
|
2811
|
-
readonly beneficiary:
|
|
3153
|
+
readonly assets: XcmV3MultiassetMultiAssets;
|
|
3154
|
+
readonly beneficiary: StagingXcmV3MultiLocation;
|
|
2812
3155
|
} & Struct;
|
|
2813
3156
|
readonly isTransferReserveAsset: boolean;
|
|
2814
3157
|
readonly asTransferReserveAsset: {
|
|
2815
|
-
readonly assets:
|
|
2816
|
-
readonly dest:
|
|
2817
|
-
readonly xcm:
|
|
3158
|
+
readonly assets: XcmV3MultiassetMultiAssets;
|
|
3159
|
+
readonly dest: StagingXcmV3MultiLocation;
|
|
3160
|
+
readonly xcm: XcmV3Xcm;
|
|
2818
3161
|
} & Struct;
|
|
2819
3162
|
readonly isTransact: boolean;
|
|
2820
3163
|
readonly asTransact: {
|
|
2821
|
-
readonly
|
|
2822
|
-
readonly requireWeightAtMost:
|
|
3164
|
+
readonly originKind: XcmV3OriginKind;
|
|
3165
|
+
readonly requireWeightAtMost: SpWeightsWeightV2Weight;
|
|
2823
3166
|
readonly call: XcmDoubleEncoded;
|
|
2824
3167
|
} & Struct;
|
|
2825
3168
|
readonly isHrmpNewChannelOpenRequest: boolean;
|
|
@@ -2840,95 +3183,160 @@ declare module "@polkadot/types/lookup" {
|
|
|
2840
3183
|
} & Struct;
|
|
2841
3184
|
readonly isClearOrigin: boolean;
|
|
2842
3185
|
readonly isDescendOrigin: boolean;
|
|
2843
|
-
readonly asDescendOrigin:
|
|
3186
|
+
readonly asDescendOrigin: XcmV3Junctions;
|
|
2844
3187
|
readonly isReportError: boolean;
|
|
2845
|
-
readonly asReportError:
|
|
2846
|
-
readonly queryId: Compact<u64>;
|
|
2847
|
-
readonly dest: XcmV2MultiLocation;
|
|
2848
|
-
readonly maxResponseWeight: Compact<u64>;
|
|
2849
|
-
} & Struct;
|
|
3188
|
+
readonly asReportError: XcmV3QueryResponseInfo;
|
|
2850
3189
|
readonly isDepositAsset: boolean;
|
|
2851
3190
|
readonly asDepositAsset: {
|
|
2852
|
-
readonly assets:
|
|
2853
|
-
readonly
|
|
2854
|
-
readonly beneficiary: XcmV2MultiLocation;
|
|
3191
|
+
readonly assets: XcmV3MultiassetMultiAssetFilter;
|
|
3192
|
+
readonly beneficiary: StagingXcmV3MultiLocation;
|
|
2855
3193
|
} & Struct;
|
|
2856
3194
|
readonly isDepositReserveAsset: boolean;
|
|
2857
3195
|
readonly asDepositReserveAsset: {
|
|
2858
|
-
readonly assets:
|
|
2859
|
-
readonly
|
|
2860
|
-
readonly
|
|
2861
|
-
readonly xcm: XcmV2Xcm;
|
|
3196
|
+
readonly assets: XcmV3MultiassetMultiAssetFilter;
|
|
3197
|
+
readonly dest: StagingXcmV3MultiLocation;
|
|
3198
|
+
readonly xcm: XcmV3Xcm;
|
|
2862
3199
|
} & Struct;
|
|
2863
3200
|
readonly isExchangeAsset: boolean;
|
|
2864
3201
|
readonly asExchangeAsset: {
|
|
2865
|
-
readonly give:
|
|
2866
|
-
readonly
|
|
3202
|
+
readonly give: XcmV3MultiassetMultiAssetFilter;
|
|
3203
|
+
readonly want: XcmV3MultiassetMultiAssets;
|
|
3204
|
+
readonly maximal: bool;
|
|
2867
3205
|
} & Struct;
|
|
2868
3206
|
readonly isInitiateReserveWithdraw: boolean;
|
|
2869
3207
|
readonly asInitiateReserveWithdraw: {
|
|
2870
|
-
readonly assets:
|
|
2871
|
-
readonly reserve:
|
|
2872
|
-
readonly xcm:
|
|
3208
|
+
readonly assets: XcmV3MultiassetMultiAssetFilter;
|
|
3209
|
+
readonly reserve: StagingXcmV3MultiLocation;
|
|
3210
|
+
readonly xcm: XcmV3Xcm;
|
|
2873
3211
|
} & Struct;
|
|
2874
3212
|
readonly isInitiateTeleport: boolean;
|
|
2875
3213
|
readonly asInitiateTeleport: {
|
|
2876
|
-
readonly assets:
|
|
2877
|
-
readonly dest:
|
|
2878
|
-
readonly xcm:
|
|
3214
|
+
readonly assets: XcmV3MultiassetMultiAssetFilter;
|
|
3215
|
+
readonly dest: StagingXcmV3MultiLocation;
|
|
3216
|
+
readonly xcm: XcmV3Xcm;
|
|
2879
3217
|
} & Struct;
|
|
2880
|
-
readonly
|
|
2881
|
-
readonly
|
|
2882
|
-
readonly
|
|
2883
|
-
readonly
|
|
2884
|
-
readonly assets: XcmV2MultiassetMultiAssetFilter;
|
|
2885
|
-
readonly maxResponseWeight: Compact<u64>;
|
|
3218
|
+
readonly isReportHolding: boolean;
|
|
3219
|
+
readonly asReportHolding: {
|
|
3220
|
+
readonly responseInfo: XcmV3QueryResponseInfo;
|
|
3221
|
+
readonly assets: XcmV3MultiassetMultiAssetFilter;
|
|
2886
3222
|
} & Struct;
|
|
2887
3223
|
readonly isBuyExecution: boolean;
|
|
2888
3224
|
readonly asBuyExecution: {
|
|
2889
|
-
readonly fees:
|
|
2890
|
-
readonly weightLimit:
|
|
3225
|
+
readonly fees: XcmV3MultiAsset;
|
|
3226
|
+
readonly weightLimit: XcmV3WeightLimit;
|
|
2891
3227
|
} & Struct;
|
|
2892
3228
|
readonly isRefundSurplus: boolean;
|
|
2893
3229
|
readonly isSetErrorHandler: boolean;
|
|
2894
|
-
readonly asSetErrorHandler:
|
|
3230
|
+
readonly asSetErrorHandler: XcmV3Xcm;
|
|
2895
3231
|
readonly isSetAppendix: boolean;
|
|
2896
|
-
readonly asSetAppendix:
|
|
3232
|
+
readonly asSetAppendix: XcmV3Xcm;
|
|
2897
3233
|
readonly isClearError: boolean;
|
|
2898
3234
|
readonly isClaimAsset: boolean;
|
|
2899
3235
|
readonly asClaimAsset: {
|
|
2900
|
-
readonly assets:
|
|
2901
|
-
readonly ticket:
|
|
3236
|
+
readonly assets: XcmV3MultiassetMultiAssets;
|
|
3237
|
+
readonly ticket: StagingXcmV3MultiLocation;
|
|
2902
3238
|
} & Struct;
|
|
2903
3239
|
readonly isTrap: boolean;
|
|
2904
3240
|
readonly asTrap: Compact<u64>;
|
|
2905
3241
|
readonly isSubscribeVersion: boolean;
|
|
2906
3242
|
readonly asSubscribeVersion: {
|
|
2907
3243
|
readonly queryId: Compact<u64>;
|
|
2908
|
-
readonly maxResponseWeight:
|
|
3244
|
+
readonly maxResponseWeight: SpWeightsWeightV2Weight;
|
|
2909
3245
|
} & Struct;
|
|
2910
3246
|
readonly isUnsubscribeVersion: boolean;
|
|
2911
|
-
readonly
|
|
3247
|
+
readonly isBurnAsset: boolean;
|
|
3248
|
+
readonly asBurnAsset: XcmV3MultiassetMultiAssets;
|
|
3249
|
+
readonly isExpectAsset: boolean;
|
|
3250
|
+
readonly asExpectAsset: XcmV3MultiassetMultiAssets;
|
|
3251
|
+
readonly isExpectOrigin: boolean;
|
|
3252
|
+
readonly asExpectOrigin: Option<StagingXcmV3MultiLocation>;
|
|
3253
|
+
readonly isExpectError: boolean;
|
|
3254
|
+
readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
|
|
3255
|
+
readonly isExpectTransactStatus: boolean;
|
|
3256
|
+
readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
|
|
3257
|
+
readonly isQueryPallet: boolean;
|
|
3258
|
+
readonly asQueryPallet: {
|
|
3259
|
+
readonly moduleName: Bytes;
|
|
3260
|
+
readonly responseInfo: XcmV3QueryResponseInfo;
|
|
3261
|
+
} & Struct;
|
|
3262
|
+
readonly isExpectPallet: boolean;
|
|
3263
|
+
readonly asExpectPallet: {
|
|
3264
|
+
readonly index: Compact<u32>;
|
|
3265
|
+
readonly name: Bytes;
|
|
3266
|
+
readonly moduleName: Bytes;
|
|
3267
|
+
readonly crateMajor: Compact<u32>;
|
|
3268
|
+
readonly minCrateMinor: Compact<u32>;
|
|
3269
|
+
} & Struct;
|
|
3270
|
+
readonly isReportTransactStatus: boolean;
|
|
3271
|
+
readonly asReportTransactStatus: XcmV3QueryResponseInfo;
|
|
3272
|
+
readonly isClearTransactStatus: boolean;
|
|
3273
|
+
readonly isUniversalOrigin: boolean;
|
|
3274
|
+
readonly asUniversalOrigin: XcmV3Junction;
|
|
3275
|
+
readonly isExportMessage: boolean;
|
|
3276
|
+
readonly asExportMessage: {
|
|
3277
|
+
readonly network: XcmV3JunctionNetworkId;
|
|
3278
|
+
readonly destination: XcmV3Junctions;
|
|
3279
|
+
readonly xcm: XcmV3Xcm;
|
|
3280
|
+
} & Struct;
|
|
3281
|
+
readonly isLockAsset: boolean;
|
|
3282
|
+
readonly asLockAsset: {
|
|
3283
|
+
readonly asset: XcmV3MultiAsset;
|
|
3284
|
+
readonly unlocker: StagingXcmV3MultiLocation;
|
|
3285
|
+
} & Struct;
|
|
3286
|
+
readonly isUnlockAsset: boolean;
|
|
3287
|
+
readonly asUnlockAsset: {
|
|
3288
|
+
readonly asset: XcmV3MultiAsset;
|
|
3289
|
+
readonly target: StagingXcmV3MultiLocation;
|
|
3290
|
+
} & Struct;
|
|
3291
|
+
readonly isNoteUnlockable: boolean;
|
|
3292
|
+
readonly asNoteUnlockable: {
|
|
3293
|
+
readonly asset: XcmV3MultiAsset;
|
|
3294
|
+
readonly owner: StagingXcmV3MultiLocation;
|
|
3295
|
+
} & Struct;
|
|
3296
|
+
readonly isRequestUnlock: boolean;
|
|
3297
|
+
readonly asRequestUnlock: {
|
|
3298
|
+
readonly asset: XcmV3MultiAsset;
|
|
3299
|
+
readonly locker: StagingXcmV3MultiLocation;
|
|
3300
|
+
} & Struct;
|
|
3301
|
+
readonly isSetFeesMode: boolean;
|
|
3302
|
+
readonly asSetFeesMode: {
|
|
3303
|
+
readonly jitWithdraw: bool;
|
|
3304
|
+
} & Struct;
|
|
3305
|
+
readonly isSetTopic: boolean;
|
|
3306
|
+
readonly asSetTopic: U8aFixed;
|
|
3307
|
+
readonly isClearTopic: boolean;
|
|
3308
|
+
readonly isAliasOrigin: boolean;
|
|
3309
|
+
readonly asAliasOrigin: StagingXcmV3MultiLocation;
|
|
3310
|
+
readonly isUnpaidExecution: boolean;
|
|
3311
|
+
readonly asUnpaidExecution: {
|
|
3312
|
+
readonly weightLimit: XcmV3WeightLimit;
|
|
3313
|
+
readonly checkOrigin: Option<StagingXcmV3MultiLocation>;
|
|
3314
|
+
} & Struct;
|
|
3315
|
+
readonly type: "WithdrawAsset" | "ReserveAssetDeposited" | "ReceiveTeleportedAsset" | "QueryResponse" | "TransferAsset" | "TransferReserveAsset" | "Transact" | "HrmpNewChannelOpenRequest" | "HrmpChannelAccepted" | "HrmpChannelClosing" | "ClearOrigin" | "DescendOrigin" | "ReportError" | "DepositAsset" | "DepositReserveAsset" | "ExchangeAsset" | "InitiateReserveWithdraw" | "InitiateTeleport" | "ReportHolding" | "BuyExecution" | "RefundSurplus" | "SetErrorHandler" | "SetAppendix" | "ClearError" | "ClaimAsset" | "Trap" | "SubscribeVersion" | "UnsubscribeVersion" | "BurnAsset" | "ExpectAsset" | "ExpectOrigin" | "ExpectError" | "ExpectTransactStatus" | "QueryPallet" | "ExpectPallet" | "ReportTransactStatus" | "ClearTransactStatus" | "UniversalOrigin" | "ExportMessage" | "LockAsset" | "UnlockAsset" | "NoteUnlockable" | "RequestUnlock" | "SetFeesMode" | "SetTopic" | "ClearTopic" | "AliasOrigin" | "UnpaidExecution";
|
|
2912
3316
|
}
|
|
2913
|
-
/** @name
|
|
2914
|
-
interface
|
|
3317
|
+
/** @name XcmV3Response (334) */
|
|
3318
|
+
interface XcmV3Response extends Enum {
|
|
2915
3319
|
readonly isNull: boolean;
|
|
2916
3320
|
readonly isAssets: boolean;
|
|
2917
|
-
readonly asAssets:
|
|
3321
|
+
readonly asAssets: XcmV3MultiassetMultiAssets;
|
|
2918
3322
|
readonly isExecutionResult: boolean;
|
|
2919
|
-
readonly asExecutionResult: Option<ITuple<[u32,
|
|
3323
|
+
readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
|
|
2920
3324
|
readonly isVersion: boolean;
|
|
2921
3325
|
readonly asVersion: u32;
|
|
2922
|
-
readonly
|
|
3326
|
+
readonly isPalletsInfo: boolean;
|
|
3327
|
+
readonly asPalletsInfo: Vec<XcmV3PalletInfo>;
|
|
3328
|
+
readonly isDispatchResult: boolean;
|
|
3329
|
+
readonly asDispatchResult: XcmV3MaybeErrorCode;
|
|
3330
|
+
readonly type: "Null" | "Assets" | "ExecutionResult" | "Version" | "PalletsInfo" | "DispatchResult";
|
|
2923
3331
|
}
|
|
2924
|
-
/** @name
|
|
2925
|
-
interface
|
|
3332
|
+
/** @name XcmV3TraitsError (337) */
|
|
3333
|
+
interface XcmV3TraitsError extends Enum {
|
|
2926
3334
|
readonly isOverflow: boolean;
|
|
2927
3335
|
readonly isUnimplemented: boolean;
|
|
2928
3336
|
readonly isUntrustedReserveLocation: boolean;
|
|
2929
3337
|
readonly isUntrustedTeleportLocation: boolean;
|
|
2930
|
-
readonly
|
|
2931
|
-
readonly
|
|
3338
|
+
readonly isLocationFull: boolean;
|
|
3339
|
+
readonly isLocationNotInvertible: boolean;
|
|
2932
3340
|
readonly isBadOrigin: boolean;
|
|
2933
3341
|
readonly isInvalidLocation: boolean;
|
|
2934
3342
|
readonly isAssetNotFound: boolean;
|
|
@@ -2946,80 +3354,102 @@ declare module "@polkadot/types/lookup" {
|
|
|
2946
3354
|
readonly isTooExpensive: boolean;
|
|
2947
3355
|
readonly isTrap: boolean;
|
|
2948
3356
|
readonly asTrap: u64;
|
|
3357
|
+
readonly isExpectationFalse: boolean;
|
|
3358
|
+
readonly isPalletNotFound: boolean;
|
|
3359
|
+
readonly isNameMismatch: boolean;
|
|
3360
|
+
readonly isVersionIncompatible: boolean;
|
|
3361
|
+
readonly isHoldingWouldOverflow: boolean;
|
|
3362
|
+
readonly isExportError: boolean;
|
|
3363
|
+
readonly isReanchorFailed: boolean;
|
|
3364
|
+
readonly isNoDeal: boolean;
|
|
3365
|
+
readonly isFeesNotMet: boolean;
|
|
3366
|
+
readonly isLockError: boolean;
|
|
3367
|
+
readonly isNoPermission: boolean;
|
|
3368
|
+
readonly isUnanchored: boolean;
|
|
3369
|
+
readonly isNotDepositable: boolean;
|
|
2949
3370
|
readonly isUnhandledXcmVersion: boolean;
|
|
2950
3371
|
readonly isWeightLimitReached: boolean;
|
|
2951
|
-
readonly asWeightLimitReached:
|
|
3372
|
+
readonly asWeightLimitReached: SpWeightsWeightV2Weight;
|
|
2952
3373
|
readonly isBarrier: boolean;
|
|
2953
3374
|
readonly isWeightNotComputable: boolean;
|
|
2954
|
-
readonly
|
|
3375
|
+
readonly isExceedsStackLimit: boolean;
|
|
3376
|
+
readonly type: "Overflow" | "Unimplemented" | "UntrustedReserveLocation" | "UntrustedTeleportLocation" | "LocationFull" | "LocationNotInvertible" | "BadOrigin" | "InvalidLocation" | "AssetNotFound" | "FailedToTransactAsset" | "NotWithdrawable" | "LocationCannotHold" | "ExceedsMaxMessageSize" | "DestinationUnsupported" | "Transport" | "Unroutable" | "UnknownClaim" | "FailedToDecode" | "MaxWeightInvalid" | "NotHoldingFees" | "TooExpensive" | "Trap" | "ExpectationFalse" | "PalletNotFound" | "NameMismatch" | "VersionIncompatible" | "HoldingWouldOverflow" | "ExportError" | "ReanchorFailed" | "NoDeal" | "FeesNotMet" | "LockError" | "NoPermission" | "Unanchored" | "NotDepositable" | "UnhandledXcmVersion" | "WeightLimitReached" | "Barrier" | "WeightNotComputable" | "ExceedsStackLimit";
|
|
2955
3377
|
}
|
|
2956
|
-
/** @name
|
|
2957
|
-
interface
|
|
2958
|
-
readonly
|
|
2959
|
-
readonly
|
|
2960
|
-
readonly
|
|
2961
|
-
readonly
|
|
2962
|
-
readonly
|
|
3378
|
+
/** @name XcmV3PalletInfo (339) */
|
|
3379
|
+
interface XcmV3PalletInfo extends Struct {
|
|
3380
|
+
readonly index: Compact<u32>;
|
|
3381
|
+
readonly name: Bytes;
|
|
3382
|
+
readonly moduleName: Bytes;
|
|
3383
|
+
readonly major: Compact<u32>;
|
|
3384
|
+
readonly minor: Compact<u32>;
|
|
3385
|
+
readonly patch: Compact<u32>;
|
|
3386
|
+
}
|
|
3387
|
+
/** @name XcmV3QueryResponseInfo (343) */
|
|
3388
|
+
interface XcmV3QueryResponseInfo extends Struct {
|
|
3389
|
+
readonly destination: StagingXcmV3MultiLocation;
|
|
3390
|
+
readonly queryId: Compact<u64>;
|
|
3391
|
+
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
2963
3392
|
}
|
|
2964
|
-
/** @name
|
|
2965
|
-
interface
|
|
3393
|
+
/** @name XcmV3MultiassetMultiAssetFilter (344) */
|
|
3394
|
+
interface XcmV3MultiassetMultiAssetFilter extends Enum {
|
|
2966
3395
|
readonly isDefinite: boolean;
|
|
2967
|
-
readonly asDefinite:
|
|
3396
|
+
readonly asDefinite: XcmV3MultiassetMultiAssets;
|
|
2968
3397
|
readonly isWild: boolean;
|
|
2969
|
-
readonly asWild:
|
|
3398
|
+
readonly asWild: XcmV3MultiassetWildMultiAsset;
|
|
2970
3399
|
readonly type: "Definite" | "Wild";
|
|
2971
3400
|
}
|
|
2972
|
-
/** @name
|
|
2973
|
-
interface
|
|
3401
|
+
/** @name XcmV3MultiassetWildMultiAsset (345) */
|
|
3402
|
+
interface XcmV3MultiassetWildMultiAsset extends Enum {
|
|
2974
3403
|
readonly isAll: boolean;
|
|
2975
3404
|
readonly isAllOf: boolean;
|
|
2976
3405
|
readonly asAllOf: {
|
|
2977
|
-
readonly id:
|
|
2978
|
-
readonly fun:
|
|
3406
|
+
readonly id: XcmV3MultiassetAssetId;
|
|
3407
|
+
readonly fun: XcmV3MultiassetWildFungibility;
|
|
3408
|
+
} & Struct;
|
|
3409
|
+
readonly isAllCounted: boolean;
|
|
3410
|
+
readonly asAllCounted: Compact<u32>;
|
|
3411
|
+
readonly isAllOfCounted: boolean;
|
|
3412
|
+
readonly asAllOfCounted: {
|
|
3413
|
+
readonly id: XcmV3MultiassetAssetId;
|
|
3414
|
+
readonly fun: XcmV3MultiassetWildFungibility;
|
|
3415
|
+
readonly count: Compact<u32>;
|
|
2979
3416
|
} & Struct;
|
|
2980
|
-
readonly type: "All" | "AllOf";
|
|
3417
|
+
readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
|
|
2981
3418
|
}
|
|
2982
|
-
/** @name
|
|
2983
|
-
interface
|
|
3419
|
+
/** @name XcmV3MultiassetWildFungibility (346) */
|
|
3420
|
+
interface XcmV3MultiassetWildFungibility extends Enum {
|
|
2984
3421
|
readonly isFungible: boolean;
|
|
2985
3422
|
readonly isNonFungible: boolean;
|
|
2986
3423
|
readonly type: "Fungible" | "NonFungible";
|
|
2987
3424
|
}
|
|
2988
|
-
/** @name
|
|
2989
|
-
interface
|
|
2990
|
-
readonly isUnlimited: boolean;
|
|
2991
|
-
readonly isLimited: boolean;
|
|
2992
|
-
readonly asLimited: Compact<u64>;
|
|
2993
|
-
readonly type: "Unlimited" | "Limited";
|
|
2994
|
-
}
|
|
2995
|
-
/** @name XcmV3Xcm (299) */
|
|
2996
|
-
interface XcmV3Xcm extends Vec<XcmV3Instruction> {
|
|
3425
|
+
/** @name StagingXcmV4Xcm (347) */
|
|
3426
|
+
interface StagingXcmV4Xcm extends Vec<StagingXcmV4Instruction> {
|
|
2997
3427
|
}
|
|
2998
|
-
/** @name
|
|
2999
|
-
interface
|
|
3428
|
+
/** @name StagingXcmV4Instruction (349) */
|
|
3429
|
+
interface StagingXcmV4Instruction extends Enum {
|
|
3000
3430
|
readonly isWithdrawAsset: boolean;
|
|
3001
|
-
readonly asWithdrawAsset:
|
|
3431
|
+
readonly asWithdrawAsset: StagingXcmV4AssetAssets;
|
|
3002
3432
|
readonly isReserveAssetDeposited: boolean;
|
|
3003
|
-
readonly asReserveAssetDeposited:
|
|
3433
|
+
readonly asReserveAssetDeposited: StagingXcmV4AssetAssets;
|
|
3004
3434
|
readonly isReceiveTeleportedAsset: boolean;
|
|
3005
|
-
readonly asReceiveTeleportedAsset:
|
|
3435
|
+
readonly asReceiveTeleportedAsset: StagingXcmV4AssetAssets;
|
|
3006
3436
|
readonly isQueryResponse: boolean;
|
|
3007
3437
|
readonly asQueryResponse: {
|
|
3008
3438
|
readonly queryId: Compact<u64>;
|
|
3009
|
-
readonly response:
|
|
3439
|
+
readonly response: StagingXcmV4Response;
|
|
3010
3440
|
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
3011
|
-
readonly querier: Option<
|
|
3441
|
+
readonly querier: Option<StagingXcmV4Location>;
|
|
3012
3442
|
} & Struct;
|
|
3013
3443
|
readonly isTransferAsset: boolean;
|
|
3014
3444
|
readonly asTransferAsset: {
|
|
3015
|
-
readonly assets:
|
|
3016
|
-
readonly beneficiary:
|
|
3445
|
+
readonly assets: StagingXcmV4AssetAssets;
|
|
3446
|
+
readonly beneficiary: StagingXcmV4Location;
|
|
3017
3447
|
} & Struct;
|
|
3018
3448
|
readonly isTransferReserveAsset: boolean;
|
|
3019
3449
|
readonly asTransferReserveAsset: {
|
|
3020
|
-
readonly assets:
|
|
3021
|
-
readonly dest:
|
|
3022
|
-
readonly xcm:
|
|
3450
|
+
readonly assets: StagingXcmV4AssetAssets;
|
|
3451
|
+
readonly dest: StagingXcmV4Location;
|
|
3452
|
+
readonly xcm: StagingXcmV4Xcm;
|
|
3023
3453
|
} & Struct;
|
|
3024
3454
|
readonly isTransact: boolean;
|
|
3025
3455
|
readonly asTransact: {
|
|
@@ -3045,58 +3475,58 @@ declare module "@polkadot/types/lookup" {
|
|
|
3045
3475
|
} & Struct;
|
|
3046
3476
|
readonly isClearOrigin: boolean;
|
|
3047
3477
|
readonly isDescendOrigin: boolean;
|
|
3048
|
-
readonly asDescendOrigin:
|
|
3478
|
+
readonly asDescendOrigin: StagingXcmV4Junctions;
|
|
3049
3479
|
readonly isReportError: boolean;
|
|
3050
|
-
readonly asReportError:
|
|
3480
|
+
readonly asReportError: StagingXcmV4QueryResponseInfo;
|
|
3051
3481
|
readonly isDepositAsset: boolean;
|
|
3052
3482
|
readonly asDepositAsset: {
|
|
3053
|
-
readonly assets:
|
|
3054
|
-
readonly beneficiary:
|
|
3483
|
+
readonly assets: StagingXcmV4AssetAssetFilter;
|
|
3484
|
+
readonly beneficiary: StagingXcmV4Location;
|
|
3055
3485
|
} & Struct;
|
|
3056
3486
|
readonly isDepositReserveAsset: boolean;
|
|
3057
3487
|
readonly asDepositReserveAsset: {
|
|
3058
|
-
readonly assets:
|
|
3059
|
-
readonly dest:
|
|
3060
|
-
readonly xcm:
|
|
3488
|
+
readonly assets: StagingXcmV4AssetAssetFilter;
|
|
3489
|
+
readonly dest: StagingXcmV4Location;
|
|
3490
|
+
readonly xcm: StagingXcmV4Xcm;
|
|
3061
3491
|
} & Struct;
|
|
3062
3492
|
readonly isExchangeAsset: boolean;
|
|
3063
3493
|
readonly asExchangeAsset: {
|
|
3064
|
-
readonly give:
|
|
3065
|
-
readonly want:
|
|
3494
|
+
readonly give: StagingXcmV4AssetAssetFilter;
|
|
3495
|
+
readonly want: StagingXcmV4AssetAssets;
|
|
3066
3496
|
readonly maximal: bool;
|
|
3067
3497
|
} & Struct;
|
|
3068
3498
|
readonly isInitiateReserveWithdraw: boolean;
|
|
3069
3499
|
readonly asInitiateReserveWithdraw: {
|
|
3070
|
-
readonly assets:
|
|
3071
|
-
readonly reserve:
|
|
3072
|
-
readonly xcm:
|
|
3500
|
+
readonly assets: StagingXcmV4AssetAssetFilter;
|
|
3501
|
+
readonly reserve: StagingXcmV4Location;
|
|
3502
|
+
readonly xcm: StagingXcmV4Xcm;
|
|
3073
3503
|
} & Struct;
|
|
3074
3504
|
readonly isInitiateTeleport: boolean;
|
|
3075
3505
|
readonly asInitiateTeleport: {
|
|
3076
|
-
readonly assets:
|
|
3077
|
-
readonly dest:
|
|
3078
|
-
readonly xcm:
|
|
3506
|
+
readonly assets: StagingXcmV4AssetAssetFilter;
|
|
3507
|
+
readonly dest: StagingXcmV4Location;
|
|
3508
|
+
readonly xcm: StagingXcmV4Xcm;
|
|
3079
3509
|
} & Struct;
|
|
3080
3510
|
readonly isReportHolding: boolean;
|
|
3081
3511
|
readonly asReportHolding: {
|
|
3082
|
-
readonly responseInfo:
|
|
3083
|
-
readonly assets:
|
|
3512
|
+
readonly responseInfo: StagingXcmV4QueryResponseInfo;
|
|
3513
|
+
readonly assets: StagingXcmV4AssetAssetFilter;
|
|
3084
3514
|
} & Struct;
|
|
3085
3515
|
readonly isBuyExecution: boolean;
|
|
3086
3516
|
readonly asBuyExecution: {
|
|
3087
|
-
readonly fees:
|
|
3517
|
+
readonly fees: StagingXcmV4Asset;
|
|
3088
3518
|
readonly weightLimit: XcmV3WeightLimit;
|
|
3089
3519
|
} & Struct;
|
|
3090
3520
|
readonly isRefundSurplus: boolean;
|
|
3091
3521
|
readonly isSetErrorHandler: boolean;
|
|
3092
|
-
readonly asSetErrorHandler:
|
|
3522
|
+
readonly asSetErrorHandler: StagingXcmV4Xcm;
|
|
3093
3523
|
readonly isSetAppendix: boolean;
|
|
3094
|
-
readonly asSetAppendix:
|
|
3524
|
+
readonly asSetAppendix: StagingXcmV4Xcm;
|
|
3095
3525
|
readonly isClearError: boolean;
|
|
3096
3526
|
readonly isClaimAsset: boolean;
|
|
3097
3527
|
readonly asClaimAsset: {
|
|
3098
|
-
readonly assets:
|
|
3099
|
-
readonly ticket:
|
|
3528
|
+
readonly assets: StagingXcmV4AssetAssets;
|
|
3529
|
+
readonly ticket: StagingXcmV4Location;
|
|
3100
3530
|
} & Struct;
|
|
3101
3531
|
readonly isTrap: boolean;
|
|
3102
3532
|
readonly asTrap: Compact<u64>;
|
|
@@ -3107,11 +3537,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
3107
3537
|
} & Struct;
|
|
3108
3538
|
readonly isUnsubscribeVersion: boolean;
|
|
3109
3539
|
readonly isBurnAsset: boolean;
|
|
3110
|
-
readonly asBurnAsset:
|
|
3540
|
+
readonly asBurnAsset: StagingXcmV4AssetAssets;
|
|
3111
3541
|
readonly isExpectAsset: boolean;
|
|
3112
|
-
readonly asExpectAsset:
|
|
3542
|
+
readonly asExpectAsset: StagingXcmV4AssetAssets;
|
|
3113
3543
|
readonly isExpectOrigin: boolean;
|
|
3114
|
-
readonly asExpectOrigin: Option<
|
|
3544
|
+
readonly asExpectOrigin: Option<StagingXcmV4Location>;
|
|
3115
3545
|
readonly isExpectError: boolean;
|
|
3116
3546
|
readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
|
|
3117
3547
|
readonly isExpectTransactStatus: boolean;
|
|
@@ -3119,7 +3549,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3119
3549
|
readonly isQueryPallet: boolean;
|
|
3120
3550
|
readonly asQueryPallet: {
|
|
3121
3551
|
readonly moduleName: Bytes;
|
|
3122
|
-
readonly responseInfo:
|
|
3552
|
+
readonly responseInfo: StagingXcmV4QueryResponseInfo;
|
|
3123
3553
|
} & Struct;
|
|
3124
3554
|
readonly isExpectPallet: boolean;
|
|
3125
3555
|
readonly asExpectPallet: {
|
|
@@ -3130,35 +3560,35 @@ declare module "@polkadot/types/lookup" {
|
|
|
3130
3560
|
readonly minCrateMinor: Compact<u32>;
|
|
3131
3561
|
} & Struct;
|
|
3132
3562
|
readonly isReportTransactStatus: boolean;
|
|
3133
|
-
readonly asReportTransactStatus:
|
|
3563
|
+
readonly asReportTransactStatus: StagingXcmV4QueryResponseInfo;
|
|
3134
3564
|
readonly isClearTransactStatus: boolean;
|
|
3135
3565
|
readonly isUniversalOrigin: boolean;
|
|
3136
|
-
readonly asUniversalOrigin:
|
|
3566
|
+
readonly asUniversalOrigin: StagingXcmV4Junction;
|
|
3137
3567
|
readonly isExportMessage: boolean;
|
|
3138
3568
|
readonly asExportMessage: {
|
|
3139
|
-
readonly network:
|
|
3140
|
-
readonly destination:
|
|
3141
|
-
readonly xcm:
|
|
3569
|
+
readonly network: StagingXcmV4JunctionNetworkId;
|
|
3570
|
+
readonly destination: StagingXcmV4Junctions;
|
|
3571
|
+
readonly xcm: StagingXcmV4Xcm;
|
|
3142
3572
|
} & Struct;
|
|
3143
3573
|
readonly isLockAsset: boolean;
|
|
3144
3574
|
readonly asLockAsset: {
|
|
3145
|
-
readonly asset:
|
|
3146
|
-
readonly unlocker:
|
|
3575
|
+
readonly asset: StagingXcmV4Asset;
|
|
3576
|
+
readonly unlocker: StagingXcmV4Location;
|
|
3147
3577
|
} & Struct;
|
|
3148
3578
|
readonly isUnlockAsset: boolean;
|
|
3149
3579
|
readonly asUnlockAsset: {
|
|
3150
|
-
readonly asset:
|
|
3151
|
-
readonly target:
|
|
3580
|
+
readonly asset: StagingXcmV4Asset;
|
|
3581
|
+
readonly target: StagingXcmV4Location;
|
|
3152
3582
|
} & Struct;
|
|
3153
3583
|
readonly isNoteUnlockable: boolean;
|
|
3154
3584
|
readonly asNoteUnlockable: {
|
|
3155
|
-
readonly asset:
|
|
3156
|
-
readonly owner:
|
|
3585
|
+
readonly asset: StagingXcmV4Asset;
|
|
3586
|
+
readonly owner: StagingXcmV4Location;
|
|
3157
3587
|
} & Struct;
|
|
3158
3588
|
readonly isRequestUnlock: boolean;
|
|
3159
3589
|
readonly asRequestUnlock: {
|
|
3160
|
-
readonly asset:
|
|
3161
|
-
readonly locker:
|
|
3590
|
+
readonly asset: StagingXcmV4Asset;
|
|
3591
|
+
readonly locker: StagingXcmV4Location;
|
|
3162
3592
|
} & Struct;
|
|
3163
3593
|
readonly isSetFeesMode: boolean;
|
|
3164
3594
|
readonly asSetFeesMode: {
|
|
@@ -3168,31 +3598,31 @@ declare module "@polkadot/types/lookup" {
|
|
|
3168
3598
|
readonly asSetTopic: U8aFixed;
|
|
3169
3599
|
readonly isClearTopic: boolean;
|
|
3170
3600
|
readonly isAliasOrigin: boolean;
|
|
3171
|
-
readonly asAliasOrigin:
|
|
3601
|
+
readonly asAliasOrigin: StagingXcmV4Location;
|
|
3172
3602
|
readonly isUnpaidExecution: boolean;
|
|
3173
3603
|
readonly asUnpaidExecution: {
|
|
3174
3604
|
readonly weightLimit: XcmV3WeightLimit;
|
|
3175
|
-
readonly checkOrigin: Option<
|
|
3605
|
+
readonly checkOrigin: Option<StagingXcmV4Location>;
|
|
3176
3606
|
} & Struct;
|
|
3177
3607
|
readonly type: "WithdrawAsset" | "ReserveAssetDeposited" | "ReceiveTeleportedAsset" | "QueryResponse" | "TransferAsset" | "TransferReserveAsset" | "Transact" | "HrmpNewChannelOpenRequest" | "HrmpChannelAccepted" | "HrmpChannelClosing" | "ClearOrigin" | "DescendOrigin" | "ReportError" | "DepositAsset" | "DepositReserveAsset" | "ExchangeAsset" | "InitiateReserveWithdraw" | "InitiateTeleport" | "ReportHolding" | "BuyExecution" | "RefundSurplus" | "SetErrorHandler" | "SetAppendix" | "ClearError" | "ClaimAsset" | "Trap" | "SubscribeVersion" | "UnsubscribeVersion" | "BurnAsset" | "ExpectAsset" | "ExpectOrigin" | "ExpectError" | "ExpectTransactStatus" | "QueryPallet" | "ExpectPallet" | "ReportTransactStatus" | "ClearTransactStatus" | "UniversalOrigin" | "ExportMessage" | "LockAsset" | "UnlockAsset" | "NoteUnlockable" | "RequestUnlock" | "SetFeesMode" | "SetTopic" | "ClearTopic" | "AliasOrigin" | "UnpaidExecution";
|
|
3178
3608
|
}
|
|
3179
|
-
/** @name
|
|
3180
|
-
interface
|
|
3609
|
+
/** @name StagingXcmV4Response (350) */
|
|
3610
|
+
interface StagingXcmV4Response extends Enum {
|
|
3181
3611
|
readonly isNull: boolean;
|
|
3182
3612
|
readonly isAssets: boolean;
|
|
3183
|
-
readonly asAssets:
|
|
3613
|
+
readonly asAssets: StagingXcmV4AssetAssets;
|
|
3184
3614
|
readonly isExecutionResult: boolean;
|
|
3185
3615
|
readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
|
|
3186
3616
|
readonly isVersion: boolean;
|
|
3187
3617
|
readonly asVersion: u32;
|
|
3188
3618
|
readonly isPalletsInfo: boolean;
|
|
3189
|
-
readonly asPalletsInfo: Vec<
|
|
3619
|
+
readonly asPalletsInfo: Vec<StagingXcmV4PalletInfo>;
|
|
3190
3620
|
readonly isDispatchResult: boolean;
|
|
3191
3621
|
readonly asDispatchResult: XcmV3MaybeErrorCode;
|
|
3192
3622
|
readonly type: "Null" | "Assets" | "ExecutionResult" | "Version" | "PalletsInfo" | "DispatchResult";
|
|
3193
3623
|
}
|
|
3194
|
-
/** @name
|
|
3195
|
-
interface
|
|
3624
|
+
/** @name StagingXcmV4PalletInfo (352) */
|
|
3625
|
+
interface StagingXcmV4PalletInfo extends Struct {
|
|
3196
3626
|
readonly index: Compact<u32>;
|
|
3197
3627
|
readonly name: Bytes;
|
|
3198
3628
|
readonly moduleName: Bytes;
|
|
@@ -3200,45 +3630,45 @@ declare module "@polkadot/types/lookup" {
|
|
|
3200
3630
|
readonly minor: Compact<u32>;
|
|
3201
3631
|
readonly patch: Compact<u32>;
|
|
3202
3632
|
}
|
|
3203
|
-
/** @name
|
|
3204
|
-
interface
|
|
3205
|
-
readonly destination:
|
|
3633
|
+
/** @name StagingXcmV4QueryResponseInfo (356) */
|
|
3634
|
+
interface StagingXcmV4QueryResponseInfo extends Struct {
|
|
3635
|
+
readonly destination: StagingXcmV4Location;
|
|
3206
3636
|
readonly queryId: Compact<u64>;
|
|
3207
3637
|
readonly maxWeight: SpWeightsWeightV2Weight;
|
|
3208
3638
|
}
|
|
3209
|
-
/** @name
|
|
3210
|
-
interface
|
|
3639
|
+
/** @name StagingXcmV4AssetAssetFilter (357) */
|
|
3640
|
+
interface StagingXcmV4AssetAssetFilter extends Enum {
|
|
3211
3641
|
readonly isDefinite: boolean;
|
|
3212
|
-
readonly asDefinite:
|
|
3642
|
+
readonly asDefinite: StagingXcmV4AssetAssets;
|
|
3213
3643
|
readonly isWild: boolean;
|
|
3214
|
-
readonly asWild:
|
|
3644
|
+
readonly asWild: StagingXcmV4AssetWildAsset;
|
|
3215
3645
|
readonly type: "Definite" | "Wild";
|
|
3216
3646
|
}
|
|
3217
|
-
/** @name
|
|
3218
|
-
interface
|
|
3647
|
+
/** @name StagingXcmV4AssetWildAsset (358) */
|
|
3648
|
+
interface StagingXcmV4AssetWildAsset extends Enum {
|
|
3219
3649
|
readonly isAll: boolean;
|
|
3220
3650
|
readonly isAllOf: boolean;
|
|
3221
3651
|
readonly asAllOf: {
|
|
3222
|
-
readonly id:
|
|
3223
|
-
readonly fun:
|
|
3652
|
+
readonly id: StagingXcmV4AssetAssetId;
|
|
3653
|
+
readonly fun: StagingXcmV4AssetWildFungibility;
|
|
3224
3654
|
} & Struct;
|
|
3225
3655
|
readonly isAllCounted: boolean;
|
|
3226
3656
|
readonly asAllCounted: Compact<u32>;
|
|
3227
3657
|
readonly isAllOfCounted: boolean;
|
|
3228
3658
|
readonly asAllOfCounted: {
|
|
3229
|
-
readonly id:
|
|
3230
|
-
readonly fun:
|
|
3659
|
+
readonly id: StagingXcmV4AssetAssetId;
|
|
3660
|
+
readonly fun: StagingXcmV4AssetWildFungibility;
|
|
3231
3661
|
readonly count: Compact<u32>;
|
|
3232
3662
|
} & Struct;
|
|
3233
3663
|
readonly type: "All" | "AllOf" | "AllCounted" | "AllOfCounted";
|
|
3234
3664
|
}
|
|
3235
|
-
/** @name
|
|
3236
|
-
interface
|
|
3665
|
+
/** @name StagingXcmV4AssetWildFungibility (359) */
|
|
3666
|
+
interface StagingXcmV4AssetWildFungibility extends Enum {
|
|
3237
3667
|
readonly isFungible: boolean;
|
|
3238
3668
|
readonly isNonFungible: boolean;
|
|
3239
3669
|
readonly type: "Fungible" | "NonFungible";
|
|
3240
3670
|
}
|
|
3241
|
-
/** @name StagingXcmExecutorAssetTransferTransferType (
|
|
3671
|
+
/** @name StagingXcmExecutorAssetTransferTransferType (371) */
|
|
3242
3672
|
interface StagingXcmExecutorAssetTransferTransferType extends Enum {
|
|
3243
3673
|
readonly isTeleport: boolean;
|
|
3244
3674
|
readonly isLocalReserve: boolean;
|
|
@@ -3247,17 +3677,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
3247
3677
|
readonly asRemoteReserve: XcmVersionedLocation;
|
|
3248
3678
|
readonly type: "Teleport" | "LocalReserve" | "DestinationReserve" | "RemoteReserve";
|
|
3249
3679
|
}
|
|
3250
|
-
/** @name XcmVersionedAssetId (
|
|
3680
|
+
/** @name XcmVersionedAssetId (372) */
|
|
3251
3681
|
interface XcmVersionedAssetId extends Enum {
|
|
3252
3682
|
readonly isV3: boolean;
|
|
3253
3683
|
readonly asV3: XcmV3MultiassetAssetId;
|
|
3254
3684
|
readonly isV4: boolean;
|
|
3255
3685
|
readonly asV4: StagingXcmV4AssetAssetId;
|
|
3256
|
-
readonly
|
|
3686
|
+
readonly isV5: boolean;
|
|
3687
|
+
readonly asV5: StagingXcmV5AssetAssetId;
|
|
3688
|
+
readonly type: "V3" | "V4" | "V5";
|
|
3257
3689
|
}
|
|
3258
|
-
/** @name CumulusPalletXcmCall (
|
|
3690
|
+
/** @name CumulusPalletXcmCall (373) */
|
|
3259
3691
|
type CumulusPalletXcmCall = Null;
|
|
3260
|
-
/** @name PalletMessageQueueCall (
|
|
3692
|
+
/** @name PalletMessageQueueCall (374) */
|
|
3261
3693
|
interface PalletMessageQueueCall extends Enum {
|
|
3262
3694
|
readonly isReapPage: boolean;
|
|
3263
3695
|
readonly asReapPage: {
|
|
@@ -3273,13 +3705,15 @@ declare module "@polkadot/types/lookup" {
|
|
|
3273
3705
|
} & Struct;
|
|
3274
3706
|
readonly type: "ReapPage" | "ExecuteOverweight";
|
|
3275
3707
|
}
|
|
3276
|
-
/** @name PalletStorageProvidersCall (
|
|
3708
|
+
/** @name PalletStorageProvidersCall (375) */
|
|
3277
3709
|
interface PalletStorageProvidersCall extends Enum {
|
|
3278
3710
|
readonly isRequestMspSignUp: boolean;
|
|
3279
3711
|
readonly asRequestMspSignUp: {
|
|
3280
3712
|
readonly capacity: u64;
|
|
3281
3713
|
readonly multiaddresses: Vec<Bytes>;
|
|
3282
|
-
readonly
|
|
3714
|
+
readonly valuePropPricePerGigaUnitOfDataPerBlock: u128;
|
|
3715
|
+
readonly commitment: Bytes;
|
|
3716
|
+
readonly valuePropMaxDataLimit: u64;
|
|
3283
3717
|
readonly paymentAccount: AccountId32;
|
|
3284
3718
|
} & Struct;
|
|
3285
3719
|
readonly isRequestBspSignUp: boolean;
|
|
@@ -3294,6 +3728,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
3294
3728
|
} & Struct;
|
|
3295
3729
|
readonly isCancelSignUp: boolean;
|
|
3296
3730
|
readonly isMspSignOff: boolean;
|
|
3731
|
+
readonly asMspSignOff: {
|
|
3732
|
+
readonly mspId: H256;
|
|
3733
|
+
} & Struct;
|
|
3297
3734
|
readonly isBspSignOff: boolean;
|
|
3298
3735
|
readonly isChangeCapacity: boolean;
|
|
3299
3736
|
readonly asChangeCapacity: {
|
|
@@ -3301,7 +3738,21 @@ declare module "@polkadot/types/lookup" {
|
|
|
3301
3738
|
} & Struct;
|
|
3302
3739
|
readonly isAddValueProp: boolean;
|
|
3303
3740
|
readonly asAddValueProp: {
|
|
3304
|
-
readonly
|
|
3741
|
+
readonly pricePerGigaUnitOfDataPerBlock: u128;
|
|
3742
|
+
readonly commitment: Bytes;
|
|
3743
|
+
readonly bucketDataLimit: u64;
|
|
3744
|
+
} & Struct;
|
|
3745
|
+
readonly isMakeValuePropUnavailable: boolean;
|
|
3746
|
+
readonly asMakeValuePropUnavailable: {
|
|
3747
|
+
readonly valuePropId: H256;
|
|
3748
|
+
} & Struct;
|
|
3749
|
+
readonly isAddMultiaddress: boolean;
|
|
3750
|
+
readonly asAddMultiaddress: {
|
|
3751
|
+
readonly newMultiaddress: Bytes;
|
|
3752
|
+
} & Struct;
|
|
3753
|
+
readonly isRemoveMultiaddress: boolean;
|
|
3754
|
+
readonly asRemoveMultiaddress: {
|
|
3755
|
+
readonly multiaddress: Bytes;
|
|
3305
3756
|
} & Struct;
|
|
3306
3757
|
readonly isForceMspSignUp: boolean;
|
|
3307
3758
|
readonly asForceMspSignUp: {
|
|
@@ -3309,7 +3760,9 @@ declare module "@polkadot/types/lookup" {
|
|
|
3309
3760
|
readonly mspId: H256;
|
|
3310
3761
|
readonly capacity: u64;
|
|
3311
3762
|
readonly multiaddresses: Vec<Bytes>;
|
|
3312
|
-
readonly
|
|
3763
|
+
readonly valuePropPricePerGigaUnitOfDataPerBlock: u128;
|
|
3764
|
+
readonly commitment: Bytes;
|
|
3765
|
+
readonly valuePropMaxDataLimit: u64;
|
|
3313
3766
|
readonly paymentAccount: AccountId32;
|
|
3314
3767
|
} & Struct;
|
|
3315
3768
|
readonly isForceBspSignUp: boolean;
|
|
@@ -3325,20 +3778,28 @@ declare module "@polkadot/types/lookup" {
|
|
|
3325
3778
|
readonly asSlash: {
|
|
3326
3779
|
readonly providerId: H256;
|
|
3327
3780
|
} & Struct;
|
|
3328
|
-
readonly
|
|
3781
|
+
readonly isTopUpDeposit: boolean;
|
|
3782
|
+
readonly isDeleteProvider: boolean;
|
|
3783
|
+
readonly asDeleteProvider: {
|
|
3784
|
+
readonly providerId: H256;
|
|
3785
|
+
} & Struct;
|
|
3786
|
+
readonly isStopAllCycles: boolean;
|
|
3787
|
+
readonly type: "RequestMspSignUp" | "RequestBspSignUp" | "ConfirmSignUp" | "CancelSignUp" | "MspSignOff" | "BspSignOff" | "ChangeCapacity" | "AddValueProp" | "MakeValuePropUnavailable" | "AddMultiaddress" | "RemoveMultiaddress" | "ForceMspSignUp" | "ForceBspSignUp" | "Slash" | "TopUpDeposit" | "DeleteProvider" | "StopAllCycles";
|
|
3329
3788
|
}
|
|
3330
|
-
/** @name PalletFileSystemCall (
|
|
3789
|
+
/** @name PalletFileSystemCall (376) */
|
|
3331
3790
|
interface PalletFileSystemCall extends Enum {
|
|
3332
3791
|
readonly isCreateBucket: boolean;
|
|
3333
3792
|
readonly asCreateBucket: {
|
|
3334
3793
|
readonly mspId: H256;
|
|
3335
3794
|
readonly name: Bytes;
|
|
3336
3795
|
readonly private: bool;
|
|
3796
|
+
readonly valuePropId: H256;
|
|
3337
3797
|
} & Struct;
|
|
3338
3798
|
readonly isRequestMoveBucket: boolean;
|
|
3339
3799
|
readonly asRequestMoveBucket: {
|
|
3340
3800
|
readonly bucketId: H256;
|
|
3341
3801
|
readonly newMspId: H256;
|
|
3802
|
+
readonly newValuePropId: H256;
|
|
3342
3803
|
} & Struct;
|
|
3343
3804
|
readonly isMspRespondMoveBucketRequest: boolean;
|
|
3344
3805
|
readonly asMspRespondMoveBucketRequest: {
|
|
@@ -3354,6 +3815,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
3354
3815
|
readonly asCreateAndAssociateCollectionWithBucket: {
|
|
3355
3816
|
readonly bucketId: H256;
|
|
3356
3817
|
} & Struct;
|
|
3818
|
+
readonly isDeleteBucket: boolean;
|
|
3819
|
+
readonly asDeleteBucket: {
|
|
3820
|
+
readonly bucketId: H256;
|
|
3821
|
+
} & Struct;
|
|
3357
3822
|
readonly isIssueStorageRequest: boolean;
|
|
3358
3823
|
readonly asIssueStorageRequest: {
|
|
3359
3824
|
readonly bucketId: H256;
|
|
@@ -3362,18 +3827,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
3362
3827
|
readonly size_: u64;
|
|
3363
3828
|
readonly mspId: H256;
|
|
3364
3829
|
readonly peerIds: Vec<Bytes>;
|
|
3830
|
+
readonly replicationTarget: PalletFileSystemReplicationTarget;
|
|
3365
3831
|
} & Struct;
|
|
3366
3832
|
readonly isRevokeStorageRequest: boolean;
|
|
3367
3833
|
readonly asRevokeStorageRequest: {
|
|
3368
3834
|
readonly fileKey: H256;
|
|
3369
3835
|
} & Struct;
|
|
3370
|
-
readonly isBspAddDataServerForMoveBucketRequest: boolean;
|
|
3371
|
-
readonly asBspAddDataServerForMoveBucketRequest: {
|
|
3372
|
-
readonly bucketId: H256;
|
|
3373
|
-
} & Struct;
|
|
3374
3836
|
readonly isMspRespondStorageRequestsMultipleBuckets: boolean;
|
|
3375
3837
|
readonly asMspRespondStorageRequestsMultipleBuckets: {
|
|
3376
|
-
readonly
|
|
3838
|
+
readonly storageRequestMspResponse: Vec<PalletFileSystemStorageRequestMspBucketResponse>;
|
|
3839
|
+
} & Struct;
|
|
3840
|
+
readonly isMspStopStoringBucket: boolean;
|
|
3841
|
+
readonly asMspStopStoringBucket: {
|
|
3842
|
+
readonly bucketId: H256;
|
|
3377
3843
|
} & Struct;
|
|
3378
3844
|
readonly isBspVolunteer: boolean;
|
|
3379
3845
|
readonly asBspVolunteer: {
|
|
@@ -3382,7 +3848,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3382
3848
|
readonly isBspConfirmStoring: boolean;
|
|
3383
3849
|
readonly asBspConfirmStoring: {
|
|
3384
3850
|
readonly nonInclusionForestProof: SpTrieStorageProofCompactProof;
|
|
3385
|
-
readonly fileKeysAndProofs: Vec<
|
|
3851
|
+
readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
|
|
3386
3852
|
} & Struct;
|
|
3387
3853
|
readonly isBspRequestStopStoring: boolean;
|
|
3388
3854
|
readonly asBspRequestStopStoring: {
|
|
@@ -3410,46 +3876,78 @@ declare module "@polkadot/types/lookup" {
|
|
|
3410
3876
|
readonly size_: u64;
|
|
3411
3877
|
readonly inclusionForestProof: SpTrieStorageProofCompactProof;
|
|
3412
3878
|
} & Struct;
|
|
3879
|
+
readonly isMspStopStoringBucketForInsolventUser: boolean;
|
|
3880
|
+
readonly asMspStopStoringBucketForInsolventUser: {
|
|
3881
|
+
readonly bucketId: H256;
|
|
3882
|
+
} & Struct;
|
|
3883
|
+
readonly isRequestDeleteFile: boolean;
|
|
3884
|
+
readonly asRequestDeleteFile: {
|
|
3885
|
+
readonly signedIntention: PalletFileSystemFileOperationIntention;
|
|
3886
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3887
|
+
readonly bucketId: H256;
|
|
3888
|
+
readonly location: Bytes;
|
|
3889
|
+
readonly size_: u64;
|
|
3890
|
+
readonly fingerprint: H256;
|
|
3891
|
+
} & Struct;
|
|
3413
3892
|
readonly isDeleteFile: boolean;
|
|
3414
3893
|
readonly asDeleteFile: {
|
|
3894
|
+
readonly fileOwner: AccountId32;
|
|
3895
|
+
readonly signedIntention: PalletFileSystemFileOperationIntention;
|
|
3896
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3415
3897
|
readonly bucketId: H256;
|
|
3416
|
-
readonly fileKey: H256;
|
|
3417
3898
|
readonly location: Bytes;
|
|
3418
3899
|
readonly size_: u64;
|
|
3419
3900
|
readonly fingerprint: H256;
|
|
3420
|
-
readonly
|
|
3901
|
+
readonly bspId: Option<H256>;
|
|
3902
|
+
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
3421
3903
|
} & Struct;
|
|
3422
|
-
readonly
|
|
3423
|
-
readonly
|
|
3424
|
-
readonly user: AccountId32;
|
|
3904
|
+
readonly isDeleteFileForIncompleteStorageRequest: boolean;
|
|
3905
|
+
readonly asDeleteFileForIncompleteStorageRequest: {
|
|
3425
3906
|
readonly fileKey: H256;
|
|
3426
|
-
readonly
|
|
3907
|
+
readonly bspId: Option<H256>;
|
|
3427
3908
|
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
3428
3909
|
} & Struct;
|
|
3429
|
-
readonly
|
|
3430
|
-
readonly asSetGlobalParameters: {
|
|
3431
|
-
readonly replicationTarget: Option<u32>;
|
|
3432
|
-
readonly tickRangeToMaximumThreshold: Option<u32>;
|
|
3433
|
-
} & Struct;
|
|
3434
|
-
readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "BspAddDataServerForMoveBucketRequest" | "MspRespondStorageRequestsMultipleBuckets" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "DeleteFile" | "PendingFileDeletionRequestSubmitProof" | "SetGlobalParameters";
|
|
3910
|
+
readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFile" | "DeleteFileForIncompleteStorageRequest";
|
|
3435
3911
|
}
|
|
3436
|
-
/** @name PalletFileSystemBucketMoveRequestResponse (
|
|
3912
|
+
/** @name PalletFileSystemBucketMoveRequestResponse (377) */
|
|
3437
3913
|
interface PalletFileSystemBucketMoveRequestResponse extends Enum {
|
|
3438
3914
|
readonly isAccepted: boolean;
|
|
3439
3915
|
readonly isRejected: boolean;
|
|
3440
3916
|
readonly type: "Accepted" | "Rejected";
|
|
3441
3917
|
}
|
|
3442
|
-
/** @name
|
|
3443
|
-
interface
|
|
3444
|
-
readonly
|
|
3445
|
-
readonly
|
|
3918
|
+
/** @name PalletFileSystemReplicationTarget (378) */
|
|
3919
|
+
interface PalletFileSystemReplicationTarget extends Enum {
|
|
3920
|
+
readonly isBasic: boolean;
|
|
3921
|
+
readonly isStandard: boolean;
|
|
3922
|
+
readonly isHighSecurity: boolean;
|
|
3923
|
+
readonly isSuperHighSecurity: boolean;
|
|
3924
|
+
readonly isUltraHighSecurity: boolean;
|
|
3925
|
+
readonly isCustom: boolean;
|
|
3926
|
+
readonly asCustom: u32;
|
|
3927
|
+
readonly type: "Basic" | "Standard" | "HighSecurity" | "SuperHighSecurity" | "UltraHighSecurity" | "Custom";
|
|
3928
|
+
}
|
|
3929
|
+
/** @name PalletFileSystemStorageRequestMspBucketResponse (380) */
|
|
3930
|
+
interface PalletFileSystemStorageRequestMspBucketResponse extends Struct {
|
|
3931
|
+
readonly bucketId: H256;
|
|
3932
|
+
readonly accept: Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>;
|
|
3933
|
+
readonly reject: Vec<PalletFileSystemRejectedStorageRequest>;
|
|
3934
|
+
}
|
|
3935
|
+
/** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (382) */
|
|
3936
|
+
interface PalletFileSystemStorageRequestMspAcceptedFileKeys extends Struct {
|
|
3937
|
+
readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
|
|
3938
|
+
readonly forestProof: SpTrieStorageProofCompactProof;
|
|
3939
|
+
}
|
|
3940
|
+
/** @name PalletFileSystemFileKeyWithProof (384) */
|
|
3941
|
+
interface PalletFileSystemFileKeyWithProof extends Struct {
|
|
3942
|
+
readonly fileKey: H256;
|
|
3943
|
+
readonly proof: ShpFileKeyVerifierFileKeyProof;
|
|
3446
3944
|
}
|
|
3447
|
-
/** @name
|
|
3448
|
-
interface
|
|
3449
|
-
readonly
|
|
3450
|
-
readonly
|
|
3945
|
+
/** @name PalletFileSystemRejectedStorageRequest (386) */
|
|
3946
|
+
interface PalletFileSystemRejectedStorageRequest extends Struct {
|
|
3947
|
+
readonly fileKey: H256;
|
|
3948
|
+
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
3451
3949
|
}
|
|
3452
|
-
/** @name PalletProofsDealerCall (
|
|
3950
|
+
/** @name PalletProofsDealerCall (388) */
|
|
3453
3951
|
interface PalletProofsDealerCall extends Enum {
|
|
3454
3952
|
readonly isChallenge: boolean;
|
|
3455
3953
|
readonly asChallenge: {
|
|
@@ -3468,14 +3966,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
3468
3966
|
readonly asSetPaused: {
|
|
3469
3967
|
readonly paused: bool;
|
|
3470
3968
|
} & Struct;
|
|
3471
|
-
readonly
|
|
3969
|
+
readonly isPriorityChallenge: boolean;
|
|
3970
|
+
readonly asPriorityChallenge: {
|
|
3971
|
+
readonly key: H256;
|
|
3972
|
+
readonly shouldRemoveKey: bool;
|
|
3973
|
+
} & Struct;
|
|
3974
|
+
readonly type: "Challenge" | "SubmitProof" | "ForceInitialiseChallengeCycle" | "SetPaused" | "PriorityChallenge";
|
|
3472
3975
|
}
|
|
3473
|
-
/** @name PalletRandomnessCall (
|
|
3976
|
+
/** @name PalletRandomnessCall (389) */
|
|
3474
3977
|
interface PalletRandomnessCall extends Enum {
|
|
3475
3978
|
readonly isSetBabeRandomness: boolean;
|
|
3476
3979
|
readonly type: "SetBabeRandomness";
|
|
3477
3980
|
}
|
|
3478
|
-
/** @name PalletPaymentStreamsCall (
|
|
3981
|
+
/** @name PalletPaymentStreamsCall (390) */
|
|
3479
3982
|
interface PalletPaymentStreamsCall extends Enum {
|
|
3480
3983
|
readonly isCreateFixedRatePaymentStream: boolean;
|
|
3481
3984
|
readonly asCreateFixedRatePaymentStream: {
|
|
@@ -3515,11 +4018,18 @@ declare module "@polkadot/types/lookup" {
|
|
|
3515
4018
|
readonly asChargePaymentStreams: {
|
|
3516
4019
|
readonly userAccount: AccountId32;
|
|
3517
4020
|
} & Struct;
|
|
4021
|
+
readonly isChargeMultipleUsersPaymentStreams: boolean;
|
|
4022
|
+
readonly asChargeMultipleUsersPaymentStreams: {
|
|
4023
|
+
readonly userAccounts: Vec<AccountId32>;
|
|
4024
|
+
} & Struct;
|
|
3518
4025
|
readonly isPayOutstandingDebt: boolean;
|
|
4026
|
+
readonly asPayOutstandingDebt: {
|
|
4027
|
+
readonly providers: Vec<H256>;
|
|
4028
|
+
} & Struct;
|
|
3519
4029
|
readonly isClearInsolventFlag: boolean;
|
|
3520
|
-
readonly type: "CreateFixedRatePaymentStream" | "UpdateFixedRatePaymentStream" | "DeleteFixedRatePaymentStream" | "CreateDynamicRatePaymentStream" | "UpdateDynamicRatePaymentStream" | "DeleteDynamicRatePaymentStream" | "ChargePaymentStreams" | "PayOutstandingDebt" | "ClearInsolventFlag";
|
|
4030
|
+
readonly type: "CreateFixedRatePaymentStream" | "UpdateFixedRatePaymentStream" | "DeleteFixedRatePaymentStream" | "CreateDynamicRatePaymentStream" | "UpdateDynamicRatePaymentStream" | "DeleteDynamicRatePaymentStream" | "ChargePaymentStreams" | "ChargeMultipleUsersPaymentStreams" | "PayOutstandingDebt" | "ClearInsolventFlag";
|
|
3521
4031
|
}
|
|
3522
|
-
/** @name PalletBucketNftsCall (
|
|
4032
|
+
/** @name PalletBucketNftsCall (391) */
|
|
3523
4033
|
interface PalletBucketNftsCall extends Enum {
|
|
3524
4034
|
readonly isShareAccess: boolean;
|
|
3525
4035
|
readonly asShareAccess: {
|
|
@@ -3536,7 +4046,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3536
4046
|
} & Struct;
|
|
3537
4047
|
readonly type: "ShareAccess" | "UpdateReadAccess";
|
|
3538
4048
|
}
|
|
3539
|
-
/** @name PalletNftsCall (
|
|
4049
|
+
/** @name PalletNftsCall (393) */
|
|
3540
4050
|
interface PalletNftsCall extends Enum {
|
|
3541
4051
|
readonly isCreate: boolean;
|
|
3542
4052
|
readonly asCreate: {
|
|
@@ -3769,13 +4279,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
3769
4279
|
} & Struct;
|
|
3770
4280
|
readonly type: "Create" | "ForceCreate" | "Destroy" | "Mint" | "ForceMint" | "Burn" | "Transfer" | "Redeposit" | "LockItemTransfer" | "UnlockItemTransfer" | "LockCollection" | "TransferOwnership" | "SetTeam" | "ForceCollectionOwner" | "ForceCollectionConfig" | "ApproveTransfer" | "CancelApproval" | "ClearAllTransferApprovals" | "LockItemProperties" | "SetAttribute" | "ForceSetAttribute" | "ClearAttribute" | "ApproveItemAttributes" | "CancelItemAttributesApproval" | "SetMetadata" | "ClearMetadata" | "SetCollectionMetadata" | "ClearCollectionMetadata" | "SetAcceptOwnership" | "SetCollectionMaxSupply" | "UpdateMintSettings" | "SetPrice" | "BuyItem" | "PayTips" | "CreateSwap" | "CancelSwap" | "ClaimSwap" | "MintPreSigned" | "SetAttributesPreSigned";
|
|
3771
4281
|
}
|
|
3772
|
-
/** @name PalletNftsCollectionConfig (
|
|
4282
|
+
/** @name PalletNftsCollectionConfig (394) */
|
|
3773
4283
|
interface PalletNftsCollectionConfig extends Struct {
|
|
3774
4284
|
readonly settings: u64;
|
|
3775
4285
|
readonly maxSupply: Option<u32>;
|
|
3776
4286
|
readonly mintSettings: PalletNftsMintSettings;
|
|
3777
4287
|
}
|
|
3778
|
-
/** @name PalletNftsCollectionSetting (
|
|
4288
|
+
/** @name PalletNftsCollectionSetting (396) */
|
|
3779
4289
|
interface PalletNftsCollectionSetting extends Enum {
|
|
3780
4290
|
readonly isTransferableItems: boolean;
|
|
3781
4291
|
readonly isUnlockedMetadata: boolean;
|
|
@@ -3784,7 +4294,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3784
4294
|
readonly isDepositRequired: boolean;
|
|
3785
4295
|
readonly type: "TransferableItems" | "UnlockedMetadata" | "UnlockedAttributes" | "UnlockedMaxSupply" | "DepositRequired";
|
|
3786
4296
|
}
|
|
3787
|
-
/** @name PalletNftsMintSettings (
|
|
4297
|
+
/** @name PalletNftsMintSettings (397) */
|
|
3788
4298
|
interface PalletNftsMintSettings extends Struct {
|
|
3789
4299
|
readonly mintType: PalletNftsMintType;
|
|
3790
4300
|
readonly price: Option<u128>;
|
|
@@ -3792,7 +4302,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3792
4302
|
readonly endBlock: Option<u32>;
|
|
3793
4303
|
readonly defaultItemSettings: u64;
|
|
3794
4304
|
}
|
|
3795
|
-
/** @name PalletNftsMintType (
|
|
4305
|
+
/** @name PalletNftsMintType (398) */
|
|
3796
4306
|
interface PalletNftsMintType extends Enum {
|
|
3797
4307
|
readonly isIssuer: boolean;
|
|
3798
4308
|
readonly isPublic: boolean;
|
|
@@ -3800,40 +4310,40 @@ declare module "@polkadot/types/lookup" {
|
|
|
3800
4310
|
readonly asHolderOf: u32;
|
|
3801
4311
|
readonly type: "Issuer" | "Public" | "HolderOf";
|
|
3802
4312
|
}
|
|
3803
|
-
/** @name PalletNftsItemSetting (
|
|
4313
|
+
/** @name PalletNftsItemSetting (401) */
|
|
3804
4314
|
interface PalletNftsItemSetting extends Enum {
|
|
3805
4315
|
readonly isTransferable: boolean;
|
|
3806
4316
|
readonly isUnlockedMetadata: boolean;
|
|
3807
4317
|
readonly isUnlockedAttributes: boolean;
|
|
3808
4318
|
readonly type: "Transferable" | "UnlockedMetadata" | "UnlockedAttributes";
|
|
3809
4319
|
}
|
|
3810
|
-
/** @name PalletNftsDestroyWitness (
|
|
4320
|
+
/** @name PalletNftsDestroyWitness (402) */
|
|
3811
4321
|
interface PalletNftsDestroyWitness extends Struct {
|
|
3812
4322
|
readonly itemMetadatas: Compact<u32>;
|
|
3813
4323
|
readonly itemConfigs: Compact<u32>;
|
|
3814
4324
|
readonly attributes: Compact<u32>;
|
|
3815
4325
|
}
|
|
3816
|
-
/** @name PalletNftsMintWitness (
|
|
4326
|
+
/** @name PalletNftsMintWitness (404) */
|
|
3817
4327
|
interface PalletNftsMintWitness extends Struct {
|
|
3818
4328
|
readonly ownedItem: Option<u32>;
|
|
3819
4329
|
readonly mintPrice: Option<u128>;
|
|
3820
4330
|
}
|
|
3821
|
-
/** @name PalletNftsItemConfig (
|
|
4331
|
+
/** @name PalletNftsItemConfig (405) */
|
|
3822
4332
|
interface PalletNftsItemConfig extends Struct {
|
|
3823
4333
|
readonly settings: u64;
|
|
3824
4334
|
}
|
|
3825
|
-
/** @name PalletNftsCancelAttributesApprovalWitness (
|
|
4335
|
+
/** @name PalletNftsCancelAttributesApprovalWitness (407) */
|
|
3826
4336
|
interface PalletNftsCancelAttributesApprovalWitness extends Struct {
|
|
3827
4337
|
readonly accountAttributes: u32;
|
|
3828
4338
|
}
|
|
3829
|
-
/** @name PalletNftsItemTip (
|
|
4339
|
+
/** @name PalletNftsItemTip (409) */
|
|
3830
4340
|
interface PalletNftsItemTip extends Struct {
|
|
3831
4341
|
readonly collection: u32;
|
|
3832
4342
|
readonly item: u32;
|
|
3833
4343
|
readonly receiver: AccountId32;
|
|
3834
4344
|
readonly amount: u128;
|
|
3835
4345
|
}
|
|
3836
|
-
/** @name PalletNftsPreSignedMint (
|
|
4346
|
+
/** @name PalletNftsPreSignedMint (411) */
|
|
3837
4347
|
interface PalletNftsPreSignedMint extends Struct {
|
|
3838
4348
|
readonly collection: u32;
|
|
3839
4349
|
readonly item: u32;
|
|
@@ -3843,17 +4353,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3843
4353
|
readonly deadline: u32;
|
|
3844
4354
|
readonly mintPrice: Option<u128>;
|
|
3845
4355
|
}
|
|
3846
|
-
/** @name
|
|
3847
|
-
interface SpRuntimeMultiSignature extends Enum {
|
|
3848
|
-
readonly isEd25519: boolean;
|
|
3849
|
-
readonly asEd25519: U8aFixed;
|
|
3850
|
-
readonly isSr25519: boolean;
|
|
3851
|
-
readonly asSr25519: U8aFixed;
|
|
3852
|
-
readonly isEcdsa: boolean;
|
|
3853
|
-
readonly asEcdsa: U8aFixed;
|
|
3854
|
-
readonly type: "Ed25519" | "Sr25519" | "Ecdsa";
|
|
3855
|
-
}
|
|
3856
|
-
/** @name PalletNftsPreSignedAttributes (368) */
|
|
4356
|
+
/** @name PalletNftsPreSignedAttributes (412) */
|
|
3857
4357
|
interface PalletNftsPreSignedAttributes extends Struct {
|
|
3858
4358
|
readonly collection: u32;
|
|
3859
4359
|
readonly item: u32;
|
|
@@ -3861,55 +4361,185 @@ declare module "@polkadot/types/lookup" {
|
|
|
3861
4361
|
readonly namespace: PalletNftsAttributeNamespace;
|
|
3862
4362
|
readonly deadline: u32;
|
|
3863
4363
|
}
|
|
3864
|
-
/** @name PalletParametersCall (
|
|
4364
|
+
/** @name PalletParametersCall (413) */
|
|
3865
4365
|
interface PalletParametersCall extends Enum {
|
|
3866
4366
|
readonly isSetParameter: boolean;
|
|
3867
4367
|
readonly asSetParameter: {
|
|
3868
|
-
readonly keyValue:
|
|
4368
|
+
readonly keyValue: ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters;
|
|
3869
4369
|
} & Struct;
|
|
3870
4370
|
readonly type: "SetParameter";
|
|
3871
4371
|
}
|
|
3872
|
-
/** @name
|
|
3873
|
-
interface
|
|
4372
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters (414) */
|
|
4373
|
+
interface ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters extends Enum {
|
|
3874
4374
|
readonly isRuntimeConfig: boolean;
|
|
3875
|
-
readonly asRuntimeConfig:
|
|
4375
|
+
readonly asRuntimeConfig: ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
|
|
3876
4376
|
readonly type: "RuntimeConfig";
|
|
3877
4377
|
}
|
|
3878
|
-
/** @name
|
|
3879
|
-
interface
|
|
4378
|
+
/** @name ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (415) */
|
|
4379
|
+
interface ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters extends Enum {
|
|
3880
4380
|
readonly isSlashAmountPerMaxFileSize: boolean;
|
|
3881
4381
|
readonly asSlashAmountPerMaxFileSize: ITuple<[
|
|
3882
|
-
|
|
4382
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize,
|
|
3883
4383
|
Option<u128>
|
|
3884
4384
|
]>;
|
|
3885
4385
|
readonly isStakeToChallengePeriod: boolean;
|
|
3886
4386
|
readonly asStakeToChallengePeriod: ITuple<[
|
|
3887
|
-
|
|
4387
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod,
|
|
3888
4388
|
Option<u128>
|
|
3889
4389
|
]>;
|
|
3890
4390
|
readonly isCheckpointChallengePeriod: boolean;
|
|
3891
4391
|
readonly asCheckpointChallengePeriod: ITuple<[
|
|
3892
|
-
|
|
4392
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod,
|
|
3893
4393
|
Option<u32>
|
|
3894
4394
|
]>;
|
|
3895
4395
|
readonly isMinChallengePeriod: boolean;
|
|
3896
4396
|
readonly asMinChallengePeriod: ITuple<[
|
|
3897
|
-
|
|
4397
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod,
|
|
4398
|
+
Option<u32>
|
|
4399
|
+
]>;
|
|
4400
|
+
readonly isSystemUtilisationLowerThresholdPercentage: boolean;
|
|
4401
|
+
readonly asSystemUtilisationLowerThresholdPercentage: ITuple<[
|
|
4402
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage,
|
|
4403
|
+
Option<Perbill>
|
|
4404
|
+
]>;
|
|
4405
|
+
readonly isSystemUtilisationUpperThresholdPercentage: boolean;
|
|
4406
|
+
readonly asSystemUtilisationUpperThresholdPercentage: ITuple<[
|
|
4407
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage,
|
|
4408
|
+
Option<Perbill>
|
|
4409
|
+
]>;
|
|
4410
|
+
readonly isMostlyStablePrice: boolean;
|
|
4411
|
+
readonly asMostlyStablePrice: ITuple<[
|
|
4412
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice,
|
|
4413
|
+
Option<u128>
|
|
4414
|
+
]>;
|
|
4415
|
+
readonly isMaxPrice: boolean;
|
|
4416
|
+
readonly asMaxPrice: ITuple<[
|
|
4417
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice,
|
|
4418
|
+
Option<u128>
|
|
4419
|
+
]>;
|
|
4420
|
+
readonly isMinPrice: boolean;
|
|
4421
|
+
readonly asMinPrice: ITuple<[
|
|
4422
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,
|
|
4423
|
+
Option<u128>
|
|
4424
|
+
]>;
|
|
4425
|
+
readonly isUpperExponentFactor: boolean;
|
|
4426
|
+
readonly asUpperExponentFactor: ITuple<[
|
|
4427
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,
|
|
4428
|
+
Option<u32>
|
|
4429
|
+
]>;
|
|
4430
|
+
readonly isLowerExponentFactor: boolean;
|
|
4431
|
+
readonly asLowerExponentFactor: ITuple<[
|
|
4432
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,
|
|
4433
|
+
Option<u32>
|
|
4434
|
+
]>;
|
|
4435
|
+
readonly isZeroSizeBucketFixedRate: boolean;
|
|
4436
|
+
readonly asZeroSizeBucketFixedRate: ITuple<[
|
|
4437
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,
|
|
4438
|
+
Option<u128>
|
|
4439
|
+
]>;
|
|
4440
|
+
readonly isIdealUtilisationRate: boolean;
|
|
4441
|
+
readonly asIdealUtilisationRate: ITuple<[
|
|
4442
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate,
|
|
4443
|
+
Option<Perbill>
|
|
4444
|
+
]>;
|
|
4445
|
+
readonly isDecayRate: boolean;
|
|
4446
|
+
readonly asDecayRate: ITuple<[
|
|
4447
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate,
|
|
4448
|
+
Option<Perbill>
|
|
4449
|
+
]>;
|
|
4450
|
+
readonly isMinimumTreasuryCut: boolean;
|
|
4451
|
+
readonly asMinimumTreasuryCut: ITuple<[
|
|
4452
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut,
|
|
4453
|
+
Option<Perbill>
|
|
4454
|
+
]>;
|
|
4455
|
+
readonly isMaximumTreasuryCut: boolean;
|
|
4456
|
+
readonly asMaximumTreasuryCut: ITuple<[
|
|
4457
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut,
|
|
4458
|
+
Option<Perbill>
|
|
4459
|
+
]>;
|
|
4460
|
+
readonly isBspStopStoringFilePenalty: boolean;
|
|
4461
|
+
readonly asBspStopStoringFilePenalty: ITuple<[
|
|
4462
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty,
|
|
4463
|
+
Option<u128>
|
|
4464
|
+
]>;
|
|
4465
|
+
readonly isProviderTopUpTtl: boolean;
|
|
4466
|
+
readonly asProviderTopUpTtl: ITuple<[
|
|
4467
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl,
|
|
4468
|
+
Option<u32>
|
|
4469
|
+
]>;
|
|
4470
|
+
readonly isBasicReplicationTarget: boolean;
|
|
4471
|
+
readonly asBasicReplicationTarget: ITuple<[
|
|
4472
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget,
|
|
4473
|
+
Option<u32>
|
|
4474
|
+
]>;
|
|
4475
|
+
readonly isStandardReplicationTarget: boolean;
|
|
4476
|
+
readonly asStandardReplicationTarget: ITuple<[
|
|
4477
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget,
|
|
4478
|
+
Option<u32>
|
|
4479
|
+
]>;
|
|
4480
|
+
readonly isHighSecurityReplicationTarget: boolean;
|
|
4481
|
+
readonly asHighSecurityReplicationTarget: ITuple<[
|
|
4482
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget,
|
|
4483
|
+
Option<u32>
|
|
4484
|
+
]>;
|
|
4485
|
+
readonly isSuperHighSecurityReplicationTarget: boolean;
|
|
4486
|
+
readonly asSuperHighSecurityReplicationTarget: ITuple<[
|
|
4487
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget,
|
|
4488
|
+
Option<u32>
|
|
4489
|
+
]>;
|
|
4490
|
+
readonly isUltraHighSecurityReplicationTarget: boolean;
|
|
4491
|
+
readonly asUltraHighSecurityReplicationTarget: ITuple<[
|
|
4492
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget,
|
|
4493
|
+
Option<u32>
|
|
4494
|
+
]>;
|
|
4495
|
+
readonly isMaxReplicationTarget: boolean;
|
|
4496
|
+
readonly asMaxReplicationTarget: ITuple<[
|
|
4497
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget,
|
|
4498
|
+
Option<u32>
|
|
4499
|
+
]>;
|
|
4500
|
+
readonly isTickRangeToMaximumThreshold: boolean;
|
|
4501
|
+
readonly asTickRangeToMaximumThreshold: ITuple<[
|
|
4502
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold,
|
|
4503
|
+
Option<u32>
|
|
4504
|
+
]>;
|
|
4505
|
+
readonly isStorageRequestTtl: boolean;
|
|
4506
|
+
readonly asStorageRequestTtl: ITuple<[
|
|
4507
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl,
|
|
4508
|
+
Option<u32>
|
|
4509
|
+
]>;
|
|
4510
|
+
readonly isMinWaitForStopStoring: boolean;
|
|
4511
|
+
readonly asMinWaitForStopStoring: ITuple<[
|
|
4512
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring,
|
|
4513
|
+
Option<u32>
|
|
4514
|
+
]>;
|
|
4515
|
+
readonly isMinSeedPeriod: boolean;
|
|
4516
|
+
readonly asMinSeedPeriod: ITuple<[
|
|
4517
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod,
|
|
4518
|
+
Option<u32>
|
|
4519
|
+
]>;
|
|
4520
|
+
readonly isStakeToSeedPeriod: boolean;
|
|
4521
|
+
readonly asStakeToSeedPeriod: ITuple<[
|
|
4522
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod,
|
|
4523
|
+
Option<u128>
|
|
4524
|
+
]>;
|
|
4525
|
+
readonly isUpfrontTicksToPay: boolean;
|
|
4526
|
+
readonly asUpfrontTicksToPay: ITuple<[
|
|
4527
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay,
|
|
3898
4528
|
Option<u32>
|
|
3899
4529
|
]>;
|
|
3900
|
-
readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod";
|
|
4530
|
+
readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
|
|
3901
4531
|
}
|
|
3902
|
-
/** @name PalletSudoError (
|
|
4532
|
+
/** @name PalletSudoError (417) */
|
|
3903
4533
|
interface PalletSudoError extends Enum {
|
|
3904
4534
|
readonly isRequireSudo: boolean;
|
|
3905
4535
|
readonly type: "RequireSudo";
|
|
3906
4536
|
}
|
|
3907
|
-
/** @name PalletCollatorSelectionCandidateInfo (
|
|
4537
|
+
/** @name PalletCollatorSelectionCandidateInfo (420) */
|
|
3908
4538
|
interface PalletCollatorSelectionCandidateInfo extends Struct {
|
|
3909
4539
|
readonly who: AccountId32;
|
|
3910
4540
|
readonly deposit: u128;
|
|
3911
4541
|
}
|
|
3912
|
-
/** @name PalletCollatorSelectionError (
|
|
4542
|
+
/** @name PalletCollatorSelectionError (422) */
|
|
3913
4543
|
interface PalletCollatorSelectionError extends Enum {
|
|
3914
4544
|
readonly isTooManyCandidates: boolean;
|
|
3915
4545
|
readonly isTooFewEligibleCollators: boolean;
|
|
@@ -3930,10 +4560,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
3930
4560
|
readonly isInvalidUnreserve: boolean;
|
|
3931
4561
|
readonly type: "TooManyCandidates" | "TooFewEligibleCollators" | "AlreadyCandidate" | "NotCandidate" | "TooManyInvulnerables" | "AlreadyInvulnerable" | "NotInvulnerable" | "NoAssociatedValidatorId" | "ValidatorNotRegistered" | "InsertToCandidateListFailed" | "RemoveFromCandidateListFailed" | "DepositTooLow" | "UpdateCandidateListFailed" | "InsufficientBond" | "TargetIsNotCandidate" | "IdenticalDeposit" | "InvalidUnreserve";
|
|
3932
4562
|
}
|
|
3933
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
4563
|
+
/** @name SpCoreCryptoKeyTypeId (426) */
|
|
3934
4564
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
3935
4565
|
}
|
|
3936
|
-
/** @name PalletSessionError (
|
|
4566
|
+
/** @name PalletSessionError (427) */
|
|
3937
4567
|
interface PalletSessionError extends Enum {
|
|
3938
4568
|
readonly isInvalidProof: boolean;
|
|
3939
4569
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -3942,7 +4572,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3942
4572
|
readonly isNoAccount: boolean;
|
|
3943
4573
|
readonly type: "InvalidProof" | "NoAssociatedValidatorId" | "DuplicatedKey" | "NoKeys" | "NoAccount";
|
|
3944
4574
|
}
|
|
3945
|
-
/** @name CumulusPalletXcmpQueueOutboundChannelDetails (
|
|
4575
|
+
/** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
|
|
3946
4576
|
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
|
|
3947
4577
|
readonly recipient: u32;
|
|
3948
4578
|
readonly state: CumulusPalletXcmpQueueOutboundState;
|
|
@@ -3950,19 +4580,19 @@ declare module "@polkadot/types/lookup" {
|
|
|
3950
4580
|
readonly firstIndex: u16;
|
|
3951
4581
|
readonly lastIndex: u16;
|
|
3952
4582
|
}
|
|
3953
|
-
/** @name CumulusPalletXcmpQueueOutboundState (
|
|
4583
|
+
/** @name CumulusPalletXcmpQueueOutboundState (437) */
|
|
3954
4584
|
interface CumulusPalletXcmpQueueOutboundState extends Enum {
|
|
3955
4585
|
readonly isOk: boolean;
|
|
3956
4586
|
readonly isSuspended: boolean;
|
|
3957
4587
|
readonly type: "Ok" | "Suspended";
|
|
3958
4588
|
}
|
|
3959
|
-
/** @name CumulusPalletXcmpQueueQueueConfigData (
|
|
4589
|
+
/** @name CumulusPalletXcmpQueueQueueConfigData (441) */
|
|
3960
4590
|
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
|
|
3961
4591
|
readonly suspendThreshold: u32;
|
|
3962
4592
|
readonly dropThreshold: u32;
|
|
3963
4593
|
readonly resumeThreshold: u32;
|
|
3964
4594
|
}
|
|
3965
|
-
/** @name CumulusPalletXcmpQueueError (
|
|
4595
|
+
/** @name CumulusPalletXcmpQueueError (442) */
|
|
3966
4596
|
interface CumulusPalletXcmpQueueError extends Enum {
|
|
3967
4597
|
readonly isBadQueueConfig: boolean;
|
|
3968
4598
|
readonly isAlreadySuspended: boolean;
|
|
@@ -3971,7 +4601,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
3971
4601
|
readonly isTooBig: boolean;
|
|
3972
4602
|
readonly type: "BadQueueConfig" | "AlreadySuspended" | "AlreadyResumed" | "TooManyActiveOutboundChannels" | "TooBig";
|
|
3973
4603
|
}
|
|
3974
|
-
/** @name PalletXcmQueryStatus (
|
|
4604
|
+
/** @name PalletXcmQueryStatus (443) */
|
|
3975
4605
|
interface PalletXcmQueryStatus extends Enum {
|
|
3976
4606
|
readonly isPending: boolean;
|
|
3977
4607
|
readonly asPending: {
|
|
@@ -3992,17 +4622,17 @@ declare module "@polkadot/types/lookup" {
|
|
|
3992
4622
|
} & Struct;
|
|
3993
4623
|
readonly type: "Pending" | "VersionNotifier" | "Ready";
|
|
3994
4624
|
}
|
|
3995
|
-
/** @name XcmVersionedResponse (
|
|
4625
|
+
/** @name XcmVersionedResponse (447) */
|
|
3996
4626
|
interface XcmVersionedResponse extends Enum {
|
|
3997
|
-
readonly isV2: boolean;
|
|
3998
|
-
readonly asV2: XcmV2Response;
|
|
3999
4627
|
readonly isV3: boolean;
|
|
4000
4628
|
readonly asV3: XcmV3Response;
|
|
4001
4629
|
readonly isV4: boolean;
|
|
4002
4630
|
readonly asV4: StagingXcmV4Response;
|
|
4003
|
-
readonly
|
|
4631
|
+
readonly isV5: boolean;
|
|
4632
|
+
readonly asV5: StagingXcmV5Response;
|
|
4633
|
+
readonly type: "V3" | "V4" | "V5";
|
|
4004
4634
|
}
|
|
4005
|
-
/** @name PalletXcmVersionMigrationStage (
|
|
4635
|
+
/** @name PalletXcmVersionMigrationStage (453) */
|
|
4006
4636
|
interface PalletXcmVersionMigrationStage extends Enum {
|
|
4007
4637
|
readonly isMigrateSupportedVersion: boolean;
|
|
4008
4638
|
readonly isMigrateVersionNotifiers: boolean;
|
|
@@ -4011,14 +4641,14 @@ declare module "@polkadot/types/lookup" {
|
|
|
4011
4641
|
readonly isMigrateAndNotifyOldTargets: boolean;
|
|
4012
4642
|
readonly type: "MigrateSupportedVersion" | "MigrateVersionNotifiers" | "NotifyCurrentTargets" | "MigrateAndNotifyOldTargets";
|
|
4013
4643
|
}
|
|
4014
|
-
/** @name PalletXcmRemoteLockedFungibleRecord (
|
|
4644
|
+
/** @name PalletXcmRemoteLockedFungibleRecord (455) */
|
|
4015
4645
|
interface PalletXcmRemoteLockedFungibleRecord extends Struct {
|
|
4016
4646
|
readonly amount: u128;
|
|
4017
4647
|
readonly owner: XcmVersionedLocation;
|
|
4018
4648
|
readonly locker: XcmVersionedLocation;
|
|
4019
4649
|
readonly consumers: Vec<ITuple<[Null, u128]>>;
|
|
4020
4650
|
}
|
|
4021
|
-
/** @name PalletXcmError (
|
|
4651
|
+
/** @name PalletXcmError (462) */
|
|
4022
4652
|
interface PalletXcmError extends Enum {
|
|
4023
4653
|
readonly isUnreachable: boolean;
|
|
4024
4654
|
readonly isSendFailure: boolean;
|
|
@@ -4046,7 +4676,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
4046
4676
|
readonly isLocalExecutionIncomplete: boolean;
|
|
4047
4677
|
readonly type: "Unreachable" | "SendFailure" | "Filtered" | "UnweighableMessage" | "DestinationNotInvertible" | "Empty" | "CannotReanchor" | "TooManyAssets" | "InvalidOrigin" | "BadVersion" | "BadLocation" | "NoSubscription" | "AlreadySubscribed" | "CannotCheckOutTeleport" | "LowBalance" | "TooManyLocks" | "AccountNotSovereign" | "FeesNotMet" | "LockNotFound" | "InUse" | "InvalidAssetUnknownReserve" | "InvalidAssetUnsupportedReserve" | "TooManyReserves" | "LocalExecutionIncomplete";
|
|
4048
4678
|
}
|
|
4049
|
-
/** @name PalletMessageQueueBookState (
|
|
4679
|
+
/** @name PalletMessageQueueBookState (463) */
|
|
4050
4680
|
interface PalletMessageQueueBookState extends Struct {
|
|
4051
4681
|
readonly begin: u32;
|
|
4052
4682
|
readonly end: u32;
|
|
@@ -4055,12 +4685,12 @@ declare module "@polkadot/types/lookup" {
|
|
|
4055
4685
|
readonly messageCount: u64;
|
|
4056
4686
|
readonly size_: u64;
|
|
4057
4687
|
}
|
|
4058
|
-
/** @name PalletMessageQueueNeighbours (
|
|
4688
|
+
/** @name PalletMessageQueueNeighbours (465) */
|
|
4059
4689
|
interface PalletMessageQueueNeighbours extends Struct {
|
|
4060
4690
|
readonly prev: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
4061
4691
|
readonly next: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
4062
4692
|
}
|
|
4063
|
-
/** @name PalletMessageQueuePage (
|
|
4693
|
+
/** @name PalletMessageQueuePage (467) */
|
|
4064
4694
|
interface PalletMessageQueuePage extends Struct {
|
|
4065
4695
|
readonly remaining: u32;
|
|
4066
4696
|
readonly remainingSize: u32;
|
|
@@ -4069,7 +4699,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
4069
4699
|
readonly last: u32;
|
|
4070
4700
|
readonly heap: Bytes;
|
|
4071
4701
|
}
|
|
4072
|
-
/** @name PalletMessageQueueError (
|
|
4702
|
+
/** @name PalletMessageQueueError (469) */
|
|
4073
4703
|
interface PalletMessageQueueError extends Enum {
|
|
4074
4704
|
readonly isNotReapable: boolean;
|
|
4075
4705
|
readonly isNoPage: boolean;
|
|
@@ -4082,15 +4712,20 @@ declare module "@polkadot/types/lookup" {
|
|
|
4082
4712
|
readonly isRecursiveDisallowed: boolean;
|
|
4083
4713
|
readonly type: "NotReapable" | "NoPage" | "NoMessage" | "AlreadyProcessed" | "Queued" | "InsufficientWeight" | "TemporarilyUnprocessable" | "QueuePaused" | "RecursiveDisallowed";
|
|
4084
4714
|
}
|
|
4085
|
-
/** @name
|
|
4086
|
-
interface
|
|
4715
|
+
/** @name PalletStorageProvidersSignUpRequest (470) */
|
|
4716
|
+
interface PalletStorageProvidersSignUpRequest extends Struct {
|
|
4717
|
+
readonly spSignUpRequest: PalletStorageProvidersSignUpRequestSpParams;
|
|
4718
|
+
readonly at: u32;
|
|
4719
|
+
}
|
|
4720
|
+
/** @name PalletStorageProvidersSignUpRequestSpParams (471) */
|
|
4721
|
+
interface PalletStorageProvidersSignUpRequestSpParams extends Enum {
|
|
4087
4722
|
readonly isBackupStorageProvider: boolean;
|
|
4088
4723
|
readonly asBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
|
|
4089
4724
|
readonly isMainStorageProvider: boolean;
|
|
4090
|
-
readonly asMainStorageProvider:
|
|
4725
|
+
readonly asMainStorageProvider: PalletStorageProvidersMainStorageProviderSignUpRequest;
|
|
4091
4726
|
readonly type: "BackupStorageProvider" | "MainStorageProvider";
|
|
4092
4727
|
}
|
|
4093
|
-
/** @name PalletStorageProvidersBackupStorageProvider (
|
|
4728
|
+
/** @name PalletStorageProvidersBackupStorageProvider (472) */
|
|
4094
4729
|
interface PalletStorageProvidersBackupStorageProvider extends Struct {
|
|
4095
4730
|
readonly capacity: u64;
|
|
4096
4731
|
readonly capacityUsed: u64;
|
|
@@ -4100,28 +4735,36 @@ declare module "@polkadot/types/lookup" {
|
|
|
4100
4735
|
readonly ownerAccount: AccountId32;
|
|
4101
4736
|
readonly paymentAccount: AccountId32;
|
|
4102
4737
|
readonly reputationWeight: u32;
|
|
4738
|
+
readonly signUpBlock: u32;
|
|
4739
|
+
}
|
|
4740
|
+
/** @name PalletStorageProvidersMainStorageProviderSignUpRequest (473) */
|
|
4741
|
+
interface PalletStorageProvidersMainStorageProviderSignUpRequest extends Struct {
|
|
4742
|
+
readonly mspInfo: PalletStorageProvidersMainStorageProvider;
|
|
4743
|
+
readonly valueProp: PalletStorageProvidersValueProposition;
|
|
4103
4744
|
}
|
|
4104
|
-
/** @name PalletStorageProvidersMainStorageProvider (
|
|
4745
|
+
/** @name PalletStorageProvidersMainStorageProvider (474) */
|
|
4105
4746
|
interface PalletStorageProvidersMainStorageProvider extends Struct {
|
|
4106
|
-
readonly buckets: Vec<PalletStorageProvidersBucket>;
|
|
4107
4747
|
readonly capacity: u64;
|
|
4108
4748
|
readonly capacityUsed: u64;
|
|
4109
4749
|
readonly multiaddresses: Vec<Bytes>;
|
|
4110
|
-
readonly
|
|
4750
|
+
readonly amountOfBuckets: u128;
|
|
4751
|
+
readonly amountOfValueProps: u32;
|
|
4111
4752
|
readonly lastCapacityChange: u32;
|
|
4112
4753
|
readonly ownerAccount: AccountId32;
|
|
4113
4754
|
readonly paymentAccount: AccountId32;
|
|
4755
|
+
readonly signUpBlock: u32;
|
|
4114
4756
|
}
|
|
4115
|
-
/** @name PalletStorageProvidersBucket (
|
|
4757
|
+
/** @name PalletStorageProvidersBucket (475) */
|
|
4116
4758
|
interface PalletStorageProvidersBucket extends Struct {
|
|
4117
4759
|
readonly root: H256;
|
|
4118
4760
|
readonly userId: AccountId32;
|
|
4119
|
-
readonly mspId: H256
|
|
4761
|
+
readonly mspId: Option<H256>;
|
|
4120
4762
|
readonly private: bool;
|
|
4121
4763
|
readonly readAccessGroupId: Option<u32>;
|
|
4122
4764
|
readonly size_: u64;
|
|
4765
|
+
readonly valuePropId: H256;
|
|
4123
4766
|
}
|
|
4124
|
-
/** @name PalletStorageProvidersError (
|
|
4767
|
+
/** @name PalletStorageProvidersError (479) */
|
|
4125
4768
|
interface PalletStorageProvidersError extends Enum {
|
|
4126
4769
|
readonly isAlreadyRegistered: boolean;
|
|
4127
4770
|
readonly isSignUpNotRequested: boolean;
|
|
@@ -4132,6 +4775,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
4132
4775
|
readonly isNotEnoughBalance: boolean;
|
|
4133
4776
|
readonly isCannotHoldDeposit: boolean;
|
|
4134
4777
|
readonly isStorageStillInUse: boolean;
|
|
4778
|
+
readonly isSignOffPeriodNotPassed: boolean;
|
|
4135
4779
|
readonly isRandomnessNotValidYet: boolean;
|
|
4136
4780
|
readonly isSignUpRequestExpired: boolean;
|
|
4137
4781
|
readonly isNewCapacityLessThanUsedStorage: boolean;
|
|
@@ -4139,22 +4783,47 @@ declare module "@polkadot/types/lookup" {
|
|
|
4139
4783
|
readonly isNewCapacityCantBeZero: boolean;
|
|
4140
4784
|
readonly isNotEnoughTimePassed: boolean;
|
|
4141
4785
|
readonly isNewUsedCapacityExceedsStorageCapacity: boolean;
|
|
4786
|
+
readonly isDepositTooLow: boolean;
|
|
4142
4787
|
readonly isNotRegistered: boolean;
|
|
4143
4788
|
readonly isNoUserId: boolean;
|
|
4144
4789
|
readonly isNoBucketId: boolean;
|
|
4145
4790
|
readonly isSpRegisteredButDataNotFound: boolean;
|
|
4146
4791
|
readonly isBucketNotFound: boolean;
|
|
4147
4792
|
readonly isBucketAlreadyExists: boolean;
|
|
4793
|
+
readonly isBucketNotEmpty: boolean;
|
|
4794
|
+
readonly isBucketsMovedAmountMismatch: boolean;
|
|
4148
4795
|
readonly isAppendBucketToMspFailed: boolean;
|
|
4149
4796
|
readonly isProviderNotSlashable: boolean;
|
|
4797
|
+
readonly isTopUpNotRequired: boolean;
|
|
4798
|
+
readonly isBucketMustHaveMspForOperation: boolean;
|
|
4799
|
+
readonly isMultiAddressesMaxAmountReached: boolean;
|
|
4800
|
+
readonly isMultiAddressNotFound: boolean;
|
|
4801
|
+
readonly isMultiAddressAlreadyExists: boolean;
|
|
4802
|
+
readonly isLastMultiAddressCantBeRemoved: boolean;
|
|
4803
|
+
readonly isValuePropositionNotFound: boolean;
|
|
4804
|
+
readonly isValuePropositionAlreadyExists: boolean;
|
|
4805
|
+
readonly isValuePropositionNotAvailable: boolean;
|
|
4806
|
+
readonly isCantDeactivateLastValueProp: boolean;
|
|
4807
|
+
readonly isValuePropositionsDeletedAmountMismatch: boolean;
|
|
4808
|
+
readonly isFixedRatePaymentStreamNotFound: boolean;
|
|
4809
|
+
readonly isMspAlreadyAssignedToBucket: boolean;
|
|
4810
|
+
readonly isBucketSizeExceedsLimit: boolean;
|
|
4811
|
+
readonly isBucketHasNoValueProposition: boolean;
|
|
4812
|
+
readonly isMaxBlockNumberReached: boolean;
|
|
4813
|
+
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
4814
|
+
readonly isDeleteProviderConditionsNotMet: boolean;
|
|
4815
|
+
readonly isCannotStopCycleWithNonDefaultRoot: boolean;
|
|
4816
|
+
readonly isBspOnlyOperation: boolean;
|
|
4817
|
+
readonly isMspOnlyOperation: boolean;
|
|
4150
4818
|
readonly isInvalidEncodedFileMetadata: boolean;
|
|
4151
4819
|
readonly isInvalidEncodedAccountId: boolean;
|
|
4152
4820
|
readonly isPaymentStreamNotFound: boolean;
|
|
4153
|
-
readonly type: "AlreadyRegistered" | "SignUpNotRequested" | "SignUpRequestPending" | "NoMultiAddress" | "InvalidMultiAddress" | "StorageTooLow" | "NotEnoughBalance" | "CannotHoldDeposit" | "StorageStillInUse" | "RandomnessNotValidYet" | "SignUpRequestExpired" | "NewCapacityLessThanUsedStorage" | "NewCapacityEqualsCurrentCapacity" | "NewCapacityCantBeZero" | "NotEnoughTimePassed" | "NewUsedCapacityExceedsStorageCapacity" | "NotRegistered" | "NoUserId" | "NoBucketId" | "SpRegisteredButDataNotFound" | "BucketNotFound" | "BucketAlreadyExists" | "AppendBucketToMspFailed" | "ProviderNotSlashable" | "InvalidEncodedFileMetadata" | "InvalidEncodedAccountId" | "PaymentStreamNotFound";
|
|
4821
|
+
readonly type: "AlreadyRegistered" | "SignUpNotRequested" | "SignUpRequestPending" | "NoMultiAddress" | "InvalidMultiAddress" | "StorageTooLow" | "NotEnoughBalance" | "CannotHoldDeposit" | "StorageStillInUse" | "SignOffPeriodNotPassed" | "RandomnessNotValidYet" | "SignUpRequestExpired" | "NewCapacityLessThanUsedStorage" | "NewCapacityEqualsCurrentCapacity" | "NewCapacityCantBeZero" | "NotEnoughTimePassed" | "NewUsedCapacityExceedsStorageCapacity" | "DepositTooLow" | "NotRegistered" | "NoUserId" | "NoBucketId" | "SpRegisteredButDataNotFound" | "BucketNotFound" | "BucketAlreadyExists" | "BucketNotEmpty" | "BucketsMovedAmountMismatch" | "AppendBucketToMspFailed" | "ProviderNotSlashable" | "TopUpNotRequired" | "BucketMustHaveMspForOperation" | "MultiAddressesMaxAmountReached" | "MultiAddressNotFound" | "MultiAddressAlreadyExists" | "LastMultiAddressCantBeRemoved" | "ValuePropositionNotFound" | "ValuePropositionAlreadyExists" | "ValuePropositionNotAvailable" | "CantDeactivateLastValueProp" | "ValuePropositionsDeletedAmountMismatch" | "FixedRatePaymentStreamNotFound" | "MspAlreadyAssignedToBucket" | "BucketSizeExceedsLimit" | "BucketHasNoValueProposition" | "MaxBlockNumberReached" | "OperationNotAllowedForInsolventProvider" | "DeleteProviderConditionsNotMet" | "CannotStopCycleWithNonDefaultRoot" | "BspOnlyOperation" | "MspOnlyOperation" | "InvalidEncodedFileMetadata" | "InvalidEncodedAccountId" | "PaymentStreamNotFound";
|
|
4154
4822
|
}
|
|
4155
|
-
/** @name PalletFileSystemStorageRequestMetadata (
|
|
4823
|
+
/** @name PalletFileSystemStorageRequestMetadata (480) */
|
|
4156
4824
|
interface PalletFileSystemStorageRequestMetadata extends Struct {
|
|
4157
4825
|
readonly requestedAt: u32;
|
|
4826
|
+
readonly expiresAt: u32;
|
|
4158
4827
|
readonly owner: AccountId32;
|
|
4159
4828
|
readonly bucketId: H256;
|
|
4160
4829
|
readonly location: Bytes;
|
|
@@ -4162,27 +4831,55 @@ declare module "@polkadot/types/lookup" {
|
|
|
4162
4831
|
readonly size_: u64;
|
|
4163
4832
|
readonly msp: Option<ITuple<[H256, bool]>>;
|
|
4164
4833
|
readonly userPeerIds: Vec<Bytes>;
|
|
4165
|
-
readonly dataServerSps: Vec<H256>;
|
|
4166
4834
|
readonly bspsRequired: u32;
|
|
4167
4835
|
readonly bspsConfirmed: u32;
|
|
4168
4836
|
readonly bspsVolunteered: u32;
|
|
4837
|
+
readonly depositPaid: u128;
|
|
4169
4838
|
}
|
|
4170
|
-
/** @name PalletFileSystemStorageRequestBspsMetadata (
|
|
4839
|
+
/** @name PalletFileSystemStorageRequestBspsMetadata (483) */
|
|
4171
4840
|
interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
|
|
4172
4841
|
readonly confirmed: bool;
|
|
4173
4842
|
}
|
|
4174
|
-
/** @name
|
|
4843
|
+
/** @name PalletFileSystemPendingFileDeletionRequest (486) */
|
|
4844
|
+
interface PalletFileSystemPendingFileDeletionRequest extends Struct {
|
|
4845
|
+
readonly user: AccountId32;
|
|
4846
|
+
readonly fileKey: H256;
|
|
4847
|
+
readonly bucketId: H256;
|
|
4848
|
+
readonly fileSize: u64;
|
|
4849
|
+
readonly depositPaidForCreation: u128;
|
|
4850
|
+
readonly queuePriorityChallenge: bool;
|
|
4851
|
+
}
|
|
4852
|
+
/** @name PalletFileSystemPendingStopStoringRequest (488) */
|
|
4853
|
+
interface PalletFileSystemPendingStopStoringRequest extends Struct {
|
|
4854
|
+
readonly tickWhenRequested: u32;
|
|
4855
|
+
readonly fileOwner: AccountId32;
|
|
4856
|
+
readonly fileSize: u64;
|
|
4857
|
+
}
|
|
4858
|
+
/** @name PalletFileSystemMoveBucketRequestMetadata (489) */
|
|
4175
4859
|
interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
|
|
4176
4860
|
readonly requester: AccountId32;
|
|
4861
|
+
readonly newMspId: H256;
|
|
4862
|
+
readonly newValuePropId: H256;
|
|
4863
|
+
}
|
|
4864
|
+
/** @name PalletFileSystemIncompleteStorageRequestMetadata (490) */
|
|
4865
|
+
interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
|
|
4866
|
+
readonly owner: AccountId32;
|
|
4867
|
+
readonly bucketId: H256;
|
|
4868
|
+
readonly location: Bytes;
|
|
4869
|
+
readonly fileSize: u64;
|
|
4870
|
+
readonly fingerprint: H256;
|
|
4871
|
+
readonly pendingBspRemovals: Vec<H256>;
|
|
4872
|
+
readonly pendingBucketRemoval: bool;
|
|
4177
4873
|
}
|
|
4178
|
-
/** @name PalletFileSystemError (
|
|
4874
|
+
/** @name PalletFileSystemError (492) */
|
|
4179
4875
|
interface PalletFileSystemError extends Enum {
|
|
4180
4876
|
readonly isStorageRequestAlreadyRegistered: boolean;
|
|
4181
4877
|
readonly isStorageRequestNotFound: boolean;
|
|
4182
4878
|
readonly isStorageRequestNotRevoked: boolean;
|
|
4183
4879
|
readonly isStorageRequestExists: boolean;
|
|
4184
4880
|
readonly isReplicationTargetCannotBeZero: boolean;
|
|
4185
|
-
readonly
|
|
4881
|
+
readonly isReplicationTargetExceedsMaximum: boolean;
|
|
4882
|
+
readonly isMaxReplicationTargetSmallerThanDefault: boolean;
|
|
4186
4883
|
readonly isNotABsp: boolean;
|
|
4187
4884
|
readonly isNotAMsp: boolean;
|
|
4188
4885
|
readonly isNotASp: boolean;
|
|
@@ -4193,9 +4890,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
4193
4890
|
readonly isBspAlreadyVolunteered: boolean;
|
|
4194
4891
|
readonly isInsufficientAvailableCapacity: boolean;
|
|
4195
4892
|
readonly isUnexpectedNumberOfRemovedVolunteeredBsps: boolean;
|
|
4893
|
+
readonly isBspNotEligibleToVolunteer: boolean;
|
|
4196
4894
|
readonly isStorageRequestExpiredNoSlotAvailable: boolean;
|
|
4197
4895
|
readonly isStorageRequestNotAuthorized: boolean;
|
|
4198
|
-
readonly
|
|
4896
|
+
readonly isMaxTickNumberReached: boolean;
|
|
4199
4897
|
readonly isFailedToEncodeBsp: boolean;
|
|
4200
4898
|
readonly isFailedToEncodeFingerprint: boolean;
|
|
4201
4899
|
readonly isFailedToDecodeThreshold: boolean;
|
|
@@ -4206,7 +4904,10 @@ declare module "@polkadot/types/lookup" {
|
|
|
4206
4904
|
readonly isImpossibleFailedToGetValue: boolean;
|
|
4207
4905
|
readonly isBucketIsNotPrivate: boolean;
|
|
4208
4906
|
readonly isBucketNotFound: boolean;
|
|
4907
|
+
readonly isBucketNotEmpty: boolean;
|
|
4209
4908
|
readonly isNotBucketOwner: boolean;
|
|
4909
|
+
readonly isValuePropositionNotAvailable: boolean;
|
|
4910
|
+
readonly isCollectionNotFound: boolean;
|
|
4210
4911
|
readonly isProviderRootNotFound: boolean;
|
|
4211
4912
|
readonly isExpectedNonInclusionProof: boolean;
|
|
4212
4913
|
readonly isExpectedInclusionProof: boolean;
|
|
@@ -4219,11 +4920,13 @@ declare module "@polkadot/types/lookup" {
|
|
|
4219
4920
|
readonly isFileKeyNotPendingDeletion: boolean;
|
|
4220
4921
|
readonly isFileSizeCannotBeZero: boolean;
|
|
4221
4922
|
readonly isNoGlobalReputationWeightSet: boolean;
|
|
4923
|
+
readonly isNoBspReputationWeightSet: boolean;
|
|
4222
4924
|
readonly isMaximumThresholdCannotBeZero: boolean;
|
|
4223
4925
|
readonly isTickRangeToMaximumThresholdCannotBeZero: boolean;
|
|
4224
4926
|
readonly isPendingStopStoringRequestNotFound: boolean;
|
|
4225
4927
|
readonly isMinWaitForStopStoringNotReached: boolean;
|
|
4226
4928
|
readonly isPendingStopStoringRequestAlreadyExists: boolean;
|
|
4929
|
+
readonly isOperationNotAllowedWithInsolventUser: boolean;
|
|
4227
4930
|
readonly isUserNotInsolvent: boolean;
|
|
4228
4931
|
readonly isNotSelectedMsp: boolean;
|
|
4229
4932
|
readonly isMspAlreadyConfirmed: boolean;
|
|
@@ -4238,9 +4941,34 @@ declare module "@polkadot/types/lookup" {
|
|
|
4238
4941
|
readonly isTooManyStorageRequestResponses: boolean;
|
|
4239
4942
|
readonly isInvalidBucketIdFileKeyPair: boolean;
|
|
4240
4943
|
readonly isInconsistentStateKeyAlreadyExists: boolean;
|
|
4241
|
-
readonly
|
|
4242
|
-
|
|
4243
|
-
|
|
4944
|
+
readonly isFixedRatePaymentStreamNotFound: boolean;
|
|
4945
|
+
readonly isDynamicRatePaymentStreamNotFound: boolean;
|
|
4946
|
+
readonly isCannotHoldDeposit: boolean;
|
|
4947
|
+
readonly isFailedToQueryEarliestFileVolunteerTick: boolean;
|
|
4948
|
+
readonly isFailedToGetOwnerAccount: boolean;
|
|
4949
|
+
readonly isFailedToGetPaymentAccount: boolean;
|
|
4950
|
+
readonly isNoFileKeysToConfirm: boolean;
|
|
4951
|
+
readonly isRootNotUpdated: boolean;
|
|
4952
|
+
readonly isNoPrivacyChange: boolean;
|
|
4953
|
+
readonly isOperationNotAllowedForInsolventProvider: boolean;
|
|
4954
|
+
readonly isOperationNotAllowedWhileBucketIsNotStoredByMsp: boolean;
|
|
4955
|
+
readonly isFailedToComputeFileKey: boolean;
|
|
4956
|
+
readonly isFailedToCreateFileMetadata: boolean;
|
|
4957
|
+
readonly isInvalidSignature: boolean;
|
|
4958
|
+
readonly isForestProofVerificationFailed: boolean;
|
|
4959
|
+
readonly isProviderNotStoringFile: boolean;
|
|
4960
|
+
readonly isInvalidProviderID: boolean;
|
|
4961
|
+
readonly isInvalidSignedOperation: boolean;
|
|
4962
|
+
readonly isFileKeyMismatch: boolean;
|
|
4963
|
+
readonly isIncompleteStorageRequestNotFound: boolean;
|
|
4964
|
+
readonly type: "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestNotRevoked" | "StorageRequestExists" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "MaxReplicationTargetSmallerThanDefault" | "NotABsp" | "NotAMsp" | "NotASp" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "StorageRequestBspsRequiredFulfilled" | "BspAlreadyVolunteered" | "InsufficientAvailableCapacity" | "UnexpectedNumberOfRemovedVolunteeredBsps" | "BspNotEligibleToVolunteer" | "StorageRequestExpiredNoSlotAvailable" | "StorageRequestNotAuthorized" | "MaxTickNumberReached" | "FailedToEncodeBsp" | "FailedToEncodeFingerprint" | "FailedToDecodeThreshold" | "AboveThreshold" | "ThresholdArithmeticError" | "FailedTypeConversion" | "DividedByZero" | "ImpossibleFailedToGetValue" | "BucketIsNotPrivate" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "ProviderRootNotFound" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "InvalidFileKeyMetadata" | "ThresholdBelowAsymptote" | "NotFileOwner" | "FileKeyAlreadyPendingDeletion" | "MaxUserPendingDeletionRequestsReached" | "MspNotStoringBucket" | "FileKeyNotPendingDeletion" | "FileSizeCannotBeZero" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "MaximumThresholdCannotBeZero" | "TickRangeToMaximumThresholdCannotBeZero" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "MoveBucketRequestNotFound" | "BucketIsBeingMoved" | "BspAlreadyDataServer" | "BspDataServersExceeded" | "FileMetadataProcessingQueueFull" | "TooManyBatchResponses" | "TooManyStorageRequestResponses" | "InvalidBucketIdFileKeyPair" | "InconsistentStateKeyAlreadyExists" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "CannotHoldDeposit" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "NoFileKeysToConfirm" | "RootNotUpdated" | "NoPrivacyChange" | "OperationNotAllowedForInsolventProvider" | "OperationNotAllowedWhileBucketIsNotStoredByMsp" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "InvalidSignature" | "ForestProofVerificationFailed" | "ProviderNotStoringFile" | "InvalidProviderID" | "InvalidSignedOperation" | "FileKeyMismatch" | "IncompleteStorageRequestNotFound";
|
|
4965
|
+
}
|
|
4966
|
+
/** @name PalletProofsDealerProofSubmissionRecord (494) */
|
|
4967
|
+
interface PalletProofsDealerProofSubmissionRecord extends Struct {
|
|
4968
|
+
readonly lastTickProven: u32;
|
|
4969
|
+
readonly nextTickToSubmitProofFor: u32;
|
|
4970
|
+
}
|
|
4971
|
+
/** @name PalletProofsDealerError (501) */
|
|
4244
4972
|
interface PalletProofsDealerError extends Enum {
|
|
4245
4973
|
readonly isNotProvider: boolean;
|
|
4246
4974
|
readonly isChallengesQueueOverflow: boolean;
|
|
@@ -4259,33 +4987,35 @@ declare module "@polkadot/types/lookup" {
|
|
|
4259
4987
|
readonly isSeedNotFound: boolean;
|
|
4260
4988
|
readonly isCheckpointChallengesNotFound: boolean;
|
|
4261
4989
|
readonly isForestProofVerificationFailed: boolean;
|
|
4990
|
+
readonly isIncorrectNumberOfKeyProofs: boolean;
|
|
4262
4991
|
readonly isKeyProofNotFound: boolean;
|
|
4263
4992
|
readonly isKeyProofVerificationFailed: boolean;
|
|
4264
4993
|
readonly isFailedToApplyDelta: boolean;
|
|
4994
|
+
readonly isUnexpectedNumberOfRemoveMutations: boolean;
|
|
4265
4995
|
readonly isFailedToUpdateProviderAfterKeyRemoval: boolean;
|
|
4266
4996
|
readonly isTooManyValidProofSubmitters: boolean;
|
|
4267
|
-
readonly type: "NotProvider" | "ChallengesQueueOverflow" | "PriorityChallengesQueueOverflow" | "FeeChargeFailed" | "EmptyKeyProofs" | "ProviderRootNotFound" | "ZeroRoot" | "NoRecordOfLastSubmittedProof" | "ProviderStakeNotFound" | "ZeroStake" | "StakeCouldNotBeConverted" | "ChallengesTickNotReached" | "ChallengesTickTooOld" | "ChallengesTickTooLate" | "SeedNotFound" | "CheckpointChallengesNotFound" | "ForestProofVerificationFailed" | "KeyProofNotFound" | "KeyProofVerificationFailed" | "FailedToApplyDelta" | "FailedToUpdateProviderAfterKeyRemoval" | "TooManyValidProofSubmitters";
|
|
4997
|
+
readonly type: "NotProvider" | "ChallengesQueueOverflow" | "PriorityChallengesQueueOverflow" | "FeeChargeFailed" | "EmptyKeyProofs" | "ProviderRootNotFound" | "ZeroRoot" | "NoRecordOfLastSubmittedProof" | "ProviderStakeNotFound" | "ZeroStake" | "StakeCouldNotBeConverted" | "ChallengesTickNotReached" | "ChallengesTickTooOld" | "ChallengesTickTooLate" | "SeedNotFound" | "CheckpointChallengesNotFound" | "ForestProofVerificationFailed" | "IncorrectNumberOfKeyProofs" | "KeyProofNotFound" | "KeyProofVerificationFailed" | "FailedToApplyDelta" | "UnexpectedNumberOfRemoveMutations" | "FailedToUpdateProviderAfterKeyRemoval" | "TooManyValidProofSubmitters";
|
|
4268
4998
|
}
|
|
4269
|
-
/** @name PalletPaymentStreamsFixedRatePaymentStream (
|
|
4999
|
+
/** @name PalletPaymentStreamsFixedRatePaymentStream (504) */
|
|
4270
5000
|
interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
|
|
4271
5001
|
readonly rate: u128;
|
|
4272
5002
|
readonly lastChargedTick: u32;
|
|
4273
5003
|
readonly userDeposit: u128;
|
|
4274
5004
|
readonly outOfFundsTick: Option<u32>;
|
|
4275
5005
|
}
|
|
4276
|
-
/** @name PalletPaymentStreamsDynamicRatePaymentStream (
|
|
5006
|
+
/** @name PalletPaymentStreamsDynamicRatePaymentStream (505) */
|
|
4277
5007
|
interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
|
|
4278
5008
|
readonly amountProvided: u64;
|
|
4279
5009
|
readonly priceIndexWhenLastCharged: u128;
|
|
4280
5010
|
readonly userDeposit: u128;
|
|
4281
5011
|
readonly outOfFundsTick: Option<u32>;
|
|
4282
5012
|
}
|
|
4283
|
-
/** @name PalletPaymentStreamsProviderLastChargeableInfo (
|
|
5013
|
+
/** @name PalletPaymentStreamsProviderLastChargeableInfo (506) */
|
|
4284
5014
|
interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
|
|
4285
5015
|
readonly lastChargeableTick: u32;
|
|
4286
5016
|
readonly priceIndex: u128;
|
|
4287
5017
|
}
|
|
4288
|
-
/** @name PalletPaymentStreamsError (
|
|
5018
|
+
/** @name PalletPaymentStreamsError (507) */
|
|
4289
5019
|
interface PalletPaymentStreamsError extends Enum {
|
|
4290
5020
|
readonly isPaymentStreamAlreadyExists: boolean;
|
|
4291
5021
|
readonly isPaymentStreamNotFound: boolean;
|
|
@@ -4303,9 +5033,11 @@ declare module "@polkadot/types/lookup" {
|
|
|
4303
5033
|
readonly isUserWithoutFunds: boolean;
|
|
4304
5034
|
readonly isUserNotFlaggedAsWithoutFunds: boolean;
|
|
4305
5035
|
readonly isCooldownPeriodNotPassed: boolean;
|
|
4306
|
-
readonly
|
|
5036
|
+
readonly isUserHasRemainingDebt: boolean;
|
|
5037
|
+
readonly isProviderInsolvent: boolean;
|
|
5038
|
+
readonly type: "PaymentStreamAlreadyExists" | "PaymentStreamNotFound" | "NotAProvider" | "ProviderInconsistencyError" | "CannotHoldDeposit" | "UpdateRateToSameRate" | "UpdateAmountToSameAmount" | "RateCantBeZero" | "AmountProvidedCantBeZero" | "LastChargedGreaterThanLastChargeable" | "InvalidLastChargeableBlockNumber" | "InvalidLastChargeablePriceIndex" | "ChargeOverflow" | "UserWithoutFunds" | "UserNotFlaggedAsWithoutFunds" | "CooldownPeriodNotPassed" | "UserHasRemainingDebt" | "ProviderInsolvent";
|
|
4307
5039
|
}
|
|
4308
|
-
/** @name PalletBucketNftsError (
|
|
5040
|
+
/** @name PalletBucketNftsError (508) */
|
|
4309
5041
|
interface PalletBucketNftsError extends Enum {
|
|
4310
5042
|
readonly isBucketIsNotPrivate: boolean;
|
|
4311
5043
|
readonly isNotBucketOwner: boolean;
|
|
@@ -4313,7 +5045,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
4313
5045
|
readonly isConvertBytesToBoundedVec: boolean;
|
|
4314
5046
|
readonly type: "BucketIsNotPrivate" | "NotBucketOwner" | "NoCorrespondingCollection" | "ConvertBytesToBoundedVec";
|
|
4315
5047
|
}
|
|
4316
|
-
/** @name PalletNftsCollectionDetails (
|
|
5048
|
+
/** @name PalletNftsCollectionDetails (509) */
|
|
4317
5049
|
interface PalletNftsCollectionDetails extends Struct {
|
|
4318
5050
|
readonly owner: AccountId32;
|
|
4319
5051
|
readonly ownerDeposit: u128;
|
|
@@ -4322,52 +5054,52 @@ declare module "@polkadot/types/lookup" {
|
|
|
4322
5054
|
readonly itemConfigs: u32;
|
|
4323
5055
|
readonly attributes: u32;
|
|
4324
5056
|
}
|
|
4325
|
-
/** @name PalletNftsCollectionRole (
|
|
5057
|
+
/** @name PalletNftsCollectionRole (514) */
|
|
4326
5058
|
interface PalletNftsCollectionRole extends Enum {
|
|
4327
5059
|
readonly isIssuer: boolean;
|
|
4328
5060
|
readonly isFreezer: boolean;
|
|
4329
5061
|
readonly isAdmin: boolean;
|
|
4330
5062
|
readonly type: "Issuer" | "Freezer" | "Admin";
|
|
4331
5063
|
}
|
|
4332
|
-
/** @name PalletNftsItemDetails (
|
|
5064
|
+
/** @name PalletNftsItemDetails (515) */
|
|
4333
5065
|
interface PalletNftsItemDetails extends Struct {
|
|
4334
5066
|
readonly owner: AccountId32;
|
|
4335
5067
|
readonly approvals: BTreeMap<AccountId32, Option<u32>>;
|
|
4336
5068
|
readonly deposit: PalletNftsItemDeposit;
|
|
4337
5069
|
}
|
|
4338
|
-
/** @name PalletNftsItemDeposit (
|
|
5070
|
+
/** @name PalletNftsItemDeposit (516) */
|
|
4339
5071
|
interface PalletNftsItemDeposit extends Struct {
|
|
4340
5072
|
readonly account: AccountId32;
|
|
4341
5073
|
readonly amount: u128;
|
|
4342
5074
|
}
|
|
4343
|
-
/** @name PalletNftsCollectionMetadata (
|
|
5075
|
+
/** @name PalletNftsCollectionMetadata (521) */
|
|
4344
5076
|
interface PalletNftsCollectionMetadata extends Struct {
|
|
4345
5077
|
readonly deposit: u128;
|
|
4346
5078
|
readonly data: Bytes;
|
|
4347
5079
|
}
|
|
4348
|
-
/** @name PalletNftsItemMetadata (
|
|
5080
|
+
/** @name PalletNftsItemMetadata (522) */
|
|
4349
5081
|
interface PalletNftsItemMetadata extends Struct {
|
|
4350
5082
|
readonly deposit: PalletNftsItemMetadataDeposit;
|
|
4351
5083
|
readonly data: Bytes;
|
|
4352
5084
|
}
|
|
4353
|
-
/** @name PalletNftsItemMetadataDeposit (
|
|
5085
|
+
/** @name PalletNftsItemMetadataDeposit (523) */
|
|
4354
5086
|
interface PalletNftsItemMetadataDeposit extends Struct {
|
|
4355
5087
|
readonly account: Option<AccountId32>;
|
|
4356
5088
|
readonly amount: u128;
|
|
4357
5089
|
}
|
|
4358
|
-
/** @name PalletNftsAttributeDeposit (
|
|
5090
|
+
/** @name PalletNftsAttributeDeposit (526) */
|
|
4359
5091
|
interface PalletNftsAttributeDeposit extends Struct {
|
|
4360
5092
|
readonly account: Option<AccountId32>;
|
|
4361
5093
|
readonly amount: u128;
|
|
4362
5094
|
}
|
|
4363
|
-
/** @name PalletNftsPendingSwap (
|
|
5095
|
+
/** @name PalletNftsPendingSwap (530) */
|
|
4364
5096
|
interface PalletNftsPendingSwap extends Struct {
|
|
4365
5097
|
readonly desiredCollection: u32;
|
|
4366
5098
|
readonly desiredItem: Option<u32>;
|
|
4367
5099
|
readonly price: Option<PalletNftsPriceWithDirection>;
|
|
4368
5100
|
readonly deadline: u32;
|
|
4369
5101
|
}
|
|
4370
|
-
/** @name PalletNftsPalletFeature (
|
|
5102
|
+
/** @name PalletNftsPalletFeature (532) */
|
|
4371
5103
|
interface PalletNftsPalletFeature extends Enum {
|
|
4372
5104
|
readonly isTrading: boolean;
|
|
4373
5105
|
readonly isAttributes: boolean;
|
|
@@ -4375,7 +5107,7 @@ declare module "@polkadot/types/lookup" {
|
|
|
4375
5107
|
readonly isSwaps: boolean;
|
|
4376
5108
|
readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
|
|
4377
5109
|
}
|
|
4378
|
-
/** @name PalletNftsError (
|
|
5110
|
+
/** @name PalletNftsError (533) */
|
|
4379
5111
|
interface PalletNftsError extends Enum {
|
|
4380
5112
|
readonly isNoPermission: boolean;
|
|
4381
5113
|
readonly isUnknownCollection: boolean;
|
|
@@ -4424,34 +5156,34 @@ declare module "@polkadot/types/lookup" {
|
|
|
4424
5156
|
readonly isWitnessRequired: boolean;
|
|
4425
5157
|
readonly type: "NoPermission" | "UnknownCollection" | "AlreadyExists" | "ApprovalExpired" | "WrongOwner" | "BadWitness" | "CollectionIdInUse" | "ItemsNonTransferable" | "NotDelegate" | "WrongDelegate" | "Unapproved" | "Unaccepted" | "ItemLocked" | "LockedItemAttributes" | "LockedCollectionAttributes" | "LockedItemMetadata" | "LockedCollectionMetadata" | "MaxSupplyReached" | "MaxSupplyLocked" | "MaxSupplyTooSmall" | "UnknownItem" | "UnknownSwap" | "MetadataNotFound" | "AttributeNotFound" | "NotForSale" | "BidTooLow" | "ReachedApprovalLimit" | "DeadlineExpired" | "WrongDuration" | "MethodDisabled" | "WrongSetting" | "InconsistentItemConfig" | "NoConfig" | "RolesNotCleared" | "MintNotStarted" | "MintEnded" | "AlreadyClaimed" | "IncorrectData" | "WrongOrigin" | "WrongSignature" | "IncorrectMetadata" | "MaxAttributesLimitReached" | "WrongNamespace" | "CollectionNotEmpty" | "WitnessRequired";
|
|
4426
5158
|
}
|
|
4427
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5159
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (536) */
|
|
4428
5160
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4429
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5161
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (537) */
|
|
4430
5162
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4431
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5163
|
+
/** @name FrameSystemExtensionsCheckTxVersion (538) */
|
|
4432
5164
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4433
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5165
|
+
/** @name FrameSystemExtensionsCheckGenesis (539) */
|
|
4434
5166
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4435
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5167
|
+
/** @name FrameSystemExtensionsCheckNonce (542) */
|
|
4436
5168
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
4437
5169
|
}
|
|
4438
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5170
|
+
/** @name FrameSystemExtensionsCheckWeight (543) */
|
|
4439
5171
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4440
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5172
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (544) */
|
|
4441
5173
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
4442
5174
|
}
|
|
4443
|
-
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (
|
|
5175
|
+
/** @name CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim (545) */
|
|
4444
5176
|
type CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim = Null;
|
|
4445
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5177
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (546) */
|
|
4446
5178
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4447
5179
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4448
5180
|
}
|
|
4449
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5181
|
+
/** @name FrameMetadataHashExtensionMode (547) */
|
|
4450
5182
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4451
5183
|
readonly isDisabled: boolean;
|
|
4452
5184
|
readonly isEnabled: boolean;
|
|
4453
5185
|
readonly type: "Disabled" | "Enabled";
|
|
4454
5186
|
}
|
|
4455
|
-
/** @name
|
|
4456
|
-
type
|
|
5187
|
+
/** @name ShParachainRuntimeRuntime (548) */
|
|
5188
|
+
type ShParachainRuntimeRuntime = Null;
|
|
4457
5189
|
}
|