@argonprotocol/mainchain 1.4.10 → 1.4.11-dev.1acff0b2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/index.d.ts +4281 -381
- package/browser/index.js +149 -50
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +160 -61
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4281 -381
- package/lib/index.d.ts +4281 -381
- package/lib/index.js +149 -50
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
- package/src/interfaces/augment-api-consts.ts +17 -18
- package/src/interfaces/augment-api-errors.ts +73 -23
- package/src/interfaces/augment-api-events.ts +56 -8
- package/src/interfaces/augment-api-query.ts +99 -17
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +89 -41
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +390 -262
- package/src/interfaces/registry.ts +21 -2
- package/src/interfaces/types-lookup.ts +433 -286
|
@@ -602,6 +602,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
602
602
|
readonly asVaultBitcoinXpubChange: {
|
|
603
603
|
readonly vaultId: u32;
|
|
604
604
|
} & Struct;
|
|
605
|
+
readonly isReservedSecuritizationSpaceChanged: boolean;
|
|
606
|
+
readonly asReservedSecuritizationSpaceChanged: {
|
|
607
|
+
readonly vaultId: u32;
|
|
608
|
+
readonly reservedSecuritizationSpace: u128;
|
|
609
|
+
} & Struct;
|
|
605
610
|
readonly isVaultRevenueUncollected: boolean;
|
|
606
611
|
readonly asVaultRevenueUncollected: {
|
|
607
612
|
readonly vaultId: u32;
|
|
@@ -670,6 +675,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
670
675
|
| 'VaultTermsChanged'
|
|
671
676
|
| 'VaultClosed'
|
|
672
677
|
| 'VaultBitcoinXpubChange'
|
|
678
|
+
| 'ReservedSecuritizationSpaceChanged'
|
|
673
679
|
| 'VaultRevenueUncollected'
|
|
674
680
|
| 'VaultCollected'
|
|
675
681
|
| 'FundsLocked'
|
|
@@ -780,6 +786,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
780
786
|
readonly newSatoshis: u64;
|
|
781
787
|
readonly accountId: AccountId32;
|
|
782
788
|
} & Struct;
|
|
789
|
+
readonly isBitcoinLockFlexibleChanged: boolean;
|
|
790
|
+
readonly asBitcoinLockFlexibleChanged: {
|
|
791
|
+
readonly utxoId: u64;
|
|
792
|
+
readonly vaultId: u32;
|
|
793
|
+
readonly isFlexible: bool;
|
|
794
|
+
} & Struct;
|
|
783
795
|
readonly type:
|
|
784
796
|
| 'BitcoinLockCreated'
|
|
785
797
|
| 'BitcoinLockRatcheted'
|
|
@@ -794,7 +806,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
794
806
|
| 'OrphanedUtxoReleaseRequested'
|
|
795
807
|
| 'OrphanedUtxoCosigned'
|
|
796
808
|
| 'UtxoFundedFromCandidate'
|
|
797
|
-
| 'SecuritizationIncreased'
|
|
809
|
+
| 'SecuritizationIncreased'
|
|
810
|
+
| 'BitcoinLockFlexibleChanged';
|
|
798
811
|
}
|
|
799
812
|
|
|
800
813
|
/** @name PalletNotariesEvent (60) */
|
|
@@ -1720,6 +1733,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1720
1733
|
readonly accountId: AccountId32;
|
|
1721
1734
|
readonly bonds: u32;
|
|
1722
1735
|
} & Struct;
|
|
1736
|
+
readonly isBondLotFlexibilityChanged: boolean;
|
|
1737
|
+
readonly asBondLotFlexibilityChanged: {
|
|
1738
|
+
readonly vaultId: u32;
|
|
1739
|
+
readonly bondLotId: u64;
|
|
1740
|
+
readonly isFlexible: bool;
|
|
1741
|
+
} & Struct;
|
|
1742
|
+
readonly isReservedBondSpaceChanged: boolean;
|
|
1743
|
+
readonly asReservedBondSpaceChanged: {
|
|
1744
|
+
readonly vaultId: u32;
|
|
1745
|
+
readonly reservedBondSpace: u32;
|
|
1746
|
+
} & Struct;
|
|
1723
1747
|
readonly isEncumberedBondMicrogonsBurned: boolean;
|
|
1724
1748
|
readonly asEncumberedBondMicrogonsBurned: {
|
|
1725
1749
|
readonly accountId: AccountId32;
|
|
@@ -1736,6 +1760,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
1736
1760
|
| 'BondLotPurchased'
|
|
1737
1761
|
| 'BondLotReleaseScheduled'
|
|
1738
1762
|
| 'BondLotReleased'
|
|
1763
|
+
| 'BondLotFlexibilityChanged'
|
|
1764
|
+
| 'ReservedBondSpaceChanged'
|
|
1739
1765
|
| 'EncumberedBondMicrogonsBurned';
|
|
1740
1766
|
}
|
|
1741
1767
|
|
|
@@ -1836,11 +1862,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
1836
1862
|
readonly operatorVaultBitcoinAmount: u128;
|
|
1837
1863
|
readonly miningSeatCount: u32;
|
|
1838
1864
|
} & Struct;
|
|
1839
|
-
readonly isEncryptedServerUpdated: boolean;
|
|
1840
|
-
readonly asEncryptedServerUpdated: {
|
|
1841
|
-
readonly upstreamAccount: AccountId32;
|
|
1842
|
-
readonly downstreamAccount: AccountId32;
|
|
1843
|
-
} & Struct;
|
|
1844
1865
|
readonly type:
|
|
1845
1866
|
| 'OperationalAccountRegistered'
|
|
1846
1867
|
| 'AccountMeetsMinimums'
|
|
@@ -1848,8 +1869,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1848
1869
|
| 'OperationalRewardEarned'
|
|
1849
1870
|
| 'OperationalRewardsClaimed'
|
|
1850
1871
|
| 'RewardsConfigUpdated'
|
|
1851
|
-
| 'OperationalProgressForced'
|
|
1852
|
-
| 'EncryptedServerUpdated';
|
|
1872
|
+
| 'OperationalProgressForced';
|
|
1853
1873
|
}
|
|
1854
1874
|
|
|
1855
1875
|
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
@@ -1913,6 +1933,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1913
1933
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1914
1934
|
readonly councilHash: H256;
|
|
1915
1935
|
} & Struct;
|
|
1936
|
+
readonly isGlobalIssuanceCouncilRotationQueued: boolean;
|
|
1937
|
+
readonly asGlobalIssuanceCouncilRotationQueued: {
|
|
1938
|
+
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1939
|
+
readonly councilHash: H256;
|
|
1940
|
+
readonly approvalQueueNonce: u64;
|
|
1941
|
+
} & Struct;
|
|
1916
1942
|
readonly isCouncilSignerRegistered: boolean;
|
|
1917
1943
|
readonly asCouncilSignerRegistered: {
|
|
1918
1944
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -2028,6 +2054,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2028
2054
|
readonly type:
|
|
2029
2055
|
| 'TransferToArgonSettled'
|
|
2030
2056
|
| 'GlobalIssuanceCouncilForced'
|
|
2057
|
+
| 'GlobalIssuanceCouncilRotationQueued'
|
|
2031
2058
|
| 'CouncilSignerRegistered'
|
|
2032
2059
|
| 'CouncilSignerRotationQueued'
|
|
2033
2060
|
| 'MintingAuthorityRegistered'
|
|
@@ -2126,7 +2153,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
2126
2153
|
readonly argonotCirculation: u128;
|
|
2127
2154
|
}
|
|
2128
2155
|
|
|
2129
|
-
/** @name
|
|
2156
|
+
/** @name PalletBootstrapEvent (139) */
|
|
2157
|
+
interface PalletBootstrapEvent extends Enum {
|
|
2158
|
+
readonly isRecoveryPayloadUpdated: boolean;
|
|
2159
|
+
readonly asRecoveryPayloadUpdated: {
|
|
2160
|
+
readonly writer: AccountId32;
|
|
2161
|
+
readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
2162
|
+
} & Struct;
|
|
2163
|
+
readonly isEndpointUpdated: boolean;
|
|
2164
|
+
readonly asEndpointUpdated: {
|
|
2165
|
+
readonly endpointOwner: AccountId32;
|
|
2166
|
+
readonly endpointPubkey: PalletBootstrapEndpointPubkey;
|
|
2167
|
+
} & Struct;
|
|
2168
|
+
readonly type: 'RecoveryPayloadUpdated' | 'EndpointUpdated';
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
/** @name PalletBootstrapRecoveryPubkey (140) */
|
|
2172
|
+
interface PalletBootstrapRecoveryPubkey extends U8aFixed {}
|
|
2173
|
+
|
|
2174
|
+
/** @name PalletBootstrapEndpointPubkey (141) */
|
|
2175
|
+
interface PalletBootstrapEndpointPubkey extends U8aFixed {}
|
|
2176
|
+
|
|
2177
|
+
/** @name FrameSystemPhase (142) */
|
|
2130
2178
|
interface FrameSystemPhase extends Enum {
|
|
2131
2179
|
readonly isApplyExtrinsic: boolean;
|
|
2132
2180
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2135,19 +2183,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2135
2183
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2136
2184
|
}
|
|
2137
2185
|
|
|
2138
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2186
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (146) */
|
|
2139
2187
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2140
2188
|
readonly specVersion: Compact<u32>;
|
|
2141
2189
|
readonly specName: Text;
|
|
2142
2190
|
}
|
|
2143
2191
|
|
|
2144
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2192
|
+
/** @name FrameSystemCodeUpgradeAuthorization (149) */
|
|
2145
2193
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2146
2194
|
readonly codeHash: H256;
|
|
2147
2195
|
readonly checkVersion: bool;
|
|
2148
2196
|
}
|
|
2149
2197
|
|
|
2150
|
-
/** @name FrameSystemCall (
|
|
2198
|
+
/** @name FrameSystemCall (150) */
|
|
2151
2199
|
interface FrameSystemCall extends Enum {
|
|
2152
2200
|
readonly isRemark: boolean;
|
|
2153
2201
|
readonly asRemark: {
|
|
@@ -2208,21 +2256,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2208
2256
|
| 'ApplyAuthorizedUpgrade';
|
|
2209
2257
|
}
|
|
2210
2258
|
|
|
2211
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2259
|
+
/** @name FrameSystemLimitsBlockWeights (154) */
|
|
2212
2260
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2213
2261
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2214
2262
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2215
2263
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2216
2264
|
}
|
|
2217
2265
|
|
|
2218
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2266
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (155) */
|
|
2219
2267
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2220
2268
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2221
2269
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2222
2270
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2223
2271
|
}
|
|
2224
2272
|
|
|
2225
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2273
|
+
/** @name FrameSystemLimitsWeightsPerClass (156) */
|
|
2226
2274
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2227
2275
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2228
2276
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2230,26 +2278,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2230
2278
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2231
2279
|
}
|
|
2232
2280
|
|
|
2233
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2281
|
+
/** @name FrameSystemLimitsBlockLength (158) */
|
|
2234
2282
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2235
2283
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2236
2284
|
readonly maxHeaderSize: Option<u32>;
|
|
2237
2285
|
}
|
|
2238
2286
|
|
|
2239
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2287
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (159) */
|
|
2240
2288
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2241
2289
|
readonly normal: u32;
|
|
2242
2290
|
readonly operational: u32;
|
|
2243
2291
|
readonly mandatory: u32;
|
|
2244
2292
|
}
|
|
2245
2293
|
|
|
2246
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2294
|
+
/** @name SpWeightsRuntimeDbWeight (161) */
|
|
2247
2295
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2248
2296
|
readonly read: u64;
|
|
2249
2297
|
readonly write: u64;
|
|
2250
2298
|
}
|
|
2251
2299
|
|
|
2252
|
-
/** @name SpVersionRuntimeVersion (
|
|
2300
|
+
/** @name SpVersionRuntimeVersion (162) */
|
|
2253
2301
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2254
2302
|
readonly specName: Text;
|
|
2255
2303
|
readonly implName: Text;
|
|
@@ -2261,7 +2309,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2261
2309
|
readonly systemVersion: u8;
|
|
2262
2310
|
}
|
|
2263
2311
|
|
|
2264
|
-
/** @name FrameSystemError (
|
|
2312
|
+
/** @name FrameSystemError (167) */
|
|
2265
2313
|
interface FrameSystemError extends Enum {
|
|
2266
2314
|
readonly isInvalidSpecName: boolean;
|
|
2267
2315
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2284,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2284
2332
|
| 'Unauthorized';
|
|
2285
2333
|
}
|
|
2286
2334
|
|
|
2287
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2335
|
+
/** @name ArgonPrimitivesDigestsDigestset (168) */
|
|
2288
2336
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2289
2337
|
readonly author: AccountId32;
|
|
2290
2338
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2295,18 +2343,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2295
2343
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2296
2344
|
}
|
|
2297
2345
|
|
|
2298
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2346
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (169) */
|
|
2299
2347
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2300
2348
|
readonly votingPower: Compact<u128>;
|
|
2301
2349
|
readonly votesCount: Compact<u32>;
|
|
2302
2350
|
}
|
|
2303
2351
|
|
|
2304
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2352
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (171) */
|
|
2305
2353
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2306
2354
|
readonly parentVotingKey: Option<H256>;
|
|
2307
2355
|
}
|
|
2308
2356
|
|
|
2309
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2357
|
+
/** @name ArgonPrimitivesForkPower (174) */
|
|
2310
2358
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2311
2359
|
readonly isLatestVote: bool;
|
|
2312
2360
|
readonly notebooks: Compact<u64>;
|
|
@@ -2317,19 +2365,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2317
2365
|
readonly minerNonceScore: Option<U256>;
|
|
2318
2366
|
}
|
|
2319
2367
|
|
|
2320
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2368
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (179) */
|
|
2321
2369
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2322
2370
|
readonly frameId: Compact<u64>;
|
|
2323
2371
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2324
2372
|
readonly isNewFrame: bool;
|
|
2325
2373
|
}
|
|
2326
2374
|
|
|
2327
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2375
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (181) */
|
|
2328
2376
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2329
2377
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2330
2378
|
}
|
|
2331
2379
|
|
|
2332
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2380
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (183) */
|
|
2333
2381
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2334
2382
|
readonly notaryId: Compact<u32>;
|
|
2335
2383
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2337,7 +2385,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2337
2385
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2338
2386
|
}
|
|
2339
2387
|
|
|
2340
|
-
/** @name PalletDigestsError (
|
|
2388
|
+
/** @name PalletDigestsError (186) */
|
|
2341
2389
|
interface PalletDigestsError extends Enum {
|
|
2342
2390
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2343
2391
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2368,7 +2416,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2368
2416
|
| 'DuplicateFrameInfoDigest';
|
|
2369
2417
|
}
|
|
2370
2418
|
|
|
2371
|
-
/** @name PalletTimestampCall (
|
|
2419
|
+
/** @name PalletTimestampCall (187) */
|
|
2372
2420
|
interface PalletTimestampCall extends Enum {
|
|
2373
2421
|
readonly isSet: boolean;
|
|
2374
2422
|
readonly asSet: {
|
|
@@ -2377,7 +2425,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2377
2425
|
readonly type: 'Set';
|
|
2378
2426
|
}
|
|
2379
2427
|
|
|
2380
|
-
/** @name PalletMultisigMultisig (
|
|
2428
|
+
/** @name PalletMultisigMultisig (189) */
|
|
2381
2429
|
interface PalletMultisigMultisig extends Struct {
|
|
2382
2430
|
readonly when: PalletMultisigTimepoint;
|
|
2383
2431
|
readonly deposit: u128;
|
|
@@ -2385,7 +2433,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2385
2433
|
readonly approvals: Vec<AccountId32>;
|
|
2386
2434
|
}
|
|
2387
2435
|
|
|
2388
|
-
/** @name PalletMultisigCall (
|
|
2436
|
+
/** @name PalletMultisigCall (192) */
|
|
2389
2437
|
interface PalletMultisigCall extends Enum {
|
|
2390
2438
|
readonly isAsMultiThreshold1: boolean;
|
|
2391
2439
|
readonly asAsMultiThreshold1: {
|
|
@@ -2429,7 +2477,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2429
2477
|
| 'PokeDeposit';
|
|
2430
2478
|
}
|
|
2431
2479
|
|
|
2432
|
-
/** @name PalletProxyCall (
|
|
2480
|
+
/** @name PalletProxyCall (194) */
|
|
2433
2481
|
interface PalletProxyCall extends Enum {
|
|
2434
2482
|
readonly isProxy: boolean;
|
|
2435
2483
|
readonly asProxy: {
|
|
@@ -2501,10 +2549,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2501
2549
|
| 'PokeDeposit';
|
|
2502
2550
|
}
|
|
2503
2551
|
|
|
2504
|
-
/** @name PalletTicksCall (
|
|
2552
|
+
/** @name PalletTicksCall (198) */
|
|
2505
2553
|
type PalletTicksCall = Null;
|
|
2506
2554
|
|
|
2507
|
-
/** @name PalletMiningSlotCall (
|
|
2555
|
+
/** @name PalletMiningSlotCall (199) */
|
|
2508
2556
|
interface PalletMiningSlotCall extends Enum {
|
|
2509
2557
|
readonly isBid: boolean;
|
|
2510
2558
|
readonly asBid: {
|
|
@@ -2520,7 +2568,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2520
2568
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2521
2569
|
}
|
|
2522
2570
|
|
|
2523
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2571
|
+
/** @name PalletBitcoinUtxosCall (200) */
|
|
2524
2572
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2525
2573
|
readonly isSync: boolean;
|
|
2526
2574
|
readonly asSync: {
|
|
@@ -2553,21 +2601,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2553
2601
|
| 'RejectUtxoCandidate';
|
|
2554
2602
|
}
|
|
2555
2603
|
|
|
2556
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2604
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
|
|
2557
2605
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2558
2606
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2559
2607
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2560
2608
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2561
2609
|
}
|
|
2562
2610
|
|
|
2563
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2611
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (203) */
|
|
2564
2612
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2565
2613
|
readonly utxoId: Compact<u64>;
|
|
2566
2614
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2567
2615
|
readonly bitcoinHeight: Compact<u64>;
|
|
2568
2616
|
}
|
|
2569
2617
|
|
|
2570
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2618
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (206) */
|
|
2571
2619
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2572
2620
|
readonly utxoId: Compact<u64>;
|
|
2573
2621
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2576,13 +2624,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2576
2624
|
readonly bitcoinHeight: Compact<u64>;
|
|
2577
2625
|
}
|
|
2578
2626
|
|
|
2579
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2627
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (207) */
|
|
2580
2628
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2581
2629
|
readonly blockHeight: Compact<u64>;
|
|
2582
2630
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2583
2631
|
}
|
|
2584
2632
|
|
|
2585
|
-
/** @name PalletVaultsCall (
|
|
2633
|
+
/** @name PalletVaultsCall (208) */
|
|
2586
2634
|
interface PalletVaultsCall extends Enum {
|
|
2587
2635
|
readonly isCreate: boolean;
|
|
2588
2636
|
readonly asCreate: {
|
|
@@ -2616,14 +2664,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2616
2664
|
readonly asSetDelegateAccount: {
|
|
2617
2665
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2618
2666
|
} & Struct;
|
|
2619
|
-
readonly isSetName: boolean;
|
|
2620
|
-
readonly asSetName: {
|
|
2621
|
-
readonly name: Option<Bytes>;
|
|
2622
|
-
} & Struct;
|
|
2623
2667
|
readonly isSetCommittedArgonots: boolean;
|
|
2624
2668
|
readonly asSetCommittedArgonots: {
|
|
2625
2669
|
readonly amount: Compact<u128>;
|
|
2626
2670
|
} & Struct;
|
|
2671
|
+
readonly isSetReservedSecuritizationSpace: boolean;
|
|
2672
|
+
readonly asSetReservedSecuritizationSpace: {
|
|
2673
|
+
readonly reservedSecuritizationSpace: u128;
|
|
2674
|
+
} & Struct;
|
|
2627
2675
|
readonly type:
|
|
2628
2676
|
| 'Create'
|
|
2629
2677
|
| 'ModifyFunding'
|
|
@@ -2632,32 +2680,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
2632
2680
|
| 'ReplaceBitcoinXpub'
|
|
2633
2681
|
| 'Collect'
|
|
2634
2682
|
| 'SetDelegateAccount'
|
|
2635
|
-
| '
|
|
2636
|
-
| '
|
|
2683
|
+
| 'SetCommittedArgonots'
|
|
2684
|
+
| 'SetReservedSecuritizationSpace';
|
|
2637
2685
|
}
|
|
2638
2686
|
|
|
2639
|
-
/** @name PalletVaultsVaultConfig (
|
|
2687
|
+
/** @name PalletVaultsVaultConfig (209) */
|
|
2640
2688
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2641
2689
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2642
|
-
readonly name: Option<Bytes>;
|
|
2643
2690
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2644
2691
|
readonly securitization: Compact<u128>;
|
|
2645
2692
|
readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
2646
2693
|
readonly securitizationRatio: Compact<u128>;
|
|
2647
2694
|
}
|
|
2648
2695
|
|
|
2649
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2696
|
+
/** @name ArgonPrimitivesVaultVaultTerms (210) */
|
|
2650
2697
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2651
2698
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2652
2699
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2653
2700
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2654
|
-
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2655
2701
|
}
|
|
2656
2702
|
|
|
2657
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2703
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
|
|
2658
2704
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2659
2705
|
|
|
2660
|
-
/** @name PalletBitcoinLocksCall (
|
|
2706
|
+
/** @name PalletBitcoinLocksCall (216) */
|
|
2661
2707
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2662
2708
|
readonly isInitialize: boolean;
|
|
2663
2709
|
readonly asInitialize: {
|
|
@@ -2698,19 +2744,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2698
2744
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2699
2745
|
readonly signature: Bytes;
|
|
2700
2746
|
} & Struct;
|
|
2701
|
-
readonly isInitializeFor: boolean;
|
|
2702
|
-
readonly asInitializeFor: {
|
|
2703
|
-
readonly accountId: AccountId32;
|
|
2704
|
-
readonly vaultId: u32;
|
|
2705
|
-
readonly satoshis: Compact<u64>;
|
|
2706
|
-
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2707
|
-
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2708
|
-
} & Struct;
|
|
2709
2747
|
readonly isIncreaseSecuritization: boolean;
|
|
2710
2748
|
readonly asIncreaseSecuritization: {
|
|
2711
2749
|
readonly utxoId: u64;
|
|
2712
2750
|
readonly newSatoshis: Compact<u64>;
|
|
2713
2751
|
} & Struct;
|
|
2752
|
+
readonly isSetFlexible: boolean;
|
|
2753
|
+
readonly asSetFlexible: {
|
|
2754
|
+
readonly utxoId: u64;
|
|
2755
|
+
readonly isFlexible: bool;
|
|
2756
|
+
} & Struct;
|
|
2714
2757
|
readonly type:
|
|
2715
2758
|
| 'Initialize'
|
|
2716
2759
|
| 'RequestRelease'
|
|
@@ -2719,23 +2762,53 @@ declare module '@polkadot/types/lookup' {
|
|
|
2719
2762
|
| 'AdminModifyMinimumLockedSats'
|
|
2720
2763
|
| 'RequestOrphanedUtxoRelease'
|
|
2721
2764
|
| 'CosignOrphanedUtxoRelease'
|
|
2722
|
-
| '
|
|
2723
|
-
| '
|
|
2765
|
+
| 'IncreaseSecuritization'
|
|
2766
|
+
| 'SetFlexible';
|
|
2724
2767
|
}
|
|
2725
2768
|
|
|
2726
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2769
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
|
|
2727
2770
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2728
2771
|
|
|
2729
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2772
|
+
/** @name PalletBitcoinLocksLockOptions (220) */
|
|
2730
2773
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2731
2774
|
readonly isV1: boolean;
|
|
2732
2775
|
readonly asV1: {
|
|
2733
2776
|
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2734
2777
|
} & Struct;
|
|
2735
|
-
readonly
|
|
2778
|
+
readonly isV2: boolean;
|
|
2779
|
+
readonly asV2: {
|
|
2780
|
+
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2781
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2782
|
+
} & Struct;
|
|
2783
|
+
readonly type: 'V1' | 'V2';
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
/** @name PalletBitcoinLocksFeeCoupon (222) */
|
|
2787
|
+
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2788
|
+
readonly vaultId: Compact<u32>;
|
|
2789
|
+
readonly genesisHash: H256;
|
|
2790
|
+
readonly beneficiary: AccountId32;
|
|
2791
|
+
readonly feeDiscount: Compact<u128>;
|
|
2792
|
+
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
2793
|
+
readonly expiresAtFrame: Compact<u64>;
|
|
2794
|
+
readonly nonce: Compact<u64>;
|
|
2795
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
/** @name SpRuntimeMultiSignature (223) */
|
|
2799
|
+
interface SpRuntimeMultiSignature extends Enum {
|
|
2800
|
+
readonly isEd25519: boolean;
|
|
2801
|
+
readonly asEd25519: U8aFixed;
|
|
2802
|
+
readonly isSr25519: boolean;
|
|
2803
|
+
readonly asSr25519: U8aFixed;
|
|
2804
|
+
readonly isEcdsa: boolean;
|
|
2805
|
+
readonly asEcdsa: U8aFixed;
|
|
2806
|
+
readonly isEth: boolean;
|
|
2807
|
+
readonly asEth: U8aFixed;
|
|
2808
|
+
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2736
2809
|
}
|
|
2737
2810
|
|
|
2738
|
-
/** @name PalletNotariesCall (
|
|
2811
|
+
/** @name PalletNotariesCall (228) */
|
|
2739
2812
|
interface PalletNotariesCall extends Enum {
|
|
2740
2813
|
readonly isPropose: boolean;
|
|
2741
2814
|
readonly asPropose: {
|
|
@@ -2754,7 +2827,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2754
2827
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2755
2828
|
}
|
|
2756
2829
|
|
|
2757
|
-
/** @name PalletNotebookCall (
|
|
2830
|
+
/** @name PalletNotebookCall (229) */
|
|
2758
2831
|
interface PalletNotebookCall extends Enum {
|
|
2759
2832
|
readonly isSubmit: boolean;
|
|
2760
2833
|
readonly asSubmit: {
|
|
@@ -2767,13 +2840,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2767
2840
|
readonly type: 'Submit' | 'Unlock';
|
|
2768
2841
|
}
|
|
2769
2842
|
|
|
2770
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2843
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
|
|
2771
2844
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2772
2845
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2773
2846
|
readonly signature: U8aFixed;
|
|
2774
2847
|
}
|
|
2775
2848
|
|
|
2776
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2849
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (232) */
|
|
2777
2850
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2778
2851
|
readonly version: Compact<u16>;
|
|
2779
2852
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2792,7 +2865,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2792
2865
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2793
2866
|
}
|
|
2794
2867
|
|
|
2795
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2868
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (235) */
|
|
2796
2869
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2797
2870
|
readonly isToMainchain: boolean;
|
|
2798
2871
|
readonly asToMainchain: {
|
|
@@ -2806,13 +2879,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2806
2879
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2807
2880
|
}
|
|
2808
2881
|
|
|
2809
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2882
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
|
|
2810
2883
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2811
2884
|
readonly notebookNumber: Compact<u32>;
|
|
2812
2885
|
readonly accountUid: Compact<u32>;
|
|
2813
2886
|
}
|
|
2814
2887
|
|
|
2815
|
-
/** @name PalletLocalchainTransferCall (
|
|
2888
|
+
/** @name PalletLocalchainTransferCall (244) */
|
|
2816
2889
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2817
2890
|
readonly isSendToLocalchain: boolean;
|
|
2818
2891
|
readonly asSendToLocalchain: {
|
|
@@ -2822,7 +2895,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2822
2895
|
readonly type: 'SendToLocalchain';
|
|
2823
2896
|
}
|
|
2824
2897
|
|
|
2825
|
-
/** @name PalletBlockSealSpecCall (
|
|
2898
|
+
/** @name PalletBlockSealSpecCall (245) */
|
|
2826
2899
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2827
2900
|
readonly isConfigure: boolean;
|
|
2828
2901
|
readonly asConfigure: {
|
|
@@ -2832,7 +2905,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2832
2905
|
readonly type: 'Configure';
|
|
2833
2906
|
}
|
|
2834
2907
|
|
|
2835
|
-
/** @name PalletDomainsCall (
|
|
2908
|
+
/** @name PalletDomainsCall (246) */
|
|
2836
2909
|
interface PalletDomainsCall extends Enum {
|
|
2837
2910
|
readonly isSetZoneRecord: boolean;
|
|
2838
2911
|
readonly asSetZoneRecord: {
|
|
@@ -2842,11 +2915,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2842
2915
|
readonly type: 'SetZoneRecord';
|
|
2843
2916
|
}
|
|
2844
2917
|
|
|
2845
|
-
/** @name PalletPriceIndexCall (
|
|
2918
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2846
2919
|
interface PalletPriceIndexCall extends Enum {
|
|
2847
2920
|
readonly isSubmit: boolean;
|
|
2848
2921
|
readonly asSubmit: {
|
|
2849
2922
|
readonly index: PalletPriceIndexPriceIndex;
|
|
2923
|
+
readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
|
|
2850
2924
|
} & Struct;
|
|
2851
2925
|
readonly isSetOperator: boolean;
|
|
2852
2926
|
readonly asSetOperator: {
|
|
@@ -2855,7 +2929,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2855
2929
|
readonly type: 'Submit' | 'SetOperator';
|
|
2856
2930
|
}
|
|
2857
2931
|
|
|
2858
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2932
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2859
2933
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2860
2934
|
readonly btcUsdPrice: Compact<u128>;
|
|
2861
2935
|
readonly argonotUsdPrice: u128;
|
|
@@ -2865,7 +2939,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2865
2939
|
readonly tick: Compact<u64>;
|
|
2866
2940
|
}
|
|
2867
2941
|
|
|
2868
|
-
/** @name
|
|
2942
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2943
|
+
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2944
|
+
readonly ethereumUsdPrice: u128;
|
|
2945
|
+
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2946
|
+
readonly tick: Compact<u64>;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
/** @name PalletGrandpaCall (251) */
|
|
2869
2950
|
interface PalletGrandpaCall extends Enum {
|
|
2870
2951
|
readonly isReportEquivocation: boolean;
|
|
2871
2952
|
readonly asReportEquivocation: {
|
|
@@ -2885,13 +2966,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2885
2966
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2886
2967
|
}
|
|
2887
2968
|
|
|
2888
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2969
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2889
2970
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2890
2971
|
readonly setId: u64;
|
|
2891
2972
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2892
2973
|
}
|
|
2893
2974
|
|
|
2894
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2975
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2895
2976
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2896
2977
|
readonly isPrevote: boolean;
|
|
2897
2978
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2900,7 +2981,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2900
2981
|
readonly type: 'Prevote' | 'Precommit';
|
|
2901
2982
|
}
|
|
2902
2983
|
|
|
2903
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2984
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2904
2985
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2905
2986
|
readonly roundNumber: u64;
|
|
2906
2987
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2908,16 +2989,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2908
2989
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2909
2990
|
}
|
|
2910
2991
|
|
|
2911
|
-
/** @name FinalityGrandpaPrevote (
|
|
2992
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2912
2993
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2913
2994
|
readonly targetHash: H256;
|
|
2914
2995
|
readonly targetNumber: u32;
|
|
2915
2996
|
}
|
|
2916
2997
|
|
|
2917
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2998
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2918
2999
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2919
3000
|
|
|
2920
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3001
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2921
3002
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2922
3003
|
readonly roundNumber: u64;
|
|
2923
3004
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2925,16 +3006,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2925
3006
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2926
3007
|
}
|
|
2927
3008
|
|
|
2928
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3009
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
2929
3010
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2930
3011
|
readonly targetHash: H256;
|
|
2931
3012
|
readonly targetNumber: u32;
|
|
2932
3013
|
}
|
|
2933
3014
|
|
|
2934
|
-
/** @name SpCoreVoid (
|
|
3015
|
+
/** @name SpCoreVoid (261) */
|
|
2935
3016
|
type SpCoreVoid = Null;
|
|
2936
3017
|
|
|
2937
|
-
/** @name PalletBlockSealCall (
|
|
3018
|
+
/** @name PalletBlockSealCall (262) */
|
|
2938
3019
|
interface PalletBlockSealCall extends Enum {
|
|
2939
3020
|
readonly isApply: boolean;
|
|
2940
3021
|
readonly asApply: {
|
|
@@ -2943,7 +3024,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2943
3024
|
readonly type: 'Apply';
|
|
2944
3025
|
}
|
|
2945
3026
|
|
|
2946
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3027
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
2947
3028
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2948
3029
|
readonly isVote: boolean;
|
|
2949
3030
|
readonly asVote: {
|
|
@@ -2958,14 +3039,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2958
3039
|
readonly type: 'Vote' | 'Compute';
|
|
2959
3040
|
}
|
|
2960
3041
|
|
|
2961
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3042
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
2962
3043
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2963
3044
|
readonly proof: Vec<H256>;
|
|
2964
3045
|
readonly numberOfLeaves: Compact<u32>;
|
|
2965
3046
|
readonly leafIndex: Compact<u32>;
|
|
2966
3047
|
}
|
|
2967
3048
|
|
|
2968
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3049
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
2969
3050
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2970
3051
|
readonly accountId: AccountId32;
|
|
2971
3052
|
readonly blockHash: H256;
|
|
@@ -2976,20 +3057,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2976
3057
|
readonly tick: Compact<u64>;
|
|
2977
3058
|
}
|
|
2978
3059
|
|
|
2979
|
-
/** @name
|
|
2980
|
-
interface SpRuntimeMultiSignature extends Enum {
|
|
2981
|
-
readonly isEd25519: boolean;
|
|
2982
|
-
readonly asEd25519: U8aFixed;
|
|
2983
|
-
readonly isSr25519: boolean;
|
|
2984
|
-
readonly asSr25519: U8aFixed;
|
|
2985
|
-
readonly isEcdsa: boolean;
|
|
2986
|
-
readonly asEcdsa: U8aFixed;
|
|
2987
|
-
readonly isEth: boolean;
|
|
2988
|
-
readonly asEth: U8aFixed;
|
|
2989
|
-
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2990
|
-
}
|
|
2991
|
-
|
|
2992
|
-
/** @name PalletBlockRewardsCall (262) */
|
|
3060
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
2993
3061
|
interface PalletBlockRewardsCall extends Enum {
|
|
2994
3062
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2995
3063
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3002,10 +3070,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3002
3070
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3003
3071
|
}
|
|
3004
3072
|
|
|
3005
|
-
/** @name PalletMintCall (
|
|
3073
|
+
/** @name PalletMintCall (268) */
|
|
3006
3074
|
type PalletMintCall = Null;
|
|
3007
3075
|
|
|
3008
|
-
/** @name PalletBalancesCall (
|
|
3076
|
+
/** @name PalletBalancesCall (269) */
|
|
3009
3077
|
interface PalletBalancesCall extends Enum {
|
|
3010
3078
|
readonly isTransferAllowDeath: boolean;
|
|
3011
3079
|
readonly asTransferAllowDeath: {
|
|
@@ -3064,14 +3132,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3064
3132
|
| 'Burn';
|
|
3065
3133
|
}
|
|
3066
3134
|
|
|
3067
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3135
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3068
3136
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3069
3137
|
readonly isIncrease: boolean;
|
|
3070
3138
|
readonly isDecrease: boolean;
|
|
3071
3139
|
readonly type: 'Increase' | 'Decrease';
|
|
3072
3140
|
}
|
|
3073
3141
|
|
|
3074
|
-
/** @name PalletTxPauseCall (
|
|
3142
|
+
/** @name PalletTxPauseCall (272) */
|
|
3075
3143
|
interface PalletTxPauseCall extends Enum {
|
|
3076
3144
|
readonly isPause: boolean;
|
|
3077
3145
|
readonly asPause: {
|
|
@@ -3084,7 +3152,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3084
3152
|
readonly type: 'Pause' | 'Unpause';
|
|
3085
3153
|
}
|
|
3086
3154
|
|
|
3087
|
-
/** @name PalletUtilityCall (
|
|
3155
|
+
/** @name PalletUtilityCall (273) */
|
|
3088
3156
|
interface PalletUtilityCall extends Enum {
|
|
3089
3157
|
readonly isBatch: boolean;
|
|
3090
3158
|
readonly asBatch: {
|
|
@@ -3134,7 +3202,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3134
3202
|
| 'DispatchAsFallible';
|
|
3135
3203
|
}
|
|
3136
3204
|
|
|
3137
|
-
/** @name PalletSudoCall (
|
|
3205
|
+
/** @name PalletSudoCall (275) */
|
|
3138
3206
|
interface PalletSudoCall extends Enum {
|
|
3139
3207
|
readonly isSudo: boolean;
|
|
3140
3208
|
readonly asSudo: {
|
|
@@ -3158,7 +3226,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3158
3226
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3159
3227
|
}
|
|
3160
3228
|
|
|
3161
|
-
/** @name PalletTreasuryCall (
|
|
3229
|
+
/** @name PalletTreasuryCall (276) */
|
|
3162
3230
|
interface PalletTreasuryCall extends Enum {
|
|
3163
3231
|
readonly isBuyBonds: boolean;
|
|
3164
3232
|
readonly asBuyBonds: {
|
|
@@ -3174,23 +3242,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
3174
3242
|
readonly asBuyArgonotBonds: {
|
|
3175
3243
|
readonly bonds: u32;
|
|
3176
3244
|
} & Struct;
|
|
3177
|
-
readonly
|
|
3245
|
+
readonly isSetBondLotFlexible: boolean;
|
|
3246
|
+
readonly asSetBondLotFlexible: {
|
|
3247
|
+
readonly bondLotId: u64;
|
|
3248
|
+
readonly isFlexible: bool;
|
|
3249
|
+
} & Struct;
|
|
3250
|
+
readonly isSetReservedBondSpace: boolean;
|
|
3251
|
+
readonly asSetReservedBondSpace: {
|
|
3252
|
+
readonly vaultId: u32;
|
|
3253
|
+
readonly reservedBondSpace: u32;
|
|
3254
|
+
} & Struct;
|
|
3255
|
+
readonly type:
|
|
3256
|
+
| 'BuyBonds'
|
|
3257
|
+
| 'LiquidateBondLot'
|
|
3258
|
+
| 'BuyArgonotBonds'
|
|
3259
|
+
| 'SetBondLotFlexible'
|
|
3260
|
+
| 'SetReservedBondSpace';
|
|
3178
3261
|
}
|
|
3179
3262
|
|
|
3180
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3263
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
|
|
3181
3264
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3182
3265
|
readonly vaultId: Compact<u32>;
|
|
3183
3266
|
readonly beneficiary: AccountId32;
|
|
3267
|
+
readonly bonusPercent: Compact<Permill>;
|
|
3184
3268
|
readonly expiresAtFrame: Compact<u64>;
|
|
3269
|
+
readonly bondSpaceToUnreserve: Compact<u32>;
|
|
3270
|
+
readonly nonce: Compact<u64>;
|
|
3185
3271
|
readonly signature: SpRuntimeMultiSignature;
|
|
3186
3272
|
}
|
|
3187
3273
|
|
|
3188
|
-
/** @name PalletOperationalAccountsCall (
|
|
3274
|
+
/** @name PalletOperationalAccountsCall (279) */
|
|
3189
3275
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3190
3276
|
readonly isRegister: boolean;
|
|
3191
3277
|
readonly asRegister: {
|
|
3192
3278
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3193
3279
|
} & Struct;
|
|
3280
|
+
readonly isSetName: boolean;
|
|
3281
|
+
readonly asSetName: {
|
|
3282
|
+
readonly name: Option<Bytes>;
|
|
3283
|
+
} & Struct;
|
|
3194
3284
|
readonly isSetRewardConfig: boolean;
|
|
3195
3285
|
readonly asSetRewardConfig: {
|
|
3196
3286
|
readonly operationalCertificationReward: u128;
|
|
@@ -3202,11 +3292,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3202
3292
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3203
3293
|
readonly updateOperationalProgress: bool;
|
|
3204
3294
|
} & Struct;
|
|
3205
|
-
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3206
|
-
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3207
|
-
readonly downstreamAccount: AccountId32;
|
|
3208
|
-
readonly encryptedServer: Bytes;
|
|
3209
|
-
} & Struct;
|
|
3210
3295
|
readonly isActivate: boolean;
|
|
3211
3296
|
readonly isClaimRewards: boolean;
|
|
3212
3297
|
readonly asClaimRewards: {
|
|
@@ -3214,21 +3299,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3214
3299
|
} & Struct;
|
|
3215
3300
|
readonly type:
|
|
3216
3301
|
| 'Register'
|
|
3302
|
+
| 'SetName'
|
|
3217
3303
|
| 'SetRewardConfig'
|
|
3218
3304
|
| 'ForceSetProgress'
|
|
3219
|
-
| 'SetEncryptedServerForDownstreamAccount'
|
|
3220
3305
|
| 'Activate'
|
|
3221
3306
|
| 'ClaimRewards';
|
|
3222
3307
|
}
|
|
3223
3308
|
|
|
3224
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3309
|
+
/** @name PalletOperationalAccountsRegistration (280) */
|
|
3225
3310
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3226
3311
|
readonly isV1: boolean;
|
|
3227
3312
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3228
3313
|
readonly type: 'V1';
|
|
3229
3314
|
}
|
|
3230
3315
|
|
|
3231
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3316
|
+
/** @name PalletOperationalAccountsRegistrationV1 (281) */
|
|
3232
3317
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3233
3318
|
readonly operationalAccount: AccountId32;
|
|
3234
3319
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3240,21 +3325,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3240
3325
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3241
3326
|
}
|
|
3242
3327
|
|
|
3243
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3328
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
|
|
3244
3329
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3245
3330
|
|
|
3246
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3331
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (283) */
|
|
3247
3332
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3248
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3249
3334
|
}
|
|
3250
3335
|
|
|
3251
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3336
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (285) */
|
|
3252
3337
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
3338
|
readonly upstreamAccount: AccountId32;
|
|
3254
3339
|
readonly signature: SpRuntimeMultiSignature;
|
|
3255
3340
|
}
|
|
3256
3341
|
|
|
3257
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3342
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (288) */
|
|
3258
3343
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3259
3344
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3260
3345
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3264,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3349
|
readonly miningSeatCount: Option<u32>;
|
|
3265
3350
|
}
|
|
3266
3351
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCall (
|
|
3352
|
+
/** @name PalletEthereumVerifierCall (290) */
|
|
3268
3353
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3269
3354
|
readonly isForceCheckpoint: boolean;
|
|
3270
3355
|
readonly asForceCheckpoint: {
|
|
@@ -3292,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3292
3377
|
| 'SetOperatingMode';
|
|
3293
3378
|
}
|
|
3294
3379
|
|
|
3295
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3380
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (291) */
|
|
3296
3381
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3297
3382
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3298
3383
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3301,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3301
3386
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3302
3387
|
}
|
|
3303
3388
|
|
|
3304
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3389
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (292) */
|
|
3305
3390
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3306
3391
|
readonly slot: u64;
|
|
3307
3392
|
readonly proposerIndex: u64;
|
|
@@ -3310,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3310
3395
|
readonly bodyRoot: H256;
|
|
3311
3396
|
}
|
|
3312
3397
|
|
|
3313
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3398
|
+
/** @name PalletEthereumVerifierSyncCommittee (293) */
|
|
3314
3399
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3315
3400
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3316
3401
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3317
3402
|
}
|
|
3318
3403
|
|
|
3319
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3404
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (295) */
|
|
3320
3405
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3321
3406
|
|
|
3322
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3407
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (299) */
|
|
3323
3408
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3324
3409
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3325
3410
|
readonly executionBranch: Vec<H256>;
|
|
3326
3411
|
}
|
|
3327
3412
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3413
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (300) */
|
|
3329
3414
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3330
3415
|
readonly isCapella: boolean;
|
|
3331
3416
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3334,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3334
3419
|
readonly type: 'Capella' | 'Deneb';
|
|
3335
3420
|
}
|
|
3336
3421
|
|
|
3337
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3422
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (301) */
|
|
3338
3423
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3339
3424
|
readonly parentHash: H256;
|
|
3340
3425
|
readonly feeRecipient: H160;
|
|
@@ -3353,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3438
|
readonly withdrawalsRoot: H256;
|
|
3354
3439
|
}
|
|
3355
3440
|
|
|
3356
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3441
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (302) */
|
|
3357
3442
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3358
3443
|
readonly parentHash: H256;
|
|
3359
3444
|
readonly feeRecipient: H160;
|
|
@@ -3374,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3459
|
readonly excessBlobGas: u64;
|
|
3375
3460
|
}
|
|
3376
3461
|
|
|
3377
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3462
|
+
/** @name PalletEthereumVerifierForkVersions (303) */
|
|
3378
3463
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3379
3464
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3380
3465
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3385,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3385
3470
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3386
3471
|
}
|
|
3387
3472
|
|
|
3388
|
-
/** @name PalletEthereumVerifierFork (
|
|
3473
|
+
/** @name PalletEthereumVerifierFork (304) */
|
|
3389
3474
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3390
3475
|
readonly version: U8aFixed;
|
|
3391
3476
|
readonly epoch: Compact<u64>;
|
|
3392
3477
|
}
|
|
3393
3478
|
|
|
3394
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3479
|
+
/** @name PalletEthereumVerifierUpdate (305) */
|
|
3395
3480
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3396
3481
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3397
3482
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3402,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3402
3487
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3403
3488
|
}
|
|
3404
3489
|
|
|
3405
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3490
|
+
/** @name PalletEthereumVerifierSyncAggregate (306) */
|
|
3406
3491
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3407
3492
|
readonly syncCommitteeBits: Bytes;
|
|
3408
3493
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3409
3494
|
}
|
|
3410
3495
|
|
|
3411
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3496
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (308) */
|
|
3412
3497
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3413
3498
|
|
|
3414
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3499
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (311) */
|
|
3415
3500
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3416
3501
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3417
3502
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3418
3503
|
}
|
|
3419
3504
|
|
|
3420
|
-
/** @name PalletCrosschainTransferCall (
|
|
3505
|
+
/** @name PalletCrosschainTransferCall (312) */
|
|
3421
3506
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3422
3507
|
readonly isSetChainConfig: boolean;
|
|
3423
3508
|
readonly asSetChainConfig: {
|
|
@@ -3507,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3507
3592
|
| 'CollateralizeTransfer';
|
|
3508
3593
|
}
|
|
3509
3594
|
|
|
3510
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3595
|
+
/** @name PalletCrosschainTransferChainConfig (313) */
|
|
3511
3596
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3512
3597
|
readonly isEvm: boolean;
|
|
3513
3598
|
readonly asEvm: {
|
|
@@ -3519,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3519
3604
|
readonly type: 'Evm';
|
|
3520
3605
|
}
|
|
3521
3606
|
|
|
3522
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3607
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (315) */
|
|
3523
3608
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3524
3609
|
readonly activationGasCost: Compact<u128>;
|
|
3525
3610
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3527,56 +3612,77 @@ declare module '@polkadot/types/lookup' {
|
|
|
3527
3612
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3528
3613
|
}
|
|
3529
3614
|
|
|
3530
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (318) */
|
|
3531
3616
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3532
3617
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3533
3618
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3534
3619
|
}
|
|
3535
3620
|
|
|
3536
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (319) */
|
|
3537
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3538
3623
|
readonly anchorBlockHash: H256;
|
|
3539
3624
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3540
3625
|
}
|
|
3541
3626
|
|
|
3542
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3627
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (321) */
|
|
3543
3628
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3544
3629
|
readonly rlp: Bytes;
|
|
3545
3630
|
}
|
|
3546
3631
|
|
|
3547
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3632
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (325) */
|
|
3548
3633
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3549
3634
|
readonly targetBlockNumber: Compact<u64>;
|
|
3550
3635
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3551
3636
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3552
3637
|
}
|
|
3553
3638
|
|
|
3554
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (326) */
|
|
3555
3640
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3556
3641
|
readonly nodes: Vec<Bytes>;
|
|
3557
3642
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3558
3643
|
}
|
|
3559
3644
|
|
|
3560
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (330) */
|
|
3561
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3562
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3563
3648
|
readonly nodeIndexes: Vec<u16>;
|
|
3564
3649
|
}
|
|
3565
3650
|
|
|
3566
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (335) */
|
|
3567
3652
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3568
3653
|
readonly transactionIndex: Compact<u64>;
|
|
3569
3654
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3570
3655
|
}
|
|
3571
3656
|
|
|
3572
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3657
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (336) */
|
|
3573
3658
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3574
3659
|
readonly address: H160;
|
|
3575
3660
|
readonly topics: Vec<H256>;
|
|
3576
3661
|
readonly data: Bytes;
|
|
3577
3662
|
}
|
|
3578
3663
|
|
|
3579
|
-
/** @name
|
|
3664
|
+
/** @name PalletBootstrapCall (341) */
|
|
3665
|
+
interface PalletBootstrapCall extends Enum {
|
|
3666
|
+
readonly isSetRecoveryPayload: boolean;
|
|
3667
|
+
readonly asSetRecoveryPayload: {
|
|
3668
|
+
readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
3669
|
+
readonly recoveryProof: PalletBootstrapRecoveryProof;
|
|
3670
|
+
readonly encryptedRecoveryPayload: Bytes;
|
|
3671
|
+
} & Struct;
|
|
3672
|
+
readonly isSetEndpoint: boolean;
|
|
3673
|
+
readonly asSetEndpoint: {
|
|
3674
|
+
readonly endpointPubkey: PalletBootstrapEndpointPubkey;
|
|
3675
|
+
readonly encryptedEndpoint: Bytes;
|
|
3676
|
+
} & Struct;
|
|
3677
|
+
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
/** @name PalletBootstrapRecoveryProof (342) */
|
|
3681
|
+
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3682
|
+
readonly signature: U8aFixed;
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
/** @name PalletMultisigError (344) */
|
|
3580
3686
|
interface PalletMultisigError extends Enum {
|
|
3581
3687
|
readonly isMinimumThreshold: boolean;
|
|
3582
3688
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3609,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3715
|
| 'AlreadyStored';
|
|
3610
3716
|
}
|
|
3611
3717
|
|
|
3612
|
-
/** @name PalletProxyProxyDefinition (
|
|
3718
|
+
/** @name PalletProxyProxyDefinition (347) */
|
|
3613
3719
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3614
3720
|
readonly delegate: AccountId32;
|
|
3615
3721
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3616
3722
|
readonly delay: u32;
|
|
3617
3723
|
}
|
|
3618
3724
|
|
|
3619
|
-
/** @name PalletProxyAnnouncement (
|
|
3725
|
+
/** @name PalletProxyAnnouncement (351) */
|
|
3620
3726
|
interface PalletProxyAnnouncement extends Struct {
|
|
3621
3727
|
readonly real: AccountId32;
|
|
3622
3728
|
readonly callHash: H256;
|
|
3623
3729
|
readonly height: u32;
|
|
3624
3730
|
}
|
|
3625
3731
|
|
|
3626
|
-
/** @name PalletProxyError (
|
|
3732
|
+
/** @name PalletProxyError (353) */
|
|
3627
3733
|
interface PalletProxyError extends Enum {
|
|
3628
3734
|
readonly isTooMany: boolean;
|
|
3629
3735
|
readonly isNotFound: boolean;
|
|
@@ -3644,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3644
3750
|
| 'NoSelfProxy';
|
|
3645
3751
|
}
|
|
3646
3752
|
|
|
3647
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3753
|
+
/** @name ArgonPrimitivesTickTicker (354) */
|
|
3648
3754
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3649
3755
|
readonly tickDurationMillis: Compact<u64>;
|
|
3650
3756
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3651
3757
|
}
|
|
3652
3758
|
|
|
3653
|
-
/** @name PalletTicksError (
|
|
3759
|
+
/** @name PalletTicksError (356) */
|
|
3654
3760
|
type PalletTicksError = Null;
|
|
3655
3761
|
|
|
3656
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3762
|
+
/** @name PalletMiningSlotMinerNonceScoring (359) */
|
|
3657
3763
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3658
3764
|
readonly nonce: U256;
|
|
3659
3765
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3661,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3661
3767
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3662
3768
|
}
|
|
3663
3769
|
|
|
3664
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3770
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (371) */
|
|
3665
3771
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3666
3772
|
readonly bidsCount: u32;
|
|
3667
3773
|
readonly bidAmountMin: u128;
|
|
@@ -3669,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3669
3775
|
readonly bidAmountSum: u128;
|
|
3670
3776
|
}
|
|
3671
3777
|
|
|
3672
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3778
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (375) */
|
|
3673
3779
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3674
3780
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3675
3781
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3676
3782
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3677
3783
|
}
|
|
3678
3784
|
|
|
3679
|
-
/** @name PalletMiningSlotError (
|
|
3785
|
+
/** @name PalletMiningSlotError (385) */
|
|
3680
3786
|
interface PalletMiningSlotError extends Enum {
|
|
3681
3787
|
readonly isSlotNotTakingBids: boolean;
|
|
3682
3788
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3703,7 +3809,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3703
3809
|
| 'UnrecoverableHold';
|
|
3704
3810
|
}
|
|
3705
3811
|
|
|
3706
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3812
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (386) */
|
|
3707
3813
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3708
3814
|
readonly utxoId: u64;
|
|
3709
3815
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3712,7 +3818,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3712
3818
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3713
3819
|
}
|
|
3714
3820
|
|
|
3715
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3821
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3716
3822
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3717
3823
|
readonly isP2wsh: boolean;
|
|
3718
3824
|
readonly asP2wsh: {
|
|
@@ -3721,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3721
3827
|
readonly type: 'P2wsh';
|
|
3722
3828
|
}
|
|
3723
3829
|
|
|
3724
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3830
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (396) */
|
|
3725
3831
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3726
3832
|
readonly isBitcoin: boolean;
|
|
3727
3833
|
readonly isTestnet: boolean;
|
|
@@ -3730,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3730
3836
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3731
3837
|
}
|
|
3732
3838
|
|
|
3733
|
-
/** @name PalletBitcoinUtxosError (
|
|
3839
|
+
/** @name PalletBitcoinUtxosError (397) */
|
|
3734
3840
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3735
3841
|
readonly isNoPermissions: boolean;
|
|
3736
3842
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3765,18 +3871,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
3765
3871
|
| 'LockAlreadyFunded';
|
|
3766
3872
|
}
|
|
3767
3873
|
|
|
3768
|
-
/** @name ArgonPrimitivesVault (
|
|
3874
|
+
/** @name ArgonPrimitivesVault (398) */
|
|
3769
3875
|
interface ArgonPrimitivesVault extends Struct {
|
|
3770
3876
|
readonly operatorAccountId: AccountId32;
|
|
3771
3877
|
readonly delegateAccountId: Option<AccountId32>;
|
|
3772
|
-
readonly name: Option<Bytes>;
|
|
3773
|
-
readonly lastNameChangeTick: Option<u64>;
|
|
3774
3878
|
readonly securitization: Compact<u128>;
|
|
3775
3879
|
readonly securitizationTarget: Compact<u128>;
|
|
3776
3880
|
readonly securitizationLocked: Compact<u128>;
|
|
3881
|
+
readonly flexibleSecuritizationLocked: Compact<u128>;
|
|
3882
|
+
readonly reservedSecuritizationSpace: Compact<u128>;
|
|
3777
3883
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3778
3884
|
readonly lockedSatoshis: Compact<u64>;
|
|
3779
3885
|
readonly securitizedSatoshis: Compact<u64>;
|
|
3886
|
+
readonly flexibleSecuritizedSatoshis: Compact<u64>;
|
|
3780
3887
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3781
3888
|
readonly securitizationRatio: Compact<u128>;
|
|
3782
3889
|
readonly isClosed: bool;
|
|
@@ -3786,13 +3893,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3786
3893
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3787
3894
|
}
|
|
3788
3895
|
|
|
3789
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3896
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (405) */
|
|
3790
3897
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3791
3898
|
readonly committedMicronots: Compact<u128>;
|
|
3792
3899
|
readonly encumberedMicronots: Compact<u128>;
|
|
3793
3900
|
}
|
|
3794
3901
|
|
|
3795
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3902
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (407) */
|
|
3796
3903
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3797
3904
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3798
3905
|
readonly depth: Compact<u8>;
|
|
@@ -3802,14 +3909,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3802
3909
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3803
3910
|
}
|
|
3804
3911
|
|
|
3805
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3912
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (409) */
|
|
3806
3913
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3807
3914
|
readonly isMain: boolean;
|
|
3808
3915
|
readonly isTest: boolean;
|
|
3809
3916
|
readonly type: 'Main' | 'Test';
|
|
3810
3917
|
}
|
|
3811
3918
|
|
|
3812
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3919
|
+
/** @name PalletVaultsVaultFrameRevenue (418) */
|
|
3813
3920
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3814
3921
|
readonly frameId: Compact<u64>;
|
|
3815
3922
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3829,15 +3936,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3829
3936
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3830
3937
|
}
|
|
3831
3938
|
|
|
3832
|
-
/** @name
|
|
3833
|
-
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3834
|
-
readonly blockNumber: Compact<u32>;
|
|
3835
|
-
readonly availableBeforeDrop: Compact<u128>;
|
|
3836
|
-
readonly availableAfterDrop: Compact<u128>;
|
|
3837
|
-
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3838
|
-
}
|
|
3839
|
-
|
|
3840
|
-
/** @name PalletVaultsError (414) */
|
|
3939
|
+
/** @name PalletVaultsError (420) */
|
|
3841
3940
|
interface PalletVaultsError extends Enum {
|
|
3842
3941
|
readonly isNoMoreVaultIds: boolean;
|
|
3843
3942
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3865,8 +3964,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3865
3964
|
readonly isInternalError: boolean;
|
|
3866
3965
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
3867
3966
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
3868
|
-
readonly isInvalidBondSharingTerms: boolean;
|
|
3869
|
-
readonly isInvalidVaultName: boolean;
|
|
3870
3967
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3871
3968
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3872
3969
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
@@ -3900,8 +3997,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3900
3997
|
| 'InternalError'
|
|
3901
3998
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3902
3999
|
| 'FundingChangeAlreadyScheduled'
|
|
3903
|
-
| 'InvalidBondSharingTerms'
|
|
3904
|
-
| 'InvalidVaultName'
|
|
3905
4000
|
| 'PendingCosignsBeforeCollect'
|
|
3906
4001
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3907
4002
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
@@ -3910,7 +4005,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3910
4005
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3911
4006
|
}
|
|
3912
4007
|
|
|
3913
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4008
|
+
/** @name PalletBitcoinLocksLockedBitcoin (421) */
|
|
3914
4009
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3915
4010
|
readonly vaultId: Compact<u32>;
|
|
3916
4011
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3930,11 +4025,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3930
4025
|
readonly createdAtHeight: Compact<u64>;
|
|
3931
4026
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3932
4027
|
readonly isFunded: bool;
|
|
4028
|
+
readonly isFlexible: bool;
|
|
3933
4029
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
3934
4030
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3935
4031
|
}
|
|
3936
4032
|
|
|
3937
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4033
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (425) */
|
|
3938
4034
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3939
4035
|
readonly utxoId: Compact<u64>;
|
|
3940
4036
|
readonly vaultId: Compact<u32>;
|
|
@@ -3944,7 +4040,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3944
4040
|
readonly redemptionAmount: Compact<u128>;
|
|
3945
4041
|
}
|
|
3946
4042
|
|
|
3947
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4043
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (427) */
|
|
3948
4044
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3949
4045
|
readonly utxoId: Compact<u64>;
|
|
3950
4046
|
readonly vaultId: Compact<u32>;
|
|
@@ -3953,14 +4049,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3953
4049
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3954
4050
|
}
|
|
3955
4051
|
|
|
3956
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4052
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (429) */
|
|
3957
4053
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3958
4054
|
readonly bitcoinNetworkFee: u64;
|
|
3959
4055
|
readonly toScriptPubkey: Bytes;
|
|
3960
4056
|
readonly createdAtArgonBlockNumber: u32;
|
|
3961
4057
|
}
|
|
3962
4058
|
|
|
3963
|
-
/** @name PalletBitcoinLocksError (
|
|
4059
|
+
/** @name PalletBitcoinLocksError (436) */
|
|
3964
4060
|
interface PalletBitcoinLocksError extends Enum {
|
|
3965
4061
|
readonly isInsufficientFunds: boolean;
|
|
3966
4062
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -3994,6 +4090,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3994
4090
|
readonly isLockPendingFunding: boolean;
|
|
3995
4091
|
readonly isOverflowError: boolean;
|
|
3996
4092
|
readonly isIneligibleMicrogonRateRequested: boolean;
|
|
4093
|
+
readonly isFeeCouponWrongVault: boolean;
|
|
4094
|
+
readonly isFeeCouponWrongChain: boolean;
|
|
4095
|
+
readonly isFeeCouponWrongAccount: boolean;
|
|
4096
|
+
readonly isFeeCouponExpired: boolean;
|
|
4097
|
+
readonly isInvalidFeeCouponSignature: boolean;
|
|
4098
|
+
readonly isFeeCouponAlreadyUsed: boolean;
|
|
4099
|
+
readonly isFeeCouponOnlyForInitialization: boolean;
|
|
3997
4100
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
3998
4101
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
3999
4102
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4030,13 +4133,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4030
4133
|
| 'LockPendingFunding'
|
|
4031
4134
|
| 'OverflowError'
|
|
4032
4135
|
| 'IneligibleMicrogonRateRequested'
|
|
4136
|
+
| 'FeeCouponWrongVault'
|
|
4137
|
+
| 'FeeCouponWrongChain'
|
|
4138
|
+
| 'FeeCouponWrongAccount'
|
|
4139
|
+
| 'FeeCouponExpired'
|
|
4140
|
+
| 'InvalidFeeCouponSignature'
|
|
4141
|
+
| 'FeeCouponAlreadyUsed'
|
|
4142
|
+
| 'FeeCouponOnlyForInitialization'
|
|
4033
4143
|
| 'OrphanedUtxoFundingConflict'
|
|
4034
4144
|
| 'OrphanedUtxoReleaseRequested'
|
|
4035
4145
|
| 'FundingUtxoCannotBeReleased'
|
|
4036
4146
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4037
4147
|
}
|
|
4038
4148
|
|
|
4039
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4149
|
+
/** @name ArgonPrimitivesVaultVaultError (437) */
|
|
4040
4150
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4041
4151
|
readonly isVaultClosed: boolean;
|
|
4042
4152
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4067,7 +4177,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4067
4177
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4068
4178
|
}
|
|
4069
4179
|
|
|
4070
|
-
/** @name PalletNotariesError (
|
|
4180
|
+
/** @name PalletNotariesError (449) */
|
|
4071
4181
|
interface PalletNotariesError extends Enum {
|
|
4072
4182
|
readonly isProposalNotFound: boolean;
|
|
4073
4183
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4090,7 +4200,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4090
4200
|
| 'InvalidNotary';
|
|
4091
4201
|
}
|
|
4092
4202
|
|
|
4093
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4203
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (453) */
|
|
4094
4204
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4095
4205
|
readonly notebookNumber: Compact<u32>;
|
|
4096
4206
|
readonly tick: Compact<u64>;
|
|
@@ -4099,7 +4209,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4099
4209
|
readonly parentSecret: Option<H256>;
|
|
4100
4210
|
}
|
|
4101
4211
|
|
|
4102
|
-
/** @name PalletNotebookError (
|
|
4212
|
+
/** @name PalletNotebookError (456) */
|
|
4103
4213
|
interface PalletNotebookError extends Enum {
|
|
4104
4214
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4105
4215
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4134,7 +4244,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4134
4244
|
| 'InvalidNotebookSubmissionTick';
|
|
4135
4245
|
}
|
|
4136
4246
|
|
|
4137
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4247
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (457) */
|
|
4138
4248
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4139
4249
|
readonly accountId: AccountId32;
|
|
4140
4250
|
readonly amount: u128;
|
|
@@ -4142,10 +4252,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4142
4252
|
readonly notaryId: u32;
|
|
4143
4253
|
}
|
|
4144
4254
|
|
|
4145
|
-
/** @name FrameSupportPalletId (
|
|
4255
|
+
/** @name FrameSupportPalletId (459) */
|
|
4146
4256
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4147
4257
|
|
|
4148
|
-
/** @name PalletLocalchainTransferError (
|
|
4258
|
+
/** @name PalletLocalchainTransferError (460) */
|
|
4149
4259
|
interface PalletLocalchainTransferError extends Enum {
|
|
4150
4260
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4151
4261
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4166,7 +4276,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4166
4276
|
| 'NoAvailableTransferId';
|
|
4167
4277
|
}
|
|
4168
4278
|
|
|
4169
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4279
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (464) */
|
|
4170
4280
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4171
4281
|
readonly notaryId: Compact<u32>;
|
|
4172
4282
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4175,13 +4285,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4175
4285
|
readonly blockVotingPower: Compact<u128>;
|
|
4176
4286
|
}
|
|
4177
4287
|
|
|
4178
|
-
/** @name PalletBlockSealSpecError (
|
|
4288
|
+
/** @name PalletBlockSealSpecError (469) */
|
|
4179
4289
|
interface PalletBlockSealSpecError extends Enum {
|
|
4180
4290
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4181
4291
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4182
4292
|
}
|
|
4183
4293
|
|
|
4184
|
-
/** @name PalletDomainsError (
|
|
4294
|
+
/** @name PalletDomainsError (471) */
|
|
4185
4295
|
interface PalletDomainsError extends Enum {
|
|
4186
4296
|
readonly isDomainNotRegistered: boolean;
|
|
4187
4297
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4196,34 +4306,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
4196
4306
|
| 'AccountDecodingError';
|
|
4197
4307
|
}
|
|
4198
4308
|
|
|
4199
|
-
/** @name
|
|
4309
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (473) */
|
|
4310
|
+
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4311
|
+
readonly totalUsdPrice: u128;
|
|
4312
|
+
readonly totalWeiPerGas: Compact<u128>;
|
|
4313
|
+
readonly sampleCount: Compact<u32>;
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (478) */
|
|
4200
4317
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4201
4318
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4202
4319
|
readonly totalCpi: i128;
|
|
4203
4320
|
readonly measurementsCount: u32;
|
|
4204
4321
|
}
|
|
4205
4322
|
|
|
4206
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4323
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (482) */
|
|
4207
4324
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4208
4325
|
readonly frameId: Compact<u64>;
|
|
4209
4326
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4210
4327
|
readonly sampleCount: Compact<u32>;
|
|
4211
4328
|
}
|
|
4212
4329
|
|
|
4213
|
-
/** @name PalletPriceIndexError (
|
|
4330
|
+
/** @name PalletPriceIndexError (483) */
|
|
4214
4331
|
interface PalletPriceIndexError extends Enum {
|
|
4215
4332
|
readonly isNotAuthorizedOperator: boolean;
|
|
4216
4333
|
readonly isMissingValue: boolean;
|
|
4217
4334
|
readonly isPricesTooOld: boolean;
|
|
4218
4335
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
4336
|
+
readonly isInvalidEthereumPrices: boolean;
|
|
4219
4337
|
readonly type:
|
|
4220
4338
|
| 'NotAuthorizedOperator'
|
|
4221
4339
|
| 'MissingValue'
|
|
4222
4340
|
| 'PricesTooOld'
|
|
4223
|
-
| 'MaxPriceChangePerTickExceeded'
|
|
4341
|
+
| 'MaxPriceChangePerTickExceeded'
|
|
4342
|
+
| 'InvalidEthereumPrices';
|
|
4224
4343
|
}
|
|
4225
4344
|
|
|
4226
|
-
/** @name PalletGrandpaStoredState (
|
|
4345
|
+
/** @name PalletGrandpaStoredState (484) */
|
|
4227
4346
|
interface PalletGrandpaStoredState extends Enum {
|
|
4228
4347
|
readonly isLive: boolean;
|
|
4229
4348
|
readonly isPendingPause: boolean;
|
|
@@ -4240,7 +4359,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4240
4359
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4241
4360
|
}
|
|
4242
4361
|
|
|
4243
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4362
|
+
/** @name PalletGrandpaStoredPendingChange (485) */
|
|
4244
4363
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4245
4364
|
readonly scheduledAt: u32;
|
|
4246
4365
|
readonly delay: u32;
|
|
@@ -4248,7 +4367,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4248
4367
|
readonly forced: Option<u32>;
|
|
4249
4368
|
}
|
|
4250
4369
|
|
|
4251
|
-
/** @name PalletGrandpaError (
|
|
4370
|
+
/** @name PalletGrandpaError (487) */
|
|
4252
4371
|
interface PalletGrandpaError extends Enum {
|
|
4253
4372
|
readonly isPauseFailed: boolean;
|
|
4254
4373
|
readonly isResumeFailed: boolean;
|
|
@@ -4267,14 +4386,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4267
4386
|
| 'DuplicateOffenceReport';
|
|
4268
4387
|
}
|
|
4269
4388
|
|
|
4270
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4389
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (488) */
|
|
4271
4390
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4272
4391
|
readonly blockAuthorAccountId: AccountId32;
|
|
4273
4392
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4274
4393
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4275
4394
|
}
|
|
4276
4395
|
|
|
4277
|
-
/** @name PalletBlockSealError (
|
|
4396
|
+
/** @name PalletBlockSealError (490) */
|
|
4278
4397
|
interface PalletBlockSealError extends Enum {
|
|
4279
4398
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4280
4399
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4321,10 +4440,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4321
4440
|
| 'DuplicateVoteBlockAtTick';
|
|
4322
4441
|
}
|
|
4323
4442
|
|
|
4324
|
-
/** @name PalletBlockRewardsError (
|
|
4443
|
+
/** @name PalletBlockRewardsError (494) */
|
|
4325
4444
|
type PalletBlockRewardsError = Null;
|
|
4326
4445
|
|
|
4327
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4446
|
+
/** @name PalletMintPendingMintUtxo (495) */
|
|
4328
4447
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4329
4448
|
readonly utxoId: Compact<u64>;
|
|
4330
4449
|
readonly accountId: AccountId32;
|
|
@@ -4332,34 +4451,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4332
4451
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4333
4452
|
}
|
|
4334
4453
|
|
|
4335
|
-
/** @name PalletMintMintQueueCursor (
|
|
4454
|
+
/** @name PalletMintMintQueueCursor (497) */
|
|
4336
4455
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4337
4456
|
readonly payoutStartIndex: Compact<u64>;
|
|
4338
4457
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4339
4458
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4340
4459
|
}
|
|
4341
4460
|
|
|
4342
|
-
/** @name PalletMintMintAction (
|
|
4461
|
+
/** @name PalletMintMintAction (500) */
|
|
4343
4462
|
interface PalletMintMintAction extends Struct {
|
|
4344
4463
|
readonly argonBurned: u128;
|
|
4345
4464
|
readonly argonMinted: u128;
|
|
4346
4465
|
readonly bitcoinMinted: u128;
|
|
4347
4466
|
}
|
|
4348
4467
|
|
|
4349
|
-
/** @name PalletMintError (
|
|
4468
|
+
/** @name PalletMintError (502) */
|
|
4350
4469
|
interface PalletMintError extends Enum {
|
|
4351
4470
|
readonly isTooManyPendingMints: boolean;
|
|
4352
4471
|
readonly type: 'TooManyPendingMints';
|
|
4353
4472
|
}
|
|
4354
4473
|
|
|
4355
|
-
/** @name PalletBalancesBalanceLock (
|
|
4474
|
+
/** @name PalletBalancesBalanceLock (504) */
|
|
4356
4475
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4357
4476
|
readonly id: U8aFixed;
|
|
4358
4477
|
readonly amount: u128;
|
|
4359
4478
|
readonly reasons: PalletBalancesReasons;
|
|
4360
4479
|
}
|
|
4361
4480
|
|
|
4362
|
-
/** @name PalletBalancesReasons (
|
|
4481
|
+
/** @name PalletBalancesReasons (505) */
|
|
4363
4482
|
interface PalletBalancesReasons extends Enum {
|
|
4364
4483
|
readonly isFee: boolean;
|
|
4365
4484
|
readonly isMisc: boolean;
|
|
@@ -4367,38 +4486,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4367
4486
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4368
4487
|
}
|
|
4369
4488
|
|
|
4370
|
-
/** @name PalletBalancesReserveData (
|
|
4489
|
+
/** @name PalletBalancesReserveData (508) */
|
|
4371
4490
|
interface PalletBalancesReserveData extends Struct {
|
|
4372
4491
|
readonly id: U8aFixed;
|
|
4373
4492
|
readonly amount: u128;
|
|
4374
4493
|
}
|
|
4375
4494
|
|
|
4376
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4495
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (511) */
|
|
4377
4496
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4378
4497
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4379
4498
|
readonly amount: u128;
|
|
4380
4499
|
}
|
|
4381
4500
|
|
|
4382
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4501
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (514) */
|
|
4383
4502
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4384
4503
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4385
4504
|
readonly amount: u128;
|
|
4386
4505
|
}
|
|
4387
4506
|
|
|
4388
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4507
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (515) */
|
|
4389
4508
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4390
4509
|
readonly isBlockRewards: boolean;
|
|
4391
4510
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4392
4511
|
readonly type: 'BlockRewards';
|
|
4393
4512
|
}
|
|
4394
4513
|
|
|
4395
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4514
|
+
/** @name PalletBlockRewardsFreezeReason (516) */
|
|
4396
4515
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4397
4516
|
readonly isMaturationPeriod: boolean;
|
|
4398
4517
|
readonly type: 'MaturationPeriod';
|
|
4399
4518
|
}
|
|
4400
4519
|
|
|
4401
|
-
/** @name PalletBalancesError (
|
|
4520
|
+
/** @name PalletBalancesError (518) */
|
|
4402
4521
|
interface PalletBalancesError extends Enum {
|
|
4403
4522
|
readonly isVestingBalance: boolean;
|
|
4404
4523
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4427,7 +4546,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4427
4546
|
| 'DeltaZero';
|
|
4428
4547
|
}
|
|
4429
4548
|
|
|
4430
|
-
/** @name PalletTxPauseError (
|
|
4549
|
+
/** @name PalletTxPauseError (520) */
|
|
4431
4550
|
interface PalletTxPauseError extends Enum {
|
|
4432
4551
|
readonly isIsPaused: boolean;
|
|
4433
4552
|
readonly isIsUnpaused: boolean;
|
|
@@ -4436,69 +4555,72 @@ declare module '@polkadot/types/lookup' {
|
|
|
4436
4555
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4437
4556
|
}
|
|
4438
4557
|
|
|
4439
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4558
|
+
/** @name PalletTransactionPaymentReleases (521) */
|
|
4440
4559
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4441
4560
|
readonly isV1Ancient: boolean;
|
|
4442
4561
|
readonly isV2: boolean;
|
|
4443
4562
|
readonly type: 'V1Ancient' | 'V2';
|
|
4444
4563
|
}
|
|
4445
4564
|
|
|
4446
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4565
|
+
/** @name FrameSupportStorageNoDrop (522) */
|
|
4447
4566
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4448
4567
|
|
|
4449
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4568
|
+
/** @name FrameSupportTokensFungibleImbalance (523) */
|
|
4450
4569
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4451
4570
|
readonly amount: u128;
|
|
4452
4571
|
}
|
|
4453
4572
|
|
|
4454
|
-
/** @name PalletUtilityError (
|
|
4573
|
+
/** @name PalletUtilityError (524) */
|
|
4455
4574
|
interface PalletUtilityError extends Enum {
|
|
4456
4575
|
readonly isTooManyCalls: boolean;
|
|
4457
4576
|
readonly type: 'TooManyCalls';
|
|
4458
4577
|
}
|
|
4459
4578
|
|
|
4460
|
-
/** @name PalletSudoError (
|
|
4579
|
+
/** @name PalletSudoError (525) */
|
|
4461
4580
|
interface PalletSudoError extends Enum {
|
|
4462
4581
|
readonly isRequireSudo: boolean;
|
|
4463
4582
|
readonly type: 'RequireSudo';
|
|
4464
4583
|
}
|
|
4465
4584
|
|
|
4466
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4585
|
+
/** @name PalletTreasuryFrameVaultCapital (526) */
|
|
4467
4586
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4468
4587
|
readonly frameId: Compact<u64>;
|
|
4469
4588
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4470
4589
|
}
|
|
4471
4590
|
|
|
4472
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4591
|
+
/** @name PalletTreasuryVaultCapital (528) */
|
|
4473
4592
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4474
|
-
readonly
|
|
4593
|
+
readonly regularBondAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4594
|
+
readonly flexibleBondsEligible: Compact<u32>;
|
|
4595
|
+
readonly flexibleProrata: u128;
|
|
4475
4596
|
readonly eligibleBonds: Compact<u32>;
|
|
4476
4597
|
}
|
|
4477
4598
|
|
|
4478
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4599
|
+
/** @name PalletTreasuryBondLotAllocation (530) */
|
|
4479
4600
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4480
4601
|
readonly bondLotId: Compact<u64>;
|
|
4481
4602
|
readonly prorata: u128;
|
|
4482
4603
|
}
|
|
4483
4604
|
|
|
4484
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4605
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (535) */
|
|
4485
4606
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4486
4607
|
readonly frameId: Compact<u64>;
|
|
4487
4608
|
readonly totalBonds: Compact<u32>;
|
|
4488
4609
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4489
4610
|
}
|
|
4490
4611
|
|
|
4491
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4612
|
+
/** @name PalletTreasuryBondLotSummary (537) */
|
|
4492
4613
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4493
4614
|
readonly bondLotId: Compact<u64>;
|
|
4494
4615
|
readonly bonds: Compact<u32>;
|
|
4495
4616
|
}
|
|
4496
4617
|
|
|
4497
|
-
/** @name PalletTreasuryBondLot (
|
|
4618
|
+
/** @name PalletTreasuryBondLot (539) */
|
|
4498
4619
|
interface PalletTreasuryBondLot extends Struct {
|
|
4499
4620
|
readonly owner: AccountId32;
|
|
4500
4621
|
readonly program: PalletTreasuryBondProgram;
|
|
4501
4622
|
readonly bonds: Compact<u32>;
|
|
4623
|
+
readonly isFlexible: bool;
|
|
4502
4624
|
readonly createdFrameId: Compact<u64>;
|
|
4503
4625
|
readonly participatedFrames: Compact<u32>;
|
|
4504
4626
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4508,7 +4630,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4508
4630
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4509
4631
|
}
|
|
4510
4632
|
|
|
4511
|
-
/** @name PalletTreasuryBondProgram (
|
|
4633
|
+
/** @name PalletTreasuryBondProgram (540) */
|
|
4512
4634
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4513
4635
|
readonly isVault: boolean;
|
|
4514
4636
|
readonly asVault: {
|
|
@@ -4520,7 +4642,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4520
4642
|
readonly type: 'Vault' | 'Argonot';
|
|
4521
4643
|
}
|
|
4522
4644
|
|
|
4523
|
-
/** @name
|
|
4645
|
+
/** @name PalletTreasuryVaultBondState (543) */
|
|
4646
|
+
interface PalletTreasuryVaultBondState extends Struct {
|
|
4647
|
+
readonly regularBondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4648
|
+
readonly flexibleBonds: Compact<u32>;
|
|
4649
|
+
readonly reservedBondSpace: Compact<u32>;
|
|
4650
|
+
}
|
|
4651
|
+
|
|
4652
|
+
/** @name PalletTreasuryError (545) */
|
|
4524
4653
|
interface PalletTreasuryError extends Enum {
|
|
4525
4654
|
readonly isBondPurchaseRejected: boolean;
|
|
4526
4655
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4531,15 +4660,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4531
4660
|
readonly isBondLotNotFound: boolean;
|
|
4532
4661
|
readonly isNotBondLotOwner: boolean;
|
|
4533
4662
|
readonly isBondLotAlreadyReleasing: boolean;
|
|
4534
|
-
readonly
|
|
4663
|
+
readonly isInsufficientBondSpace: boolean;
|
|
4535
4664
|
readonly isActiveBondAmountBelowEncumberedBacking: boolean;
|
|
4536
4665
|
readonly isBonusApprovalWrongVault: boolean;
|
|
4537
4666
|
readonly isBonusApprovalWrongAccount: boolean;
|
|
4538
4667
|
readonly isBonusApprovalExpired: boolean;
|
|
4539
|
-
readonly
|
|
4668
|
+
readonly isBonusApprovalAlreadyUsed: boolean;
|
|
4540
4669
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4670
|
+
readonly isBonusApprovalExceedsProfitSharing: boolean;
|
|
4541
4671
|
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4542
4672
|
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4673
|
+
readonly isBondLotCannotBeFlexible: boolean;
|
|
4674
|
+
readonly isNoPermissions: boolean;
|
|
4543
4675
|
readonly type:
|
|
4544
4676
|
| 'BondPurchaseRejected'
|
|
4545
4677
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4550,29 +4682,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4550
4682
|
| 'BondLotNotFound'
|
|
4551
4683
|
| 'NotBondLotOwner'
|
|
4552
4684
|
| 'BondLotAlreadyReleasing'
|
|
4553
|
-
| '
|
|
4685
|
+
| 'InsufficientBondSpace'
|
|
4554
4686
|
| 'ActiveBondAmountBelowEncumberedBacking'
|
|
4555
4687
|
| 'BonusApprovalWrongVault'
|
|
4556
4688
|
| 'BonusApprovalWrongAccount'
|
|
4557
4689
|
| 'BonusApprovalExpired'
|
|
4558
|
-
| '
|
|
4690
|
+
| 'BonusApprovalAlreadyUsed'
|
|
4559
4691
|
| 'InvalidBonusApprovalSignature'
|
|
4692
|
+
| 'BonusApprovalExceedsProfitSharing'
|
|
4560
4693
|
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4561
|
-
| 'ArgonotBondPurchaseAboveCap'
|
|
4694
|
+
| 'ArgonotBondPurchaseAboveCap'
|
|
4695
|
+
| 'BondLotCannotBeFlexible'
|
|
4696
|
+
| 'NoPermissions';
|
|
4562
4697
|
}
|
|
4563
4698
|
|
|
4564
|
-
/** @name PalletFeeControlError (
|
|
4699
|
+
/** @name PalletFeeControlError (546) */
|
|
4565
4700
|
interface PalletFeeControlError extends Enum {
|
|
4566
4701
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4567
4702
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4568
4703
|
}
|
|
4569
4704
|
|
|
4570
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4705
|
+
/** @name PalletOperationalAccountsOperationalAccount (547) */
|
|
4571
4706
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4572
4707
|
readonly vaultAccount: AccountId32;
|
|
4573
4708
|
readonly miningAccount: AccountId32;
|
|
4574
4709
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4575
4710
|
readonly upstreamAccount: Option<AccountId32>;
|
|
4711
|
+
readonly name: Option<Bytes>;
|
|
4712
|
+
readonly lastNameChangeTick: Option<u64>;
|
|
4576
4713
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
4577
4714
|
readonly accountBitcoinAmount: u128;
|
|
4578
4715
|
readonly accountVaultBondAmount: u128;
|
|
@@ -4582,7 +4719,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4582
4719
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4583
4720
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4584
4721
|
readonly operationalCertificationsCount: Compact<u32>;
|
|
4585
|
-
readonly accessCodePending: bool;
|
|
4586
4722
|
readonly availableAccessCodes: Compact<u32>;
|
|
4587
4723
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4588
4724
|
readonly rewardsEarnedAmount: u128;
|
|
@@ -4590,13 +4726,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4590
4726
|
readonly isOperationallyCertified: bool;
|
|
4591
4727
|
}
|
|
4592
4728
|
|
|
4593
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4729
|
+
/** @name PalletOperationalAccountsRewardsConfig (548) */
|
|
4594
4730
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4595
4731
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
4732
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4597
4733
|
}
|
|
4598
4734
|
|
|
4599
|
-
/** @name PalletOperationalAccountsError (
|
|
4735
|
+
/** @name PalletOperationalAccountsError (549) */
|
|
4600
4736
|
interface PalletOperationalAccountsError extends Enum {
|
|
4601
4737
|
readonly isAlreadyRegistered: boolean;
|
|
4602
4738
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4609,8 +4745,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4609
4745
|
readonly isMinimumsNotMet: boolean;
|
|
4610
4746
|
readonly isCannotGrantAccessToSelf: boolean;
|
|
4611
4747
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4612
|
-
readonly isEncryptedServerTooLong: boolean;
|
|
4613
|
-
readonly isNotUpstreamOfDownstream: boolean;
|
|
4614
4748
|
readonly isNoPendingRewards: boolean;
|
|
4615
4749
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4616
4750
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4619,6 +4753,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4619
4753
|
readonly isAlreadyOperationallyCertified: boolean;
|
|
4620
4754
|
readonly isNotEligibleForActivation: boolean;
|
|
4621
4755
|
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4756
|
+
readonly isInvalidName: boolean;
|
|
4622
4757
|
readonly type:
|
|
4623
4758
|
| 'AlreadyRegistered'
|
|
4624
4759
|
| 'InvalidRegistrationSubmitter'
|
|
@@ -4631,8 +4766,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4631
4766
|
| 'MinimumsNotMet'
|
|
4632
4767
|
| 'CannotGrantAccessToSelf'
|
|
4633
4768
|
| 'NoProgressUpdateProvided'
|
|
4634
|
-
| 'EncryptedServerTooLong'
|
|
4635
|
-
| 'NotUpstreamOfDownstream'
|
|
4636
4769
|
| 'NoPendingRewards'
|
|
4637
4770
|
| 'RewardClaimBelowMinimum'
|
|
4638
4771
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4640,15 +4773,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
4640
4773
|
| 'TreasuryInsufficientFunds'
|
|
4641
4774
|
| 'AlreadyOperationallyCertified'
|
|
4642
4775
|
| 'NotEligibleForActivation'
|
|
4643
|
-
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4776
|
+
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4777
|
+
| 'InvalidName';
|
|
4644
4778
|
}
|
|
4645
4779
|
|
|
4646
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4780
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (550) */
|
|
4647
4781
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4648
4782
|
readonly slot: Compact<u64>;
|
|
4649
4783
|
}
|
|
4650
4784
|
|
|
4651
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4785
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (551) */
|
|
4652
4786
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4653
4787
|
readonly blockNumber: Compact<u64>;
|
|
4654
4788
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4658,44 +4792,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4658
4792
|
readonly receiptsRoot: H256;
|
|
4659
4793
|
}
|
|
4660
4794
|
|
|
4661
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4795
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (552) */
|
|
4662
4796
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4663
4797
|
readonly root: H256;
|
|
4664
4798
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4665
4799
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4666
4800
|
}
|
|
4667
4801
|
|
|
4668
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4802
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (554) */
|
|
4669
4803
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4670
4804
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4671
4805
|
}
|
|
4672
4806
|
|
|
4673
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4807
|
+
/** @name SnowbridgeAmclBls381Ecp (555) */
|
|
4674
4808
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4675
4809
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4676
4810
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4677
4811
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4678
4812
|
}
|
|
4679
4813
|
|
|
4680
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4814
|
+
/** @name SnowbridgeAmclBls381Fp (556) */
|
|
4681
4815
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4682
4816
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4683
4817
|
readonly xes: i32;
|
|
4684
4818
|
}
|
|
4685
4819
|
|
|
4686
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4820
|
+
/** @name SnowbridgeAmclBls381Big (557) */
|
|
4687
4821
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4688
4822
|
readonly w: Vec<i32>;
|
|
4689
4823
|
}
|
|
4690
4824
|
|
|
4691
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4825
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (561) */
|
|
4692
4826
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4693
4827
|
readonly isMainnet: boolean;
|
|
4694
4828
|
readonly isMinimal: boolean;
|
|
4695
4829
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4696
4830
|
}
|
|
4697
4831
|
|
|
4698
|
-
/** @name PalletEthereumVerifierError (
|
|
4832
|
+
/** @name PalletEthereumVerifierError (562) */
|
|
4699
4833
|
interface PalletEthereumVerifierError extends Enum {
|
|
4700
4834
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4701
4835
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4748,7 +4882,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4882
|
| 'Halted';
|
|
4749
4883
|
}
|
|
4750
4884
|
|
|
4751
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4885
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (563) */
|
|
4752
4886
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4753
4887
|
readonly microgonsIn: u128;
|
|
4754
4888
|
readonly microgonsOut: u128;
|
|
@@ -4760,21 +4894,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4760
4894
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4761
4895
|
}
|
|
4762
4896
|
|
|
4763
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4897
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (565) */
|
|
4764
4898
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4765
4899
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4766
4900
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4767
4901
|
readonly totalWeight: u128;
|
|
4768
4902
|
}
|
|
4769
4903
|
|
|
4770
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4904
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (567) */
|
|
4771
4905
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4772
4906
|
readonly accountId: AccountId32;
|
|
4773
4907
|
readonly signer: H160;
|
|
4774
4908
|
readonly weight: u128;
|
|
4775
4909
|
}
|
|
4776
4910
|
|
|
4777
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4911
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (572) */
|
|
4778
4912
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4779
4913
|
readonly approvingCouncilHash: H256;
|
|
4780
4914
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4786,7 +4920,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4786
4920
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4787
4921
|
}
|
|
4788
4922
|
|
|
4789
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4923
|
+
/** @name PalletCrosschainTransferMintingAuthority (577) */
|
|
4790
4924
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4791
4925
|
readonly accountId: AccountId32;
|
|
4792
4926
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4803,7 +4937,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4803
4937
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4804
4938
|
}
|
|
4805
4939
|
|
|
4806
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4940
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (578) */
|
|
4807
4941
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4808
4942
|
readonly isPendingActivation: boolean;
|
|
4809
4943
|
readonly isActive: boolean;
|
|
@@ -4811,7 +4945,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4811
4945
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4812
4946
|
}
|
|
4813
4947
|
|
|
4814
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4948
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (580) */
|
|
4815
4949
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4816
4950
|
readonly argonAccountId: AccountId32;
|
|
4817
4951
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4830,7 +4964,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4830
4964
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4831
4965
|
}
|
|
4832
4966
|
|
|
4833
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4967
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (582) */
|
|
4834
4968
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4835
4969
|
readonly microgonCollateral: u128;
|
|
4836
4970
|
readonly micronotCollateral: u128;
|
|
@@ -4838,27 +4972,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4838
4972
|
readonly signature: U8aFixed;
|
|
4839
4973
|
}
|
|
4840
4974
|
|
|
4841
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4975
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (586) */
|
|
4842
4976
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4843
4977
|
readonly isStarted: boolean;
|
|
4844
4978
|
readonly isReady: boolean;
|
|
4845
4979
|
readonly type: 'Started' | 'Ready';
|
|
4846
4980
|
}
|
|
4847
4981
|
|
|
4848
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4982
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (588) */
|
|
4849
4983
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4850
4984
|
readonly transferId: H256;
|
|
4851
4985
|
readonly remainingCollateral: u128;
|
|
4852
4986
|
readonly remainingMintingAuthorityTip: u128;
|
|
4853
4987
|
}
|
|
4854
4988
|
|
|
4855
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4989
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (590) */
|
|
4856
4990
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4857
4991
|
readonly argonCirculation: u128;
|
|
4858
4992
|
readonly argonotCirculation: u128;
|
|
4859
4993
|
}
|
|
4860
4994
|
|
|
4861
|
-
/** @name PalletCrosschainTransferError (
|
|
4995
|
+
/** @name PalletCrosschainTransferError (591) */
|
|
4862
4996
|
interface PalletCrosschainTransferError extends Enum {
|
|
4863
4997
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4864
4998
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4914,6 +5048,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4914
5048
|
readonly isInsufficientMintingAuthorityCollateral: boolean;
|
|
4915
5049
|
readonly isTransferCollateralIncrementTooSmall: boolean;
|
|
4916
5050
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
5051
|
+
readonly isCouncilSignerRotationPending: boolean;
|
|
4917
5052
|
readonly type:
|
|
4918
5053
|
| 'InvalidTransferToArgonActivity'
|
|
4919
5054
|
| 'NoGatewayProofBlocksProvided'
|
|
@@ -4968,48 +5103,60 @@ declare module '@polkadot/types/lookup' {
|
|
|
4968
5103
|
| 'InvalidTransferCollateralSignature'
|
|
4969
5104
|
| 'InsufficientMintingAuthorityCollateral'
|
|
4970
5105
|
| 'TransferCollateralIncrementTooSmall'
|
|
4971
|
-
| 'TooManyPendingTransferOuts'
|
|
5106
|
+
| 'TooManyPendingTransferOuts'
|
|
5107
|
+
| 'CouncilSignerRotationPending';
|
|
5108
|
+
}
|
|
5109
|
+
|
|
5110
|
+
/** @name PalletBootstrapError (593) */
|
|
5111
|
+
interface PalletBootstrapError extends Enum {
|
|
5112
|
+
readonly isEncryptedPayloadTooLong: boolean;
|
|
5113
|
+
readonly isInvalidRecoveryProof: boolean;
|
|
5114
|
+
readonly isEndpointOwnedByAnotherAccount: boolean;
|
|
5115
|
+
readonly type:
|
|
5116
|
+
| 'EncryptedPayloadTooLong'
|
|
5117
|
+
| 'InvalidRecoveryProof'
|
|
5118
|
+
| 'EndpointOwnedByAnotherAccount';
|
|
4972
5119
|
}
|
|
4973
5120
|
|
|
4974
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5121
|
+
/** @name FrameSystemExtensionsAuthorizeCall (596) */
|
|
4975
5122
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4976
5123
|
|
|
4977
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5124
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (597) */
|
|
4978
5125
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4979
5126
|
|
|
4980
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5127
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (598) */
|
|
4981
5128
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4982
5129
|
|
|
4983
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5130
|
+
/** @name FrameSystemExtensionsCheckTxVersion (599) */
|
|
4984
5131
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4985
5132
|
|
|
4986
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5133
|
+
/** @name FrameSystemExtensionsCheckGenesis (600) */
|
|
4987
5134
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4988
5135
|
|
|
4989
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5136
|
+
/** @name FrameSystemExtensionsCheckNonce (603) */
|
|
4990
5137
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4991
5138
|
|
|
4992
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5139
|
+
/** @name FrameSystemExtensionsCheckWeight (604) */
|
|
4993
5140
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4994
5141
|
|
|
4995
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5142
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (605) */
|
|
4996
5143
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4997
5144
|
|
|
4998
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5145
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (606) */
|
|
4999
5146
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5000
5147
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5001
5148
|
}
|
|
5002
5149
|
|
|
5003
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5150
|
+
/** @name FrameMetadataHashExtensionMode (607) */
|
|
5004
5151
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5005
5152
|
readonly isDisabled: boolean;
|
|
5006
5153
|
readonly isEnabled: boolean;
|
|
5007
5154
|
readonly type: 'Disabled' | 'Enabled';
|
|
5008
5155
|
}
|
|
5009
5156
|
|
|
5010
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5157
|
+
/** @name FrameSystemExtensionsWeightReclaim (608) */
|
|
5011
5158
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5012
5159
|
|
|
5013
|
-
/** @name ArgonRuntimeRuntime (
|
|
5160
|
+
/** @name ArgonRuntimeRuntime (610) */
|
|
5014
5161
|
type ArgonRuntimeRuntime = Null;
|
|
5015
5162
|
} // declare module
|