@argonprotocol/mainchain 1.4.10-dev.d386c4ce → 1.4.10-dev.f355ccc1
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 +3857 -262
- package/browser/index.js +52 -16
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +75 -39
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +3857 -262
- package/lib/index.d.ts +3857 -262
- package/lib/index.js +52 -16
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
- package/src/interfaces/augment-api-consts.ts +4 -13
- package/src/interfaces/augment-api-errors.ts +33 -5
- package/src/interfaces/augment-api-query.ts +22 -10
- package/src/interfaces/augment-api-tx.ts +9 -29
- package/src/interfaces/lookup.ts +211 -205
- package/src/interfaces/registry.ts +2 -2
- package/src/interfaces/types-lookup.ts +223 -212
package/src/interfaces/lookup.ts
CHANGED
|
@@ -2189,9 +2189,7 @@ export default {
|
|
|
2189
2189
|
set_delegate_account: {
|
|
2190
2190
|
delegateAccountId: 'Option<AccountId32>',
|
|
2191
2191
|
},
|
|
2192
|
-
|
|
2193
|
-
name: 'Option<Bytes>',
|
|
2194
|
-
},
|
|
2192
|
+
__Unused7: 'Null',
|
|
2195
2193
|
set_committed_argonots: {
|
|
2196
2194
|
amount: 'Compact<u128>',
|
|
2197
2195
|
},
|
|
@@ -2206,7 +2204,6 @@ export default {
|
|
|
2206
2204
|
**/
|
|
2207
2205
|
PalletVaultsVaultConfig: {
|
|
2208
2206
|
terms: 'ArgonPrimitivesVaultVaultTerms',
|
|
2209
|
-
name: 'Option<Bytes>',
|
|
2210
2207
|
delegateAccountId: 'Option<AccountId32>',
|
|
2211
2208
|
securitization: 'Compact<u128>',
|
|
2212
2209
|
bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
|
|
@@ -2222,11 +2219,11 @@ export default {
|
|
|
2222
2219
|
treasuryBonusProfitSharing: 'Compact<Permill>',
|
|
2223
2220
|
},
|
|
2224
2221
|
/**
|
|
2225
|
-
*
|
|
2222
|
+
* Lookup214: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
2226
2223
|
**/
|
|
2227
2224
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
|
|
2228
2225
|
/**
|
|
2229
|
-
*
|
|
2226
|
+
* Lookup216: pallet_bitcoin_locks::pallet::Call<T>
|
|
2230
2227
|
**/
|
|
2231
2228
|
PalletBitcoinLocksCall: {
|
|
2232
2229
|
_enum: {
|
|
@@ -2263,14 +2260,7 @@ export default {
|
|
|
2263
2260
|
signature: 'Bytes',
|
|
2264
2261
|
},
|
|
2265
2262
|
__Unused7: 'Null',
|
|
2266
|
-
|
|
2267
|
-
accountId: 'AccountId32',
|
|
2268
|
-
vaultId: 'u32',
|
|
2269
|
-
satoshis: 'Compact<u64>',
|
|
2270
|
-
bitcoinPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
2271
|
-
options: 'Option<PalletBitcoinLocksLockOptions>',
|
|
2272
|
-
backfillSecuritizationToUnreserve: 'Compact<u128>',
|
|
2273
|
-
},
|
|
2263
|
+
__Unused8: 'Null',
|
|
2274
2264
|
increase_securitization: {
|
|
2275
2265
|
utxoId: 'u64',
|
|
2276
2266
|
newSatoshis: 'Compact<u64>',
|
|
@@ -2282,21 +2272,49 @@ export default {
|
|
|
2282
2272
|
},
|
|
2283
2273
|
},
|
|
2284
2274
|
/**
|
|
2285
|
-
*
|
|
2275
|
+
* Lookup217: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
2286
2276
|
**/
|
|
2287
2277
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
|
|
2288
2278
|
/**
|
|
2289
|
-
*
|
|
2279
|
+
* Lookup220: pallet_bitcoin_locks::pallet::LockOptions<T>
|
|
2290
2280
|
**/
|
|
2291
2281
|
PalletBitcoinLocksLockOptions: {
|
|
2292
2282
|
_enum: {
|
|
2293
2283
|
V1: {
|
|
2294
2284
|
microgonsAtTargetPerBtc: 'Option<u128>',
|
|
2295
2285
|
},
|
|
2286
|
+
V2: {
|
|
2287
|
+
microgonsAtTargetPerBtc: 'Option<u128>',
|
|
2288
|
+
feeCoupon: 'Option<PalletBitcoinLocksFeeCoupon>',
|
|
2289
|
+
},
|
|
2290
|
+
},
|
|
2291
|
+
},
|
|
2292
|
+
/**
|
|
2293
|
+
* Lookup222: pallet_bitcoin_locks::pallet::FeeCoupon<T>
|
|
2294
|
+
**/
|
|
2295
|
+
PalletBitcoinLocksFeeCoupon: {
|
|
2296
|
+
vaultId: 'Compact<u32>',
|
|
2297
|
+
genesisHash: 'H256',
|
|
2298
|
+
beneficiary: 'AccountId32',
|
|
2299
|
+
feeDiscount: 'Compact<u128>',
|
|
2300
|
+
backfillSecuritizationToUnreserve: 'Compact<u128>',
|
|
2301
|
+
expiresAtFrame: 'Compact<u64>',
|
|
2302
|
+
nonce: 'Compact<u64>',
|
|
2303
|
+
signature: 'SpRuntimeMultiSignature',
|
|
2304
|
+
},
|
|
2305
|
+
/**
|
|
2306
|
+
* Lookup223: sp_runtime::MultiSignature
|
|
2307
|
+
**/
|
|
2308
|
+
SpRuntimeMultiSignature: {
|
|
2309
|
+
_enum: {
|
|
2310
|
+
Ed25519: '[u8;64]',
|
|
2311
|
+
Sr25519: '[u8;64]',
|
|
2312
|
+
Ecdsa: '[u8;65]',
|
|
2313
|
+
Eth: '[u8;65]',
|
|
2296
2314
|
},
|
|
2297
2315
|
},
|
|
2298
2316
|
/**
|
|
2299
|
-
*
|
|
2317
|
+
* Lookup228: pallet_notaries::pallet::Call<T>
|
|
2300
2318
|
**/
|
|
2301
2319
|
PalletNotariesCall: {
|
|
2302
2320
|
_enum: {
|
|
@@ -2314,7 +2332,7 @@ export default {
|
|
|
2314
2332
|
},
|
|
2315
2333
|
},
|
|
2316
2334
|
/**
|
|
2317
|
-
*
|
|
2335
|
+
* Lookup229: pallet_notebook::pallet::Call<T>
|
|
2318
2336
|
**/
|
|
2319
2337
|
PalletNotebookCall: {
|
|
2320
2338
|
_enum: {
|
|
@@ -2327,14 +2345,14 @@ export default {
|
|
|
2327
2345
|
},
|
|
2328
2346
|
},
|
|
2329
2347
|
/**
|
|
2330
|
-
*
|
|
2348
|
+
* Lookup231: argon_primitives::notebook::SignedNotebookHeader
|
|
2331
2349
|
**/
|
|
2332
2350
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
2333
2351
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
2334
2352
|
signature: '[u8;64]',
|
|
2335
2353
|
},
|
|
2336
2354
|
/**
|
|
2337
|
-
*
|
|
2355
|
+
* Lookup232: argon_primitives::notebook::NotebookHeader
|
|
2338
2356
|
**/
|
|
2339
2357
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
2340
2358
|
version: 'Compact<u16>',
|
|
@@ -2354,7 +2372,7 @@ export default {
|
|
|
2354
2372
|
domains: 'Vec<(H256,AccountId32)>',
|
|
2355
2373
|
},
|
|
2356
2374
|
/**
|
|
2357
|
-
*
|
|
2375
|
+
* Lookup235: argon_primitives::notebook::ChainTransfer
|
|
2358
2376
|
**/
|
|
2359
2377
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
2360
2378
|
_enum: {
|
|
@@ -2368,14 +2386,14 @@ export default {
|
|
|
2368
2386
|
},
|
|
2369
2387
|
},
|
|
2370
2388
|
/**
|
|
2371
|
-
*
|
|
2389
|
+
* Lookup238: argon_primitives::balance_change::AccountOrigin
|
|
2372
2390
|
**/
|
|
2373
2391
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
2374
2392
|
notebookNumber: 'Compact<u32>',
|
|
2375
2393
|
accountUid: 'Compact<u32>',
|
|
2376
2394
|
},
|
|
2377
2395
|
/**
|
|
2378
|
-
*
|
|
2396
|
+
* Lookup244: pallet_localchain_transfer::pallet::Call<T>
|
|
2379
2397
|
**/
|
|
2380
2398
|
PalletLocalchainTransferCall: {
|
|
2381
2399
|
_enum: {
|
|
@@ -2386,7 +2404,7 @@ export default {
|
|
|
2386
2404
|
},
|
|
2387
2405
|
},
|
|
2388
2406
|
/**
|
|
2389
|
-
*
|
|
2407
|
+
* Lookup245: pallet_block_seal_spec::pallet::Call<T>
|
|
2390
2408
|
**/
|
|
2391
2409
|
PalletBlockSealSpecCall: {
|
|
2392
2410
|
_enum: {
|
|
@@ -2397,7 +2415,7 @@ export default {
|
|
|
2397
2415
|
},
|
|
2398
2416
|
},
|
|
2399
2417
|
/**
|
|
2400
|
-
*
|
|
2418
|
+
* Lookup246: pallet_domains::pallet::Call<T>
|
|
2401
2419
|
**/
|
|
2402
2420
|
PalletDomainsCall: {
|
|
2403
2421
|
_enum: {
|
|
@@ -2408,7 +2426,7 @@ export default {
|
|
|
2408
2426
|
},
|
|
2409
2427
|
},
|
|
2410
2428
|
/**
|
|
2411
|
-
*
|
|
2429
|
+
* Lookup247: pallet_price_index::pallet::Call<T>
|
|
2412
2430
|
**/
|
|
2413
2431
|
PalletPriceIndexCall: {
|
|
2414
2432
|
_enum: {
|
|
@@ -2422,7 +2440,7 @@ export default {
|
|
|
2422
2440
|
},
|
|
2423
2441
|
},
|
|
2424
2442
|
/**
|
|
2425
|
-
*
|
|
2443
|
+
* Lookup248: pallet_price_index::PriceIndex
|
|
2426
2444
|
**/
|
|
2427
2445
|
PalletPriceIndexPriceIndex: {
|
|
2428
2446
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2433,7 +2451,7 @@ export default {
|
|
|
2433
2451
|
tick: 'Compact<u64>',
|
|
2434
2452
|
},
|
|
2435
2453
|
/**
|
|
2436
|
-
*
|
|
2454
|
+
* Lookup250: pallet_price_index::EthereumPriceIndex
|
|
2437
2455
|
**/
|
|
2438
2456
|
PalletPriceIndexEthereumPriceIndex: {
|
|
2439
2457
|
ethereumUsdPrice: 'u128',
|
|
@@ -2441,7 +2459,7 @@ export default {
|
|
|
2441
2459
|
tick: 'Compact<u64>',
|
|
2442
2460
|
},
|
|
2443
2461
|
/**
|
|
2444
|
-
*
|
|
2462
|
+
* Lookup251: pallet_grandpa::pallet::Call<T>
|
|
2445
2463
|
**/
|
|
2446
2464
|
PalletGrandpaCall: {
|
|
2447
2465
|
_enum: {
|
|
@@ -2460,14 +2478,14 @@ export default {
|
|
|
2460
2478
|
},
|
|
2461
2479
|
},
|
|
2462
2480
|
/**
|
|
2463
|
-
*
|
|
2481
|
+
* Lookup252: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2464
2482
|
**/
|
|
2465
2483
|
SpConsensusGrandpaEquivocationProof: {
|
|
2466
2484
|
setId: 'u64',
|
|
2467
2485
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2468
2486
|
},
|
|
2469
2487
|
/**
|
|
2470
|
-
*
|
|
2488
|
+
* Lookup253: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2471
2489
|
**/
|
|
2472
2490
|
SpConsensusGrandpaEquivocation: {
|
|
2473
2491
|
_enum: {
|
|
@@ -2476,7 +2494,7 @@ export default {
|
|
|
2476
2494
|
},
|
|
2477
2495
|
},
|
|
2478
2496
|
/**
|
|
2479
|
-
*
|
|
2497
|
+
* Lookup254: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2480
2498
|
**/
|
|
2481
2499
|
FinalityGrandpaEquivocationPrevote: {
|
|
2482
2500
|
roundNumber: 'u64',
|
|
@@ -2485,18 +2503,18 @@ export default {
|
|
|
2485
2503
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2486
2504
|
},
|
|
2487
2505
|
/**
|
|
2488
|
-
*
|
|
2506
|
+
* Lookup255: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2489
2507
|
**/
|
|
2490
2508
|
FinalityGrandpaPrevote: {
|
|
2491
2509
|
targetHash: 'H256',
|
|
2492
2510
|
targetNumber: 'u32',
|
|
2493
2511
|
},
|
|
2494
2512
|
/**
|
|
2495
|
-
*
|
|
2513
|
+
* Lookup256: sp_consensus_grandpa::app::Signature
|
|
2496
2514
|
**/
|
|
2497
2515
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2498
2516
|
/**
|
|
2499
|
-
*
|
|
2517
|
+
* Lookup258: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2500
2518
|
**/
|
|
2501
2519
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2502
2520
|
roundNumber: 'u64',
|
|
@@ -2505,18 +2523,18 @@ export default {
|
|
|
2505
2523
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2506
2524
|
},
|
|
2507
2525
|
/**
|
|
2508
|
-
*
|
|
2526
|
+
* Lookup259: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2509
2527
|
**/
|
|
2510
2528
|
FinalityGrandpaPrecommit: {
|
|
2511
2529
|
targetHash: 'H256',
|
|
2512
2530
|
targetNumber: 'u32',
|
|
2513
2531
|
},
|
|
2514
2532
|
/**
|
|
2515
|
-
*
|
|
2533
|
+
* Lookup261: sp_core::Void
|
|
2516
2534
|
**/
|
|
2517
2535
|
SpCoreVoid: 'Null',
|
|
2518
2536
|
/**
|
|
2519
|
-
*
|
|
2537
|
+
* Lookup262: pallet_block_seal::pallet::Call<T>
|
|
2520
2538
|
**/
|
|
2521
2539
|
PalletBlockSealCall: {
|
|
2522
2540
|
_enum: {
|
|
@@ -2526,7 +2544,7 @@ export default {
|
|
|
2526
2544
|
},
|
|
2527
2545
|
},
|
|
2528
2546
|
/**
|
|
2529
|
-
*
|
|
2547
|
+
* Lookup263: argon_primitives::inherents::BlockSealInherent
|
|
2530
2548
|
**/
|
|
2531
2549
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2532
2550
|
_enum: {
|
|
@@ -2542,7 +2560,7 @@ export default {
|
|
|
2542
2560
|
},
|
|
2543
2561
|
},
|
|
2544
2562
|
/**
|
|
2545
|
-
*
|
|
2563
|
+
* Lookup264: argon_primitives::balance_change::MerkleProof
|
|
2546
2564
|
**/
|
|
2547
2565
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2548
2566
|
proof: 'Vec<H256>',
|
|
@@ -2550,7 +2568,7 @@ export default {
|
|
|
2550
2568
|
leafIndex: 'Compact<u32>',
|
|
2551
2569
|
},
|
|
2552
2570
|
/**
|
|
2553
|
-
*
|
|
2571
|
+
* Lookup266: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2554
2572
|
**/
|
|
2555
2573
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2556
2574
|
accountId: 'AccountId32',
|
|
@@ -2561,17 +2579,6 @@ export default {
|
|
|
2561
2579
|
blockRewardsAccountId: 'AccountId32',
|
|
2562
2580
|
tick: 'Compact<u64>',
|
|
2563
2581
|
},
|
|
2564
|
-
/**
|
|
2565
|
-
* Lookup265: sp_runtime::MultiSignature
|
|
2566
|
-
**/
|
|
2567
|
-
SpRuntimeMultiSignature: {
|
|
2568
|
-
_enum: {
|
|
2569
|
-
Ed25519: '[u8;64]',
|
|
2570
|
-
Sr25519: '[u8;64]',
|
|
2571
|
-
Ecdsa: '[u8;65]',
|
|
2572
|
-
Eth: '[u8;65]',
|
|
2573
|
-
},
|
|
2574
|
-
},
|
|
2575
2582
|
/**
|
|
2576
2583
|
* Lookup267: pallet_block_rewards::pallet::Call<T>
|
|
2577
2584
|
**/
|
|
@@ -2762,7 +2769,9 @@ export default {
|
|
|
2762
2769
|
register: {
|
|
2763
2770
|
registration: 'PalletOperationalAccountsRegistration',
|
|
2764
2771
|
},
|
|
2765
|
-
|
|
2772
|
+
set_name: {
|
|
2773
|
+
name: 'Option<Bytes>',
|
|
2774
|
+
},
|
|
2766
2775
|
set_reward_config: {
|
|
2767
2776
|
operationalCertificationReward: 'u128',
|
|
2768
2777
|
operationalCertificationBonusReward: 'u128',
|
|
@@ -2818,7 +2827,7 @@ export default {
|
|
|
2818
2827
|
signature: 'SpRuntimeMultiSignature',
|
|
2819
2828
|
},
|
|
2820
2829
|
/**
|
|
2821
|
-
*
|
|
2830
|
+
* Lookup288: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2822
2831
|
**/
|
|
2823
2832
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2824
2833
|
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
@@ -2829,7 +2838,7 @@ export default {
|
|
|
2829
2838
|
miningSeatCount: 'Option<u32>',
|
|
2830
2839
|
},
|
|
2831
2840
|
/**
|
|
2832
|
-
*
|
|
2841
|
+
* Lookup290: pallet_ethereum_verifier::pallet::Call<T>
|
|
2833
2842
|
**/
|
|
2834
2843
|
PalletEthereumVerifierCall: {
|
|
2835
2844
|
_enum: {
|
|
@@ -2851,7 +2860,7 @@ export default {
|
|
|
2851
2860
|
},
|
|
2852
2861
|
},
|
|
2853
2862
|
/**
|
|
2854
|
-
*
|
|
2863
|
+
* Lookup291: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2855
2864
|
**/
|
|
2856
2865
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2857
2866
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2861,7 +2870,7 @@ export default {
|
|
|
2861
2870
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2862
2871
|
},
|
|
2863
2872
|
/**
|
|
2864
|
-
*
|
|
2873
|
+
* Lookup292: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2865
2874
|
**/
|
|
2866
2875
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2867
2876
|
slot: 'u64',
|
|
@@ -2871,25 +2880,25 @@ export default {
|
|
|
2871
2880
|
bodyRoot: 'H256',
|
|
2872
2881
|
},
|
|
2873
2882
|
/**
|
|
2874
|
-
*
|
|
2883
|
+
* Lookup293: pallet_ethereum_verifier::types::SyncCommittee
|
|
2875
2884
|
**/
|
|
2876
2885
|
PalletEthereumVerifierSyncCommittee: {
|
|
2877
2886
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2878
2887
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2879
2888
|
},
|
|
2880
2889
|
/**
|
|
2881
|
-
*
|
|
2890
|
+
* Lookup295: snowbridge_beacon_primitives::types::PublicKey
|
|
2882
2891
|
**/
|
|
2883
2892
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2884
2893
|
/**
|
|
2885
|
-
*
|
|
2894
|
+
* Lookup299: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2886
2895
|
**/
|
|
2887
2896
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2888
2897
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2889
2898
|
executionBranch: 'Vec<H256>',
|
|
2890
2899
|
},
|
|
2891
2900
|
/**
|
|
2892
|
-
*
|
|
2901
|
+
* Lookup300: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2893
2902
|
**/
|
|
2894
2903
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2895
2904
|
_enum: {
|
|
@@ -2898,7 +2907,7 @@ export default {
|
|
|
2898
2907
|
},
|
|
2899
2908
|
},
|
|
2900
2909
|
/**
|
|
2901
|
-
*
|
|
2910
|
+
* Lookup301: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2902
2911
|
**/
|
|
2903
2912
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2904
2913
|
parentHash: 'H256',
|
|
@@ -2918,7 +2927,7 @@ export default {
|
|
|
2918
2927
|
withdrawalsRoot: 'H256',
|
|
2919
2928
|
},
|
|
2920
2929
|
/**
|
|
2921
|
-
*
|
|
2930
|
+
* Lookup302: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2922
2931
|
**/
|
|
2923
2932
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2924
2933
|
parentHash: 'H256',
|
|
@@ -2940,7 +2949,7 @@ export default {
|
|
|
2940
2949
|
excessBlobGas: 'u64',
|
|
2941
2950
|
},
|
|
2942
2951
|
/**
|
|
2943
|
-
*
|
|
2952
|
+
* Lookup303: pallet_ethereum_verifier::types::ForkVersions
|
|
2944
2953
|
**/
|
|
2945
2954
|
PalletEthereumVerifierForkVersions: {
|
|
2946
2955
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2952,14 +2961,14 @@ export default {
|
|
|
2952
2961
|
fulu: 'PalletEthereumVerifierFork',
|
|
2953
2962
|
},
|
|
2954
2963
|
/**
|
|
2955
|
-
*
|
|
2964
|
+
* Lookup304: pallet_ethereum_verifier::types::Fork
|
|
2956
2965
|
**/
|
|
2957
2966
|
PalletEthereumVerifierFork: {
|
|
2958
2967
|
version: '[u8;4]',
|
|
2959
2968
|
epoch: 'Compact<u64>',
|
|
2960
2969
|
},
|
|
2961
2970
|
/**
|
|
2962
|
-
*
|
|
2971
|
+
* Lookup305: pallet_ethereum_verifier::types::Update
|
|
2963
2972
|
**/
|
|
2964
2973
|
PalletEthereumVerifierUpdate: {
|
|
2965
2974
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2971,25 +2980,25 @@ export default {
|
|
|
2971
2980
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2972
2981
|
},
|
|
2973
2982
|
/**
|
|
2974
|
-
*
|
|
2983
|
+
* Lookup306: pallet_ethereum_verifier::types::SyncAggregate
|
|
2975
2984
|
**/
|
|
2976
2985
|
PalletEthereumVerifierSyncAggregate: {
|
|
2977
2986
|
syncCommitteeBits: 'Bytes',
|
|
2978
2987
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2979
2988
|
},
|
|
2980
2989
|
/**
|
|
2981
|
-
*
|
|
2990
|
+
* Lookup308: snowbridge_beacon_primitives::types::Signature
|
|
2982
2991
|
**/
|
|
2983
2992
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2984
2993
|
/**
|
|
2985
|
-
*
|
|
2994
|
+
* Lookup311: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2986
2995
|
**/
|
|
2987
2996
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2988
2997
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2989
2998
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2990
2999
|
},
|
|
2991
3000
|
/**
|
|
2992
|
-
*
|
|
3001
|
+
* Lookup312: pallet_crosschain_transfer::pallet::Call<T>
|
|
2993
3002
|
**/
|
|
2994
3003
|
PalletCrosschainTransferCall: {
|
|
2995
3004
|
_enum: {
|
|
@@ -3055,7 +3064,7 @@ export default {
|
|
|
3055
3064
|
},
|
|
3056
3065
|
},
|
|
3057
3066
|
/**
|
|
3058
|
-
*
|
|
3067
|
+
* Lookup313: pallet_crosschain_transfer::pallet::ChainConfig
|
|
3059
3068
|
**/
|
|
3060
3069
|
PalletCrosschainTransferChainConfig: {
|
|
3061
3070
|
_enum: {
|
|
@@ -3068,7 +3077,7 @@ export default {
|
|
|
3068
3077
|
},
|
|
3069
3078
|
},
|
|
3070
3079
|
/**
|
|
3071
|
-
*
|
|
3080
|
+
* Lookup315: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3072
3081
|
**/
|
|
3073
3082
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3074
3083
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3077,27 +3086,27 @@ export default {
|
|
|
3077
3086
|
estimatedMicrogonsPerEth: 'u128',
|
|
3078
3087
|
},
|
|
3079
3088
|
/**
|
|
3080
|
-
*
|
|
3089
|
+
* Lookup318: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3081
3090
|
**/
|
|
3082
3091
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3083
3092
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3084
3093
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3085
3094
|
},
|
|
3086
3095
|
/**
|
|
3087
|
-
*
|
|
3096
|
+
* Lookup319: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3088
3097
|
**/
|
|
3089
3098
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3090
3099
|
anchorBlockHash: 'H256',
|
|
3091
3100
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3092
3101
|
},
|
|
3093
3102
|
/**
|
|
3094
|
-
*
|
|
3103
|
+
* Lookup321: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3095
3104
|
**/
|
|
3096
3105
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3097
3106
|
rlp: 'Bytes',
|
|
3098
3107
|
},
|
|
3099
3108
|
/**
|
|
3100
|
-
*
|
|
3109
|
+
* Lookup325: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3101
3110
|
**/
|
|
3102
3111
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3103
3112
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3105,28 +3114,28 @@ export default {
|
|
|
3105
3114
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3106
3115
|
},
|
|
3107
3116
|
/**
|
|
3108
|
-
*
|
|
3117
|
+
* Lookup326: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3109
3118
|
**/
|
|
3110
3119
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3111
3120
|
nodes: 'Vec<Bytes>',
|
|
3112
3121
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3113
3122
|
},
|
|
3114
3123
|
/**
|
|
3115
|
-
*
|
|
3124
|
+
* Lookup330: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3116
3125
|
**/
|
|
3117
3126
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3118
3127
|
transactionIndex: 'Compact<u64>',
|
|
3119
3128
|
nodeIndexes: 'Vec<u16>',
|
|
3120
3129
|
},
|
|
3121
3130
|
/**
|
|
3122
|
-
*
|
|
3131
|
+
* Lookup335: argon_primitives::ethereum::EthereumReceiptLog
|
|
3123
3132
|
**/
|
|
3124
3133
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3125
3134
|
transactionIndex: 'Compact<u64>',
|
|
3126
3135
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3127
3136
|
},
|
|
3128
3137
|
/**
|
|
3129
|
-
*
|
|
3138
|
+
* Lookup336: argon_primitives::ethereum::EthereumLog
|
|
3130
3139
|
**/
|
|
3131
3140
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3132
3141
|
address: 'H160',
|
|
@@ -3134,7 +3143,7 @@ export default {
|
|
|
3134
3143
|
data: 'Bytes',
|
|
3135
3144
|
},
|
|
3136
3145
|
/**
|
|
3137
|
-
*
|
|
3146
|
+
* Lookup341: pallet_bootstrap::pallet::Call<T>
|
|
3138
3147
|
**/
|
|
3139
3148
|
PalletBootstrapCall: {
|
|
3140
3149
|
_enum: {
|
|
@@ -3150,13 +3159,13 @@ export default {
|
|
|
3150
3159
|
},
|
|
3151
3160
|
},
|
|
3152
3161
|
/**
|
|
3153
|
-
*
|
|
3162
|
+
* Lookup342: pallet_bootstrap::pallet::RecoveryProof
|
|
3154
3163
|
**/
|
|
3155
3164
|
PalletBootstrapRecoveryProof: {
|
|
3156
3165
|
signature: '[u8;64]',
|
|
3157
3166
|
},
|
|
3158
3167
|
/**
|
|
3159
|
-
*
|
|
3168
|
+
* Lookup344: pallet_multisig::pallet::Error<T>
|
|
3160
3169
|
**/
|
|
3161
3170
|
PalletMultisigError: {
|
|
3162
3171
|
_enum: [
|
|
@@ -3177,7 +3186,7 @@ export default {
|
|
|
3177
3186
|
],
|
|
3178
3187
|
},
|
|
3179
3188
|
/**
|
|
3180
|
-
*
|
|
3189
|
+
* Lookup347: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3181
3190
|
**/
|
|
3182
3191
|
PalletProxyProxyDefinition: {
|
|
3183
3192
|
delegate: 'AccountId32',
|
|
@@ -3185,7 +3194,7 @@ export default {
|
|
|
3185
3194
|
delay: 'u32',
|
|
3186
3195
|
},
|
|
3187
3196
|
/**
|
|
3188
|
-
*
|
|
3197
|
+
* Lookup351: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3189
3198
|
**/
|
|
3190
3199
|
PalletProxyAnnouncement: {
|
|
3191
3200
|
real: 'AccountId32',
|
|
@@ -3193,7 +3202,7 @@ export default {
|
|
|
3193
3202
|
height: 'u32',
|
|
3194
3203
|
},
|
|
3195
3204
|
/**
|
|
3196
|
-
*
|
|
3205
|
+
* Lookup353: pallet_proxy::pallet::Error<T>
|
|
3197
3206
|
**/
|
|
3198
3207
|
PalletProxyError: {
|
|
3199
3208
|
_enum: [
|
|
@@ -3208,18 +3217,18 @@ export default {
|
|
|
3208
3217
|
],
|
|
3209
3218
|
},
|
|
3210
3219
|
/**
|
|
3211
|
-
*
|
|
3220
|
+
* Lookup354: argon_primitives::tick::Ticker
|
|
3212
3221
|
**/
|
|
3213
3222
|
ArgonPrimitivesTickTicker: {
|
|
3214
3223
|
tickDurationMillis: 'Compact<u64>',
|
|
3215
3224
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3216
3225
|
},
|
|
3217
3226
|
/**
|
|
3218
|
-
*
|
|
3227
|
+
* Lookup356: pallet_ticks::pallet::Error<T>
|
|
3219
3228
|
**/
|
|
3220
3229
|
PalletTicksError: 'Null',
|
|
3221
3230
|
/**
|
|
3222
|
-
*
|
|
3231
|
+
* Lookup359: pallet_mining_slot::MinerNonceScoring<T>
|
|
3223
3232
|
**/
|
|
3224
3233
|
PalletMiningSlotMinerNonceScoring: {
|
|
3225
3234
|
nonce: 'U256',
|
|
@@ -3228,7 +3237,7 @@ export default {
|
|
|
3228
3237
|
frameStartBlocksWonSurplus: 'i16',
|
|
3229
3238
|
},
|
|
3230
3239
|
/**
|
|
3231
|
-
*
|
|
3240
|
+
* Lookup371: argon_primitives::block_seal::MiningBidStats
|
|
3232
3241
|
**/
|
|
3233
3242
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3234
3243
|
bidsCount: 'u32',
|
|
@@ -3237,7 +3246,7 @@ export default {
|
|
|
3237
3246
|
bidAmountSum: 'u128',
|
|
3238
3247
|
},
|
|
3239
3248
|
/**
|
|
3240
|
-
*
|
|
3249
|
+
* Lookup375: argon_primitives::block_seal::MiningSlotConfig
|
|
3241
3250
|
**/
|
|
3242
3251
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3243
3252
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3245,7 +3254,7 @@ export default {
|
|
|
3245
3254
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3246
3255
|
},
|
|
3247
3256
|
/**
|
|
3248
|
-
*
|
|
3257
|
+
* Lookup385: pallet_mining_slot::pallet::Error<T>
|
|
3249
3258
|
**/
|
|
3250
3259
|
PalletMiningSlotError: {
|
|
3251
3260
|
_enum: [
|
|
@@ -3263,7 +3272,7 @@ export default {
|
|
|
3263
3272
|
],
|
|
3264
3273
|
},
|
|
3265
3274
|
/**
|
|
3266
|
-
*
|
|
3275
|
+
* Lookup386: argon_primitives::bitcoin::UtxoValue
|
|
3267
3276
|
**/
|
|
3268
3277
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3269
3278
|
utxoId: 'u64',
|
|
@@ -3273,7 +3282,7 @@ export default {
|
|
|
3273
3282
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3274
3283
|
},
|
|
3275
3284
|
/**
|
|
3276
|
-
*
|
|
3285
|
+
* Lookup387: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3277
3286
|
**/
|
|
3278
3287
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3279
3288
|
_enum: {
|
|
@@ -3283,13 +3292,13 @@ export default {
|
|
|
3283
3292
|
},
|
|
3284
3293
|
},
|
|
3285
3294
|
/**
|
|
3286
|
-
*
|
|
3295
|
+
* Lookup396: argon_primitives::bitcoin::BitcoinNetwork
|
|
3287
3296
|
**/
|
|
3288
3297
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3289
3298
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3290
3299
|
},
|
|
3291
3300
|
/**
|
|
3292
|
-
*
|
|
3301
|
+
* Lookup397: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3293
3302
|
**/
|
|
3294
3303
|
PalletBitcoinUtxosError: {
|
|
3295
3304
|
_enum: [
|
|
@@ -3311,13 +3320,11 @@ export default {
|
|
|
3311
3320
|
],
|
|
3312
3321
|
},
|
|
3313
3322
|
/**
|
|
3314
|
-
*
|
|
3323
|
+
* Lookup398: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3315
3324
|
**/
|
|
3316
3325
|
ArgonPrimitivesVault: {
|
|
3317
3326
|
operatorAccountId: 'AccountId32',
|
|
3318
3327
|
delegateAccountId: 'Option<AccountId32>',
|
|
3319
|
-
name: 'Option<Bytes>',
|
|
3320
|
-
lastNameChangeTick: 'Option<u64>',
|
|
3321
3328
|
securitization: 'Compact<u128>',
|
|
3322
3329
|
securitizationTarget: 'Compact<u128>',
|
|
3323
3330
|
securitizationLocked: 'Compact<u128>',
|
|
@@ -3336,14 +3343,14 @@ export default {
|
|
|
3336
3343
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3337
3344
|
},
|
|
3338
3345
|
/**
|
|
3339
|
-
*
|
|
3346
|
+
* Lookup405: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3340
3347
|
**/
|
|
3341
3348
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3342
3349
|
committedMicronots: 'Compact<u128>',
|
|
3343
3350
|
encumberedMicronots: 'Compact<u128>',
|
|
3344
3351
|
},
|
|
3345
3352
|
/**
|
|
3346
|
-
*
|
|
3353
|
+
* Lookup407: argon_primitives::bitcoin::BitcoinXPub
|
|
3347
3354
|
**/
|
|
3348
3355
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3349
3356
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3354,13 +3361,13 @@ export default {
|
|
|
3354
3361
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3355
3362
|
},
|
|
3356
3363
|
/**
|
|
3357
|
-
*
|
|
3364
|
+
* Lookup409: argon_primitives::bitcoin::NetworkKind
|
|
3358
3365
|
**/
|
|
3359
3366
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3360
3367
|
_enum: ['Main', 'Test'],
|
|
3361
3368
|
},
|
|
3362
3369
|
/**
|
|
3363
|
-
*
|
|
3370
|
+
* Lookup418: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3364
3371
|
**/
|
|
3365
3372
|
PalletVaultsVaultFrameRevenue: {
|
|
3366
3373
|
frameId: 'Compact<u64>',
|
|
@@ -3381,16 +3388,7 @@ export default {
|
|
|
3381
3388
|
uncollectedRevenue: 'Compact<u128>',
|
|
3382
3389
|
},
|
|
3383
3390
|
/**
|
|
3384
|
-
*
|
|
3385
|
-
**/
|
|
3386
|
-
PalletVaultsRecentCapacityDrop: {
|
|
3387
|
-
blockNumber: 'Compact<u32>',
|
|
3388
|
-
availableBeforeDrop: 'Compact<u128>',
|
|
3389
|
-
availableAfterDrop: 'Compact<u128>',
|
|
3390
|
-
noFeeFailuresUsed: 'Compact<u32>',
|
|
3391
|
-
},
|
|
3392
|
-
/**
|
|
3393
|
-
* Lookup421: pallet_vaults::pallet::Error<T>
|
|
3391
|
+
* Lookup420: pallet_vaults::pallet::Error<T>
|
|
3394
3392
|
**/
|
|
3395
3393
|
PalletVaultsError: {
|
|
3396
3394
|
_enum: [
|
|
@@ -3421,7 +3419,6 @@ export default {
|
|
|
3421
3419
|
'UnableToGenerateVaultBitcoinPubkey',
|
|
3422
3420
|
'FundingChangeAlreadyScheduled',
|
|
3423
3421
|
'InvalidBondSharingTerms',
|
|
3424
|
-
'InvalidVaultName',
|
|
3425
3422
|
'PendingCosignsBeforeCollect',
|
|
3426
3423
|
'PendingOrphanedUtxoCosignsBeforeCollect',
|
|
3427
3424
|
'OverdueCollectBlockersBeforeCollect',
|
|
@@ -3431,7 +3428,7 @@ export default {
|
|
|
3431
3428
|
],
|
|
3432
3429
|
},
|
|
3433
3430
|
/**
|
|
3434
|
-
*
|
|
3431
|
+
* Lookup421: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3435
3432
|
**/
|
|
3436
3433
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3437
3434
|
vaultId: 'Compact<u32>',
|
|
@@ -3457,7 +3454,7 @@ export default {
|
|
|
3457
3454
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3458
3455
|
},
|
|
3459
3456
|
/**
|
|
3460
|
-
*
|
|
3457
|
+
* Lookup425: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3461
3458
|
**/
|
|
3462
3459
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3463
3460
|
utxoId: 'Compact<u64>',
|
|
@@ -3468,7 +3465,7 @@ export default {
|
|
|
3468
3465
|
redemptionAmount: 'Compact<u128>',
|
|
3469
3466
|
},
|
|
3470
3467
|
/**
|
|
3471
|
-
*
|
|
3468
|
+
* Lookup427: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3472
3469
|
**/
|
|
3473
3470
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3474
3471
|
utxoId: 'Compact<u64>',
|
|
@@ -3478,7 +3475,7 @@ export default {
|
|
|
3478
3475
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3479
3476
|
},
|
|
3480
3477
|
/**
|
|
3481
|
-
*
|
|
3478
|
+
* Lookup429: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3482
3479
|
**/
|
|
3483
3480
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3484
3481
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3486,7 +3483,7 @@ export default {
|
|
|
3486
3483
|
createdAtArgonBlockNumber: 'u32',
|
|
3487
3484
|
},
|
|
3488
3485
|
/**
|
|
3489
|
-
*
|
|
3486
|
+
* Lookup436: pallet_bitcoin_locks::pallet::Error<T>
|
|
3490
3487
|
**/
|
|
3491
3488
|
PalletBitcoinLocksError: {
|
|
3492
3489
|
_enum: {
|
|
@@ -3521,6 +3518,13 @@ export default {
|
|
|
3521
3518
|
LockPendingFunding: 'Null',
|
|
3522
3519
|
OverflowError: 'Null',
|
|
3523
3520
|
IneligibleMicrogonRateRequested: 'Null',
|
|
3521
|
+
FeeCouponWrongVault: 'Null',
|
|
3522
|
+
FeeCouponWrongChain: 'Null',
|
|
3523
|
+
FeeCouponWrongAccount: 'Null',
|
|
3524
|
+
FeeCouponExpired: 'Null',
|
|
3525
|
+
InvalidFeeCouponSignature: 'Null',
|
|
3526
|
+
FeeCouponAlreadyUsed: 'Null',
|
|
3527
|
+
FeeCouponOnlyForInitialization: 'Null',
|
|
3524
3528
|
OrphanedUtxoFundingConflict: 'Null',
|
|
3525
3529
|
OrphanedUtxoReleaseRequested: 'Null',
|
|
3526
3530
|
FundingUtxoCannotBeReleased: 'Null',
|
|
@@ -3528,7 +3532,7 @@ export default {
|
|
|
3528
3532
|
},
|
|
3529
3533
|
},
|
|
3530
3534
|
/**
|
|
3531
|
-
*
|
|
3535
|
+
* Lookup437: argon_primitives::vault::VaultError
|
|
3532
3536
|
**/
|
|
3533
3537
|
ArgonPrimitivesVaultVaultError: {
|
|
3534
3538
|
_enum: [
|
|
@@ -3548,7 +3552,7 @@ export default {
|
|
|
3548
3552
|
],
|
|
3549
3553
|
},
|
|
3550
3554
|
/**
|
|
3551
|
-
*
|
|
3555
|
+
* Lookup449: pallet_notaries::pallet::Error<T>
|
|
3552
3556
|
**/
|
|
3553
3557
|
PalletNotariesError: {
|
|
3554
3558
|
_enum: [
|
|
@@ -3564,7 +3568,7 @@ export default {
|
|
|
3564
3568
|
],
|
|
3565
3569
|
},
|
|
3566
3570
|
/**
|
|
3567
|
-
*
|
|
3571
|
+
* Lookup453: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3568
3572
|
**/
|
|
3569
3573
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3570
3574
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3574,7 +3578,7 @@ export default {
|
|
|
3574
3578
|
parentSecret: 'Option<H256>',
|
|
3575
3579
|
},
|
|
3576
3580
|
/**
|
|
3577
|
-
*
|
|
3581
|
+
* Lookup456: pallet_notebook::pallet::Error<T>
|
|
3578
3582
|
**/
|
|
3579
3583
|
PalletNotebookError: {
|
|
3580
3584
|
_enum: [
|
|
@@ -3596,7 +3600,7 @@ export default {
|
|
|
3596
3600
|
],
|
|
3597
3601
|
},
|
|
3598
3602
|
/**
|
|
3599
|
-
*
|
|
3603
|
+
* Lookup457: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3600
3604
|
**/
|
|
3601
3605
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3602
3606
|
accountId: 'AccountId32',
|
|
@@ -3605,11 +3609,11 @@ export default {
|
|
|
3605
3609
|
notaryId: 'u32',
|
|
3606
3610
|
},
|
|
3607
3611
|
/**
|
|
3608
|
-
*
|
|
3612
|
+
* Lookup459: frame_support::PalletId
|
|
3609
3613
|
**/
|
|
3610
3614
|
FrameSupportPalletId: '[u8;8]',
|
|
3611
3615
|
/**
|
|
3612
|
-
*
|
|
3616
|
+
* Lookup460: pallet_localchain_transfer::pallet::Error<T>
|
|
3613
3617
|
**/
|
|
3614
3618
|
PalletLocalchainTransferError: {
|
|
3615
3619
|
_enum: [
|
|
@@ -3624,7 +3628,7 @@ export default {
|
|
|
3624
3628
|
],
|
|
3625
3629
|
},
|
|
3626
3630
|
/**
|
|
3627
|
-
*
|
|
3631
|
+
* Lookup464: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3628
3632
|
**/
|
|
3629
3633
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3630
3634
|
notaryId: 'Compact<u32>',
|
|
@@ -3634,13 +3638,13 @@ export default {
|
|
|
3634
3638
|
blockVotingPower: 'Compact<u128>',
|
|
3635
3639
|
},
|
|
3636
3640
|
/**
|
|
3637
|
-
*
|
|
3641
|
+
* Lookup469: pallet_block_seal_spec::pallet::Error<T>
|
|
3638
3642
|
**/
|
|
3639
3643
|
PalletBlockSealSpecError: {
|
|
3640
3644
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3641
3645
|
},
|
|
3642
3646
|
/**
|
|
3643
|
-
*
|
|
3647
|
+
* Lookup471: pallet_domains::pallet::Error<T>
|
|
3644
3648
|
**/
|
|
3645
3649
|
PalletDomainsError: {
|
|
3646
3650
|
_enum: [
|
|
@@ -3652,7 +3656,7 @@ export default {
|
|
|
3652
3656
|
],
|
|
3653
3657
|
},
|
|
3654
3658
|
/**
|
|
3655
|
-
*
|
|
3659
|
+
* Lookup473: pallet_price_index::EthereumPriceFrameAccumulator
|
|
3656
3660
|
**/
|
|
3657
3661
|
PalletPriceIndexEthereumPriceFrameAccumulator: {
|
|
3658
3662
|
totalUsdPrice: 'u128',
|
|
@@ -3660,7 +3664,7 @@ export default {
|
|
|
3660
3664
|
sampleCount: 'Compact<u32>',
|
|
3661
3665
|
},
|
|
3662
3666
|
/**
|
|
3663
|
-
*
|
|
3667
|
+
* Lookup478: pallet_price_index::CpiMeasurementBucket
|
|
3664
3668
|
**/
|
|
3665
3669
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3666
3670
|
tickRange: '(u64,u64)',
|
|
@@ -3668,7 +3672,7 @@ export default {
|
|
|
3668
3672
|
measurementsCount: 'u32',
|
|
3669
3673
|
},
|
|
3670
3674
|
/**
|
|
3671
|
-
*
|
|
3675
|
+
* Lookup482: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3672
3676
|
**/
|
|
3673
3677
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3674
3678
|
frameId: 'Compact<u64>',
|
|
@@ -3676,7 +3680,7 @@ export default {
|
|
|
3676
3680
|
sampleCount: 'Compact<u32>',
|
|
3677
3681
|
},
|
|
3678
3682
|
/**
|
|
3679
|
-
*
|
|
3683
|
+
* Lookup483: pallet_price_index::pallet::Error<T>
|
|
3680
3684
|
**/
|
|
3681
3685
|
PalletPriceIndexError: {
|
|
3682
3686
|
_enum: [
|
|
@@ -3688,7 +3692,7 @@ export default {
|
|
|
3688
3692
|
],
|
|
3689
3693
|
},
|
|
3690
3694
|
/**
|
|
3691
|
-
*
|
|
3695
|
+
* Lookup484: pallet_grandpa::StoredState<N>
|
|
3692
3696
|
**/
|
|
3693
3697
|
PalletGrandpaStoredState: {
|
|
3694
3698
|
_enum: {
|
|
@@ -3705,7 +3709,7 @@ export default {
|
|
|
3705
3709
|
},
|
|
3706
3710
|
},
|
|
3707
3711
|
/**
|
|
3708
|
-
*
|
|
3712
|
+
* Lookup485: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3709
3713
|
**/
|
|
3710
3714
|
PalletGrandpaStoredPendingChange: {
|
|
3711
3715
|
scheduledAt: 'u32',
|
|
@@ -3714,7 +3718,7 @@ export default {
|
|
|
3714
3718
|
forced: 'Option<u32>',
|
|
3715
3719
|
},
|
|
3716
3720
|
/**
|
|
3717
|
-
*
|
|
3721
|
+
* Lookup487: pallet_grandpa::pallet::Error<T>
|
|
3718
3722
|
**/
|
|
3719
3723
|
PalletGrandpaError: {
|
|
3720
3724
|
_enum: [
|
|
@@ -3728,7 +3732,7 @@ export default {
|
|
|
3728
3732
|
],
|
|
3729
3733
|
},
|
|
3730
3734
|
/**
|
|
3731
|
-
*
|
|
3735
|
+
* Lookup488: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3732
3736
|
**/
|
|
3733
3737
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3734
3738
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3736,7 +3740,7 @@ export default {
|
|
|
3736
3740
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3737
3741
|
},
|
|
3738
3742
|
/**
|
|
3739
|
-
*
|
|
3743
|
+
* Lookup490: pallet_block_seal::pallet::Error<T>
|
|
3740
3744
|
**/
|
|
3741
3745
|
PalletBlockSealError: {
|
|
3742
3746
|
_enum: [
|
|
@@ -3764,11 +3768,11 @@ export default {
|
|
|
3764
3768
|
],
|
|
3765
3769
|
},
|
|
3766
3770
|
/**
|
|
3767
|
-
*
|
|
3771
|
+
* Lookup494: pallet_block_rewards::pallet::Error<T>
|
|
3768
3772
|
**/
|
|
3769
3773
|
PalletBlockRewardsError: 'Null',
|
|
3770
3774
|
/**
|
|
3771
|
-
*
|
|
3775
|
+
* Lookup495: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3772
3776
|
**/
|
|
3773
3777
|
PalletMintPendingMintUtxo: {
|
|
3774
3778
|
utxoId: 'Compact<u64>',
|
|
@@ -3777,7 +3781,7 @@ export default {
|
|
|
3777
3781
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3778
3782
|
},
|
|
3779
3783
|
/**
|
|
3780
|
-
*
|
|
3784
|
+
* Lookup497: pallet_mint::pallet::MintQueueCursor
|
|
3781
3785
|
**/
|
|
3782
3786
|
PalletMintMintQueueCursor: {
|
|
3783
3787
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3785,7 +3789,7 @@ export default {
|
|
|
3785
3789
|
payoutCursorFrameId: 'Option<u64>',
|
|
3786
3790
|
},
|
|
3787
3791
|
/**
|
|
3788
|
-
*
|
|
3792
|
+
* Lookup500: pallet_mint::pallet::MintAction<B>
|
|
3789
3793
|
**/
|
|
3790
3794
|
PalletMintMintAction: {
|
|
3791
3795
|
argonBurned: 'u128',
|
|
@@ -3793,13 +3797,13 @@ export default {
|
|
|
3793
3797
|
bitcoinMinted: 'u128',
|
|
3794
3798
|
},
|
|
3795
3799
|
/**
|
|
3796
|
-
*
|
|
3800
|
+
* Lookup502: pallet_mint::pallet::Error<T>
|
|
3797
3801
|
**/
|
|
3798
3802
|
PalletMintError: {
|
|
3799
3803
|
_enum: ['TooManyPendingMints'],
|
|
3800
3804
|
},
|
|
3801
3805
|
/**
|
|
3802
|
-
*
|
|
3806
|
+
* Lookup504: pallet_balances::types::BalanceLock<Balance>
|
|
3803
3807
|
**/
|
|
3804
3808
|
PalletBalancesBalanceLock: {
|
|
3805
3809
|
id: '[u8;8]',
|
|
@@ -3807,34 +3811,34 @@ export default {
|
|
|
3807
3811
|
reasons: 'PalletBalancesReasons',
|
|
3808
3812
|
},
|
|
3809
3813
|
/**
|
|
3810
|
-
*
|
|
3814
|
+
* Lookup505: pallet_balances::types::Reasons
|
|
3811
3815
|
**/
|
|
3812
3816
|
PalletBalancesReasons: {
|
|
3813
3817
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3814
3818
|
},
|
|
3815
3819
|
/**
|
|
3816
|
-
*
|
|
3820
|
+
* Lookup508: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3817
3821
|
**/
|
|
3818
3822
|
PalletBalancesReserveData: {
|
|
3819
3823
|
id: '[u8;8]',
|
|
3820
3824
|
amount: 'u128',
|
|
3821
3825
|
},
|
|
3822
3826
|
/**
|
|
3823
|
-
*
|
|
3827
|
+
* Lookup511: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3824
3828
|
**/
|
|
3825
3829
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3826
3830
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3827
3831
|
amount: 'u128',
|
|
3828
3832
|
},
|
|
3829
3833
|
/**
|
|
3830
|
-
*
|
|
3834
|
+
* Lookup514: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3831
3835
|
**/
|
|
3832
3836
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3833
3837
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3834
3838
|
amount: 'u128',
|
|
3835
3839
|
},
|
|
3836
3840
|
/**
|
|
3837
|
-
*
|
|
3841
|
+
* Lookup515: argon_runtime::RuntimeFreezeReason
|
|
3838
3842
|
**/
|
|
3839
3843
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3840
3844
|
_enum: {
|
|
@@ -3861,13 +3865,13 @@ export default {
|
|
|
3861
3865
|
},
|
|
3862
3866
|
},
|
|
3863
3867
|
/**
|
|
3864
|
-
*
|
|
3868
|
+
* Lookup516: pallet_block_rewards::pallet::FreezeReason
|
|
3865
3869
|
**/
|
|
3866
3870
|
PalletBlockRewardsFreezeReason: {
|
|
3867
3871
|
_enum: ['MaturationPeriod'],
|
|
3868
3872
|
},
|
|
3869
3873
|
/**
|
|
3870
|
-
*
|
|
3874
|
+
* Lookup518: pallet_balances::pallet::Error<T, I>
|
|
3871
3875
|
**/
|
|
3872
3876
|
PalletBalancesError: {
|
|
3873
3877
|
_enum: [
|
|
@@ -3886,48 +3890,48 @@ export default {
|
|
|
3886
3890
|
],
|
|
3887
3891
|
},
|
|
3888
3892
|
/**
|
|
3889
|
-
*
|
|
3893
|
+
* Lookup520: pallet_tx_pause::pallet::Error<T>
|
|
3890
3894
|
**/
|
|
3891
3895
|
PalletTxPauseError: {
|
|
3892
3896
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3893
3897
|
},
|
|
3894
3898
|
/**
|
|
3895
|
-
*
|
|
3899
|
+
* Lookup521: pallet_transaction_payment::Releases
|
|
3896
3900
|
**/
|
|
3897
3901
|
PalletTransactionPaymentReleases: {
|
|
3898
3902
|
_enum: ['V1Ancient', 'V2'],
|
|
3899
3903
|
},
|
|
3900
3904
|
/**
|
|
3901
|
-
*
|
|
3905
|
+
* Lookup522: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3902
3906
|
**/
|
|
3903
3907
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3904
3908
|
/**
|
|
3905
|
-
*
|
|
3909
|
+
* Lookup523: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3906
3910
|
**/
|
|
3907
3911
|
FrameSupportTokensFungibleImbalance: {
|
|
3908
3912
|
amount: 'u128',
|
|
3909
3913
|
},
|
|
3910
3914
|
/**
|
|
3911
|
-
*
|
|
3915
|
+
* Lookup524: pallet_utility::pallet::Error<T>
|
|
3912
3916
|
**/
|
|
3913
3917
|
PalletUtilityError: {
|
|
3914
3918
|
_enum: ['TooManyCalls'],
|
|
3915
3919
|
},
|
|
3916
3920
|
/**
|
|
3917
|
-
*
|
|
3921
|
+
* Lookup525: pallet_sudo::pallet::Error<T>
|
|
3918
3922
|
**/
|
|
3919
3923
|
PalletSudoError: {
|
|
3920
3924
|
_enum: ['RequireSudo'],
|
|
3921
3925
|
},
|
|
3922
3926
|
/**
|
|
3923
|
-
*
|
|
3927
|
+
* Lookup526: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3924
3928
|
**/
|
|
3925
3929
|
PalletTreasuryFrameVaultCapital: {
|
|
3926
3930
|
frameId: 'Compact<u64>',
|
|
3927
3931
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3928
3932
|
},
|
|
3929
3933
|
/**
|
|
3930
|
-
*
|
|
3934
|
+
* Lookup528: pallet_treasury::pallet::VaultCapital<T>
|
|
3931
3935
|
**/
|
|
3932
3936
|
PalletTreasuryVaultCapital: {
|
|
3933
3937
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
@@ -3936,14 +3940,14 @@ export default {
|
|
|
3936
3940
|
eligibleBonds: 'Compact<u32>',
|
|
3937
3941
|
},
|
|
3938
3942
|
/**
|
|
3939
|
-
*
|
|
3943
|
+
* Lookup530: pallet_treasury::pallet::BondLotAllocation
|
|
3940
3944
|
**/
|
|
3941
3945
|
PalletTreasuryBondLotAllocation: {
|
|
3942
3946
|
bondLotId: 'Compact<u64>',
|
|
3943
3947
|
prorata: 'u128',
|
|
3944
3948
|
},
|
|
3945
3949
|
/**
|
|
3946
|
-
*
|
|
3950
|
+
* Lookup535: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3947
3951
|
**/
|
|
3948
3952
|
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3949
3953
|
frameId: 'Compact<u64>',
|
|
@@ -3951,14 +3955,14 @@ export default {
|
|
|
3951
3955
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3952
3956
|
},
|
|
3953
3957
|
/**
|
|
3954
|
-
*
|
|
3958
|
+
* Lookup537: pallet_treasury::pallet::BondLotSummary
|
|
3955
3959
|
**/
|
|
3956
3960
|
PalletTreasuryBondLotSummary: {
|
|
3957
3961
|
bondLotId: 'Compact<u64>',
|
|
3958
3962
|
bonds: 'Compact<u32>',
|
|
3959
3963
|
},
|
|
3960
3964
|
/**
|
|
3961
|
-
*
|
|
3965
|
+
* Lookup539: pallet_treasury::pallet::BondLot<T>
|
|
3962
3966
|
**/
|
|
3963
3967
|
PalletTreasuryBondLot: {
|
|
3964
3968
|
owner: 'AccountId32',
|
|
@@ -3974,7 +3978,7 @@ export default {
|
|
|
3974
3978
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3975
3979
|
},
|
|
3976
3980
|
/**
|
|
3977
|
-
*
|
|
3981
|
+
* Lookup540: pallet_treasury::pallet::BondProgram
|
|
3978
3982
|
**/
|
|
3979
3983
|
PalletTreasuryBondProgram: {
|
|
3980
3984
|
_enum: {
|
|
@@ -3987,7 +3991,7 @@ export default {
|
|
|
3987
3991
|
},
|
|
3988
3992
|
},
|
|
3989
3993
|
/**
|
|
3990
|
-
*
|
|
3994
|
+
* Lookup543: pallet_treasury::pallet::VaultBondState<T>
|
|
3991
3995
|
**/
|
|
3992
3996
|
PalletTreasuryVaultBondState: {
|
|
3993
3997
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
@@ -3995,7 +3999,7 @@ export default {
|
|
|
3995
3999
|
backfillBondsReserved: 'Compact<u32>',
|
|
3996
4000
|
},
|
|
3997
4001
|
/**
|
|
3998
|
-
*
|
|
4002
|
+
* Lookup545: pallet_treasury::pallet::Error<T>
|
|
3999
4003
|
**/
|
|
4000
4004
|
PalletTreasuryError: {
|
|
4001
4005
|
_enum: [
|
|
@@ -4022,19 +4026,21 @@ export default {
|
|
|
4022
4026
|
],
|
|
4023
4027
|
},
|
|
4024
4028
|
/**
|
|
4025
|
-
*
|
|
4029
|
+
* Lookup546: pallet_fee_control::pallet::Error<T>
|
|
4026
4030
|
**/
|
|
4027
4031
|
PalletFeeControlError: {
|
|
4028
4032
|
_enum: ['SponsoredFeeTooHigh'],
|
|
4029
4033
|
},
|
|
4030
4034
|
/**
|
|
4031
|
-
*
|
|
4035
|
+
* Lookup547: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
4032
4036
|
**/
|
|
4033
4037
|
PalletOperationalAccountsOperationalAccount: {
|
|
4034
4038
|
vaultAccount: 'AccountId32',
|
|
4035
4039
|
miningAccount: 'AccountId32',
|
|
4036
4040
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
4037
4041
|
upstreamAccount: 'Option<AccountId32>',
|
|
4042
|
+
name: 'Option<Bytes>',
|
|
4043
|
+
lastNameChangeTick: 'Option<u64>',
|
|
4038
4044
|
uniswapArgonTransfersInAmount: 'u128',
|
|
4039
4045
|
accountBitcoinAmount: 'u128',
|
|
4040
4046
|
accountVaultBondAmount: 'u128',
|
|
@@ -4044,7 +4050,6 @@ export default {
|
|
|
4044
4050
|
miningSeatAccrual: 'Compact<u32>',
|
|
4045
4051
|
miningSeatAppliedTotal: 'Compact<u32>',
|
|
4046
4052
|
operationalCertificationsCount: 'Compact<u32>',
|
|
4047
|
-
accessCodePending: 'bool',
|
|
4048
4053
|
availableAccessCodes: 'Compact<u32>',
|
|
4049
4054
|
rewardsEarnedCount: 'Compact<u32>',
|
|
4050
4055
|
rewardsEarnedAmount: 'u128',
|
|
@@ -4052,14 +4057,14 @@ export default {
|
|
|
4052
4057
|
isOperationallyCertified: 'bool',
|
|
4053
4058
|
},
|
|
4054
4059
|
/**
|
|
4055
|
-
*
|
|
4060
|
+
* Lookup548: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
4056
4061
|
**/
|
|
4057
4062
|
PalletOperationalAccountsRewardsConfig: {
|
|
4058
4063
|
operationalCertificationReward: 'Compact<u128>',
|
|
4059
4064
|
operationalCertificationBonusReward: 'Compact<u128>',
|
|
4060
4065
|
},
|
|
4061
4066
|
/**
|
|
4062
|
-
*
|
|
4067
|
+
* Lookup549: pallet_operational_accounts::pallet::Error<T>
|
|
4063
4068
|
**/
|
|
4064
4069
|
PalletOperationalAccountsError: {
|
|
4065
4070
|
_enum: [
|
|
@@ -4082,16 +4087,17 @@ export default {
|
|
|
4082
4087
|
'AlreadyOperationallyCertified',
|
|
4083
4088
|
'NotEligibleForActivation',
|
|
4084
4089
|
'UpstreamHasNoAvailableAccessCodes',
|
|
4090
|
+
'InvalidName',
|
|
4085
4091
|
],
|
|
4086
4092
|
},
|
|
4087
4093
|
/**
|
|
4088
|
-
*
|
|
4094
|
+
* Lookup550: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
4089
4095
|
**/
|
|
4090
4096
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
4091
4097
|
slot: 'Compact<u64>',
|
|
4092
4098
|
},
|
|
4093
4099
|
/**
|
|
4094
|
-
*
|
|
4100
|
+
* Lookup551: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
4095
4101
|
**/
|
|
4096
4102
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
4097
4103
|
blockNumber: 'Compact<u64>',
|
|
@@ -4102,7 +4108,7 @@ export default {
|
|
|
4102
4108
|
receiptsRoot: 'H256',
|
|
4103
4109
|
},
|
|
4104
4110
|
/**
|
|
4105
|
-
*
|
|
4111
|
+
* Lookup552: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
4106
4112
|
**/
|
|
4107
4113
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
4108
4114
|
root: 'H256',
|
|
@@ -4110,13 +4116,13 @@ export default {
|
|
|
4110
4116
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
4111
4117
|
},
|
|
4112
4118
|
/**
|
|
4113
|
-
*
|
|
4119
|
+
* Lookup554: snowbridge_milagro_bls::keys::PublicKey
|
|
4114
4120
|
**/
|
|
4115
4121
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
4116
4122
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
4117
4123
|
},
|
|
4118
4124
|
/**
|
|
4119
|
-
*
|
|
4125
|
+
* Lookup555: snowbridge_amcl::bls381::ecp::ECP
|
|
4120
4126
|
**/
|
|
4121
4127
|
SnowbridgeAmclBls381Ecp: {
|
|
4122
4128
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -4124,26 +4130,26 @@ export default {
|
|
|
4124
4130
|
z: 'SnowbridgeAmclBls381Fp',
|
|
4125
4131
|
},
|
|
4126
4132
|
/**
|
|
4127
|
-
*
|
|
4133
|
+
* Lookup556: snowbridge_amcl::bls381::fp::FP
|
|
4128
4134
|
**/
|
|
4129
4135
|
SnowbridgeAmclBls381Fp: {
|
|
4130
4136
|
x: 'SnowbridgeAmclBls381Big',
|
|
4131
4137
|
xes: 'i32',
|
|
4132
4138
|
},
|
|
4133
4139
|
/**
|
|
4134
|
-
*
|
|
4140
|
+
* Lookup557: snowbridge_amcl::bls381::big::Big
|
|
4135
4141
|
**/
|
|
4136
4142
|
SnowbridgeAmclBls381Big: {
|
|
4137
4143
|
w: '[i32;14]',
|
|
4138
4144
|
},
|
|
4139
4145
|
/**
|
|
4140
|
-
*
|
|
4146
|
+
* Lookup561: argon_primitives::ethereum::EthereumBeaconPreset
|
|
4141
4147
|
**/
|
|
4142
4148
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
4143
4149
|
_enum: ['Mainnet', 'Minimal'],
|
|
4144
4150
|
},
|
|
4145
4151
|
/**
|
|
4146
|
-
*
|
|
4152
|
+
* Lookup562: pallet_ethereum_verifier::pallet::Error<T>
|
|
4147
4153
|
**/
|
|
4148
4154
|
PalletEthereumVerifierError: {
|
|
4149
4155
|
_enum: [
|
|
@@ -4174,7 +4180,7 @@ export default {
|
|
|
4174
4180
|
],
|
|
4175
4181
|
},
|
|
4176
4182
|
/**
|
|
4177
|
-
*
|
|
4183
|
+
* Lookup563: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4178
4184
|
**/
|
|
4179
4185
|
PalletCrosschainTransferAccountTransferTotals: {
|
|
4180
4186
|
microgonsIn: 'u128',
|
|
@@ -4187,7 +4193,7 @@ export default {
|
|
|
4187
4193
|
argonotTransfersOutCount: 'Compact<u32>',
|
|
4188
4194
|
},
|
|
4189
4195
|
/**
|
|
4190
|
-
*
|
|
4196
|
+
* Lookup565: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
4191
4197
|
**/
|
|
4192
4198
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
4193
4199
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -4195,7 +4201,7 @@ export default {
|
|
|
4195
4201
|
totalWeight: 'u128',
|
|
4196
4202
|
},
|
|
4197
4203
|
/**
|
|
4198
|
-
*
|
|
4204
|
+
* Lookup567: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4199
4205
|
**/
|
|
4200
4206
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4201
4207
|
accountId: 'AccountId32',
|
|
@@ -4203,7 +4209,7 @@ export default {
|
|
|
4203
4209
|
weight: 'u128',
|
|
4204
4210
|
},
|
|
4205
4211
|
/**
|
|
4206
|
-
*
|
|
4212
|
+
* Lookup572: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4207
4213
|
**/
|
|
4208
4214
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4209
4215
|
approvingCouncilHash: 'H256',
|
|
@@ -4216,7 +4222,7 @@ export default {
|
|
|
4216
4222
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4217
4223
|
},
|
|
4218
4224
|
/**
|
|
4219
|
-
*
|
|
4225
|
+
* Lookup577: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4220
4226
|
**/
|
|
4221
4227
|
PalletCrosschainTransferMintingAuthority: {
|
|
4222
4228
|
accountId: 'AccountId32',
|
|
@@ -4234,13 +4240,13 @@ export default {
|
|
|
4234
4240
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4235
4241
|
},
|
|
4236
4242
|
/**
|
|
4237
|
-
*
|
|
4243
|
+
* Lookup578: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4238
4244
|
**/
|
|
4239
4245
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4240
4246
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4241
4247
|
},
|
|
4242
4248
|
/**
|
|
4243
|
-
*
|
|
4249
|
+
* Lookup580: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4244
4250
|
**/
|
|
4245
4251
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4246
4252
|
argonAccountId: 'AccountId32',
|
|
@@ -4258,7 +4264,7 @@ export default {
|
|
|
4258
4264
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4259
4265
|
},
|
|
4260
4266
|
/**
|
|
4261
|
-
*
|
|
4267
|
+
* Lookup582: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4262
4268
|
**/
|
|
4263
4269
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4264
4270
|
microgonCollateral: 'u128',
|
|
@@ -4267,13 +4273,13 @@ export default {
|
|
|
4267
4273
|
signature: '[u8;65]',
|
|
4268
4274
|
},
|
|
4269
4275
|
/**
|
|
4270
|
-
*
|
|
4276
|
+
* Lookup586: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4271
4277
|
**/
|
|
4272
4278
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4273
4279
|
_enum: ['Started', 'Ready'],
|
|
4274
4280
|
},
|
|
4275
4281
|
/**
|
|
4276
|
-
*
|
|
4282
|
+
* Lookup588: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4277
4283
|
**/
|
|
4278
4284
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4279
4285
|
transferId: 'H256',
|
|
@@ -4281,14 +4287,14 @@ export default {
|
|
|
4281
4287
|
remainingMintingAuthorityTip: 'u128',
|
|
4282
4288
|
},
|
|
4283
4289
|
/**
|
|
4284
|
-
*
|
|
4290
|
+
* Lookup590: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4285
4291
|
**/
|
|
4286
4292
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4287
4293
|
argonCirculation: 'u128',
|
|
4288
4294
|
argonotCirculation: 'u128',
|
|
4289
4295
|
},
|
|
4290
4296
|
/**
|
|
4291
|
-
*
|
|
4297
|
+
* Lookup591: pallet_crosschain_transfer::pallet::Error<T>
|
|
4292
4298
|
**/
|
|
4293
4299
|
PalletCrosschainTransferError: {
|
|
4294
4300
|
_enum: [
|
|
@@ -4350,61 +4356,61 @@ export default {
|
|
|
4350
4356
|
],
|
|
4351
4357
|
},
|
|
4352
4358
|
/**
|
|
4353
|
-
*
|
|
4359
|
+
* Lookup593: pallet_bootstrap::pallet::Error<T>
|
|
4354
4360
|
**/
|
|
4355
4361
|
PalletBootstrapError: {
|
|
4356
4362
|
_enum: ['EncryptedPayloadTooLong', 'InvalidRecoveryProof', 'EndpointOwnedByAnotherAccount'],
|
|
4357
4363
|
},
|
|
4358
4364
|
/**
|
|
4359
|
-
*
|
|
4365
|
+
* Lookup596: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4360
4366
|
**/
|
|
4361
4367
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4362
4368
|
/**
|
|
4363
|
-
*
|
|
4369
|
+
* Lookup597: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4364
4370
|
**/
|
|
4365
4371
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4366
4372
|
/**
|
|
4367
|
-
*
|
|
4373
|
+
* Lookup598: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4368
4374
|
**/
|
|
4369
4375
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4370
4376
|
/**
|
|
4371
|
-
*
|
|
4377
|
+
* Lookup599: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4372
4378
|
**/
|
|
4373
4379
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4374
4380
|
/**
|
|
4375
|
-
*
|
|
4381
|
+
* Lookup600: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4376
4382
|
**/
|
|
4377
4383
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4378
4384
|
/**
|
|
4379
|
-
*
|
|
4385
|
+
* Lookup603: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4380
4386
|
**/
|
|
4381
4387
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4382
4388
|
/**
|
|
4383
|
-
*
|
|
4389
|
+
* Lookup604: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4384
4390
|
**/
|
|
4385
4391
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4386
4392
|
/**
|
|
4387
|
-
*
|
|
4393
|
+
* Lookup605: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4388
4394
|
**/
|
|
4389
4395
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4390
4396
|
/**
|
|
4391
|
-
*
|
|
4397
|
+
* Lookup606: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4392
4398
|
**/
|
|
4393
4399
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4394
4400
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4395
4401
|
},
|
|
4396
4402
|
/**
|
|
4397
|
-
*
|
|
4403
|
+
* Lookup607: frame_metadata_hash_extension::Mode
|
|
4398
4404
|
**/
|
|
4399
4405
|
FrameMetadataHashExtensionMode: {
|
|
4400
4406
|
_enum: ['Disabled', 'Enabled'],
|
|
4401
4407
|
},
|
|
4402
4408
|
/**
|
|
4403
|
-
*
|
|
4409
|
+
* Lookup608: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4404
4410
|
**/
|
|
4405
4411
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4406
4412
|
/**
|
|
4407
|
-
*
|
|
4413
|
+
* Lookup610: argon_runtime::Runtime
|
|
4408
4414
|
**/
|
|
4409
4415
|
ArgonRuntimeRuntime: 'Null',
|
|
4410
4416
|
};
|