@argonprotocol/mainchain 1.4.11-dev.7b637899 → 1.4.11-dev.f3bdc948
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 +312 -314
- package/browser/index.js +70 -43
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +77 -50
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +312 -314
- package/lib/index.d.ts +312 -314
- package/lib/index.js +70 -43
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-errors.ts +7 -19
- package/src/interfaces/augment-api-events.ts +18 -18
- package/src/interfaces/augment-api-query.ts +1 -1
- package/src/interfaces/augment-api-tx.ts +24 -19
- package/src/interfaces/lookup.ts +214 -221
- package/src/interfaces/types-lookup.ts +232 -242
package/src/interfaces/lookup.ts
CHANGED
|
@@ -469,9 +469,9 @@ export default {
|
|
|
469
469
|
VaultBitcoinXpubChange: {
|
|
470
470
|
vaultId: 'u32',
|
|
471
471
|
},
|
|
472
|
-
|
|
472
|
+
ReservedSecuritizationSpaceChanged: {
|
|
473
473
|
vaultId: 'u32',
|
|
474
|
-
|
|
474
|
+
reservedSecuritizationSpace: 'u128',
|
|
475
475
|
},
|
|
476
476
|
VaultRevenueUncollected: {
|
|
477
477
|
vaultId: 'u32',
|
|
@@ -613,10 +613,10 @@ export default {
|
|
|
613
613
|
newSatoshis: 'u64',
|
|
614
614
|
accountId: 'AccountId32',
|
|
615
615
|
},
|
|
616
|
-
|
|
616
|
+
BitcoinLockFlexibleChanged: {
|
|
617
617
|
utxoId: 'u64',
|
|
618
618
|
vaultId: 'u32',
|
|
619
|
-
|
|
619
|
+
isFlexible: 'bool',
|
|
620
620
|
},
|
|
621
621
|
},
|
|
622
622
|
},
|
|
@@ -1392,14 +1392,14 @@ export default {
|
|
|
1392
1392
|
accountId: 'AccountId32',
|
|
1393
1393
|
bonds: 'u32',
|
|
1394
1394
|
},
|
|
1395
|
-
|
|
1395
|
+
BondLotFlexibilityChanged: {
|
|
1396
1396
|
vaultId: 'u32',
|
|
1397
1397
|
bondLotId: 'u64',
|
|
1398
|
-
|
|
1398
|
+
isFlexible: 'bool',
|
|
1399
1399
|
},
|
|
1400
|
-
|
|
1400
|
+
ReservedBondSpaceChanged: {
|
|
1401
1401
|
vaultId: 'u32',
|
|
1402
|
-
|
|
1402
|
+
reservedBondSpace: 'u32',
|
|
1403
1403
|
},
|
|
1404
1404
|
EncumberedBondMicrogonsBurned: {
|
|
1405
1405
|
accountId: 'AccountId32',
|
|
@@ -2193,9 +2193,8 @@ export default {
|
|
|
2193
2193
|
set_committed_argonots: {
|
|
2194
2194
|
amount: 'Compact<u128>',
|
|
2195
2195
|
},
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
backfillSecuritizationReserved: 'u128',
|
|
2196
|
+
set_reserved_securitization_space: {
|
|
2197
|
+
reservedSecuritizationSpace: 'u128',
|
|
2199
2198
|
},
|
|
2200
2199
|
},
|
|
2201
2200
|
},
|
|
@@ -2264,9 +2263,9 @@ export default {
|
|
|
2264
2263
|
utxoId: 'u64',
|
|
2265
2264
|
newSatoshis: 'Compact<u64>',
|
|
2266
2265
|
},
|
|
2267
|
-
|
|
2266
|
+
set_flexible: {
|
|
2268
2267
|
utxoId: 'u64',
|
|
2269
|
-
|
|
2268
|
+
isFlexible: 'bool',
|
|
2270
2269
|
},
|
|
2271
2270
|
},
|
|
2272
2271
|
},
|
|
@@ -2283,26 +2282,23 @@ export default {
|
|
|
2283
2282
|
microgonsAtTargetPerBtc: 'Option<u128>',
|
|
2284
2283
|
},
|
|
2285
2284
|
V2: {
|
|
2286
|
-
microgonsAtTargetPerBtc: '
|
|
2287
|
-
feeCoupon: '
|
|
2285
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
2286
|
+
feeCoupon: 'PalletBitcoinLocksFeeCoupon',
|
|
2288
2287
|
},
|
|
2289
2288
|
},
|
|
2290
2289
|
},
|
|
2291
2290
|
/**
|
|
2292
|
-
*
|
|
2291
|
+
* Lookup221: pallet_bitcoin_locks::pallet::FeeCoupon<T>
|
|
2293
2292
|
**/
|
|
2294
2293
|
PalletBitcoinLocksFeeCoupon: {
|
|
2295
|
-
vaultId: 'Compact<u32>',
|
|
2296
|
-
genesisHash: 'H256',
|
|
2297
|
-
beneficiary: 'AccountId32',
|
|
2298
2294
|
feeDiscount: 'Compact<u128>',
|
|
2299
|
-
|
|
2295
|
+
securitizationSpaceToUnreserve: 'Compact<u128>',
|
|
2300
2296
|
expiresAtFrame: 'Compact<u64>',
|
|
2301
2297
|
nonce: 'Compact<u64>',
|
|
2302
2298
|
signature: 'SpRuntimeMultiSignature',
|
|
2303
2299
|
},
|
|
2304
2300
|
/**
|
|
2305
|
-
*
|
|
2301
|
+
* Lookup222: sp_runtime::MultiSignature
|
|
2306
2302
|
**/
|
|
2307
2303
|
SpRuntimeMultiSignature: {
|
|
2308
2304
|
_enum: {
|
|
@@ -2313,7 +2309,7 @@ export default {
|
|
|
2313
2309
|
},
|
|
2314
2310
|
},
|
|
2315
2311
|
/**
|
|
2316
|
-
*
|
|
2312
|
+
* Lookup227: pallet_notaries::pallet::Call<T>
|
|
2317
2313
|
**/
|
|
2318
2314
|
PalletNotariesCall: {
|
|
2319
2315
|
_enum: {
|
|
@@ -2331,7 +2327,7 @@ export default {
|
|
|
2331
2327
|
},
|
|
2332
2328
|
},
|
|
2333
2329
|
/**
|
|
2334
|
-
*
|
|
2330
|
+
* Lookup228: pallet_notebook::pallet::Call<T>
|
|
2335
2331
|
**/
|
|
2336
2332
|
PalletNotebookCall: {
|
|
2337
2333
|
_enum: {
|
|
@@ -2344,14 +2340,14 @@ export default {
|
|
|
2344
2340
|
},
|
|
2345
2341
|
},
|
|
2346
2342
|
/**
|
|
2347
|
-
*
|
|
2343
|
+
* Lookup230: argon_primitives::notebook::SignedNotebookHeader
|
|
2348
2344
|
**/
|
|
2349
2345
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
2350
2346
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
2351
2347
|
signature: '[u8;64]',
|
|
2352
2348
|
},
|
|
2353
2349
|
/**
|
|
2354
|
-
*
|
|
2350
|
+
* Lookup231: argon_primitives::notebook::NotebookHeader
|
|
2355
2351
|
**/
|
|
2356
2352
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
2357
2353
|
version: 'Compact<u16>',
|
|
@@ -2371,7 +2367,7 @@ export default {
|
|
|
2371
2367
|
domains: 'Vec<(H256,AccountId32)>',
|
|
2372
2368
|
},
|
|
2373
2369
|
/**
|
|
2374
|
-
*
|
|
2370
|
+
* Lookup234: argon_primitives::notebook::ChainTransfer
|
|
2375
2371
|
**/
|
|
2376
2372
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
2377
2373
|
_enum: {
|
|
@@ -2385,14 +2381,14 @@ export default {
|
|
|
2385
2381
|
},
|
|
2386
2382
|
},
|
|
2387
2383
|
/**
|
|
2388
|
-
*
|
|
2384
|
+
* Lookup237: argon_primitives::balance_change::AccountOrigin
|
|
2389
2385
|
**/
|
|
2390
2386
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
2391
2387
|
notebookNumber: 'Compact<u32>',
|
|
2392
2388
|
accountUid: 'Compact<u32>',
|
|
2393
2389
|
},
|
|
2394
2390
|
/**
|
|
2395
|
-
*
|
|
2391
|
+
* Lookup243: pallet_localchain_transfer::pallet::Call<T>
|
|
2396
2392
|
**/
|
|
2397
2393
|
PalletLocalchainTransferCall: {
|
|
2398
2394
|
_enum: {
|
|
@@ -2403,7 +2399,7 @@ export default {
|
|
|
2403
2399
|
},
|
|
2404
2400
|
},
|
|
2405
2401
|
/**
|
|
2406
|
-
*
|
|
2402
|
+
* Lookup244: pallet_block_seal_spec::pallet::Call<T>
|
|
2407
2403
|
**/
|
|
2408
2404
|
PalletBlockSealSpecCall: {
|
|
2409
2405
|
_enum: {
|
|
@@ -2414,7 +2410,7 @@ export default {
|
|
|
2414
2410
|
},
|
|
2415
2411
|
},
|
|
2416
2412
|
/**
|
|
2417
|
-
*
|
|
2413
|
+
* Lookup245: pallet_domains::pallet::Call<T>
|
|
2418
2414
|
**/
|
|
2419
2415
|
PalletDomainsCall: {
|
|
2420
2416
|
_enum: {
|
|
@@ -2425,7 +2421,7 @@ export default {
|
|
|
2425
2421
|
},
|
|
2426
2422
|
},
|
|
2427
2423
|
/**
|
|
2428
|
-
*
|
|
2424
|
+
* Lookup246: pallet_price_index::pallet::Call<T>
|
|
2429
2425
|
**/
|
|
2430
2426
|
PalletPriceIndexCall: {
|
|
2431
2427
|
_enum: {
|
|
@@ -2439,7 +2435,7 @@ export default {
|
|
|
2439
2435
|
},
|
|
2440
2436
|
},
|
|
2441
2437
|
/**
|
|
2442
|
-
*
|
|
2438
|
+
* Lookup247: pallet_price_index::PriceIndex
|
|
2443
2439
|
**/
|
|
2444
2440
|
PalletPriceIndexPriceIndex: {
|
|
2445
2441
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2450,7 +2446,7 @@ export default {
|
|
|
2450
2446
|
tick: 'Compact<u64>',
|
|
2451
2447
|
},
|
|
2452
2448
|
/**
|
|
2453
|
-
*
|
|
2449
|
+
* Lookup249: pallet_price_index::EthereumPriceIndex
|
|
2454
2450
|
**/
|
|
2455
2451
|
PalletPriceIndexEthereumPriceIndex: {
|
|
2456
2452
|
ethereumUsdPrice: 'u128',
|
|
@@ -2458,7 +2454,7 @@ export default {
|
|
|
2458
2454
|
tick: 'Compact<u64>',
|
|
2459
2455
|
},
|
|
2460
2456
|
/**
|
|
2461
|
-
*
|
|
2457
|
+
* Lookup250: pallet_grandpa::pallet::Call<T>
|
|
2462
2458
|
**/
|
|
2463
2459
|
PalletGrandpaCall: {
|
|
2464
2460
|
_enum: {
|
|
@@ -2477,14 +2473,14 @@ export default {
|
|
|
2477
2473
|
},
|
|
2478
2474
|
},
|
|
2479
2475
|
/**
|
|
2480
|
-
*
|
|
2476
|
+
* Lookup251: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2481
2477
|
**/
|
|
2482
2478
|
SpConsensusGrandpaEquivocationProof: {
|
|
2483
2479
|
setId: 'u64',
|
|
2484
2480
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2485
2481
|
},
|
|
2486
2482
|
/**
|
|
2487
|
-
*
|
|
2483
|
+
* Lookup252: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2488
2484
|
**/
|
|
2489
2485
|
SpConsensusGrandpaEquivocation: {
|
|
2490
2486
|
_enum: {
|
|
@@ -2493,7 +2489,7 @@ export default {
|
|
|
2493
2489
|
},
|
|
2494
2490
|
},
|
|
2495
2491
|
/**
|
|
2496
|
-
*
|
|
2492
|
+
* Lookup253: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2497
2493
|
**/
|
|
2498
2494
|
FinalityGrandpaEquivocationPrevote: {
|
|
2499
2495
|
roundNumber: 'u64',
|
|
@@ -2502,18 +2498,18 @@ export default {
|
|
|
2502
2498
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2503
2499
|
},
|
|
2504
2500
|
/**
|
|
2505
|
-
*
|
|
2501
|
+
* Lookup254: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2506
2502
|
**/
|
|
2507
2503
|
FinalityGrandpaPrevote: {
|
|
2508
2504
|
targetHash: 'H256',
|
|
2509
2505
|
targetNumber: 'u32',
|
|
2510
2506
|
},
|
|
2511
2507
|
/**
|
|
2512
|
-
*
|
|
2508
|
+
* Lookup255: sp_consensus_grandpa::app::Signature
|
|
2513
2509
|
**/
|
|
2514
2510
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2515
2511
|
/**
|
|
2516
|
-
*
|
|
2512
|
+
* Lookup257: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2517
2513
|
**/
|
|
2518
2514
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2519
2515
|
roundNumber: 'u64',
|
|
@@ -2522,18 +2518,18 @@ export default {
|
|
|
2522
2518
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2523
2519
|
},
|
|
2524
2520
|
/**
|
|
2525
|
-
*
|
|
2521
|
+
* Lookup258: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2526
2522
|
**/
|
|
2527
2523
|
FinalityGrandpaPrecommit: {
|
|
2528
2524
|
targetHash: 'H256',
|
|
2529
2525
|
targetNumber: 'u32',
|
|
2530
2526
|
},
|
|
2531
2527
|
/**
|
|
2532
|
-
*
|
|
2528
|
+
* Lookup260: sp_core::Void
|
|
2533
2529
|
**/
|
|
2534
2530
|
SpCoreVoid: 'Null',
|
|
2535
2531
|
/**
|
|
2536
|
-
*
|
|
2532
|
+
* Lookup261: pallet_block_seal::pallet::Call<T>
|
|
2537
2533
|
**/
|
|
2538
2534
|
PalletBlockSealCall: {
|
|
2539
2535
|
_enum: {
|
|
@@ -2543,7 +2539,7 @@ export default {
|
|
|
2543
2539
|
},
|
|
2544
2540
|
},
|
|
2545
2541
|
/**
|
|
2546
|
-
*
|
|
2542
|
+
* Lookup262: argon_primitives::inherents::BlockSealInherent
|
|
2547
2543
|
**/
|
|
2548
2544
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2549
2545
|
_enum: {
|
|
@@ -2559,7 +2555,7 @@ export default {
|
|
|
2559
2555
|
},
|
|
2560
2556
|
},
|
|
2561
2557
|
/**
|
|
2562
|
-
*
|
|
2558
|
+
* Lookup263: argon_primitives::balance_change::MerkleProof
|
|
2563
2559
|
**/
|
|
2564
2560
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2565
2561
|
proof: 'Vec<H256>',
|
|
@@ -2567,7 +2563,7 @@ export default {
|
|
|
2567
2563
|
leafIndex: 'Compact<u32>',
|
|
2568
2564
|
},
|
|
2569
2565
|
/**
|
|
2570
|
-
*
|
|
2566
|
+
* Lookup265: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2571
2567
|
**/
|
|
2572
2568
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2573
2569
|
accountId: 'AccountId32',
|
|
@@ -2579,7 +2575,7 @@ export default {
|
|
|
2579
2575
|
tick: 'Compact<u64>',
|
|
2580
2576
|
},
|
|
2581
2577
|
/**
|
|
2582
|
-
*
|
|
2578
|
+
* Lookup266: pallet_block_rewards::pallet::Call<T>
|
|
2583
2579
|
**/
|
|
2584
2580
|
PalletBlockRewardsCall: {
|
|
2585
2581
|
_enum: {
|
|
@@ -2592,11 +2588,11 @@ export default {
|
|
|
2592
2588
|
},
|
|
2593
2589
|
},
|
|
2594
2590
|
/**
|
|
2595
|
-
*
|
|
2591
|
+
* Lookup267: pallet_mint::pallet::Call<T>
|
|
2596
2592
|
**/
|
|
2597
2593
|
PalletMintCall: 'Null',
|
|
2598
2594
|
/**
|
|
2599
|
-
*
|
|
2595
|
+
* Lookup268: pallet_balances::pallet::Call<T, I>
|
|
2600
2596
|
**/
|
|
2601
2597
|
PalletBalancesCall: {
|
|
2602
2598
|
_enum: {
|
|
@@ -2641,13 +2637,13 @@ export default {
|
|
|
2641
2637
|
},
|
|
2642
2638
|
},
|
|
2643
2639
|
/**
|
|
2644
|
-
*
|
|
2640
|
+
* Lookup269: pallet_balances::types::AdjustmentDirection
|
|
2645
2641
|
**/
|
|
2646
2642
|
PalletBalancesAdjustmentDirection: {
|
|
2647
2643
|
_enum: ['Increase', 'Decrease'],
|
|
2648
2644
|
},
|
|
2649
2645
|
/**
|
|
2650
|
-
*
|
|
2646
|
+
* Lookup271: pallet_tx_pause::pallet::Call<T>
|
|
2651
2647
|
**/
|
|
2652
2648
|
PalletTxPauseCall: {
|
|
2653
2649
|
_enum: {
|
|
@@ -2660,7 +2656,7 @@ export default {
|
|
|
2660
2656
|
},
|
|
2661
2657
|
},
|
|
2662
2658
|
/**
|
|
2663
|
-
*
|
|
2659
|
+
* Lookup272: pallet_utility::pallet::Call<T>
|
|
2664
2660
|
**/
|
|
2665
2661
|
PalletUtilityCall: {
|
|
2666
2662
|
_enum: {
|
|
@@ -2696,7 +2692,7 @@ export default {
|
|
|
2696
2692
|
},
|
|
2697
2693
|
},
|
|
2698
2694
|
/**
|
|
2699
|
-
*
|
|
2695
|
+
* Lookup274: pallet_sudo::pallet::Call<T>
|
|
2700
2696
|
**/
|
|
2701
2697
|
PalletSudoCall: {
|
|
2702
2698
|
_enum: {
|
|
@@ -2721,7 +2717,7 @@ export default {
|
|
|
2721
2717
|
},
|
|
2722
2718
|
},
|
|
2723
2719
|
/**
|
|
2724
|
-
*
|
|
2720
|
+
* Lookup275: pallet_treasury::pallet::Call<T>
|
|
2725
2721
|
**/
|
|
2726
2722
|
PalletTreasuryCall: {
|
|
2727
2723
|
_enum: {
|
|
@@ -2740,30 +2736,30 @@ export default {
|
|
|
2740
2736
|
buy_argonot_bonds: {
|
|
2741
2737
|
bonds: 'u32',
|
|
2742
2738
|
},
|
|
2743
|
-
|
|
2739
|
+
set_bond_lot_flexible: {
|
|
2744
2740
|
bondLotId: 'u64',
|
|
2745
|
-
|
|
2741
|
+
isFlexible: 'bool',
|
|
2746
2742
|
},
|
|
2747
|
-
|
|
2743
|
+
set_reserved_bond_space: {
|
|
2748
2744
|
vaultId: 'u32',
|
|
2749
|
-
|
|
2745
|
+
reservedBondSpace: 'u32',
|
|
2750
2746
|
},
|
|
2751
2747
|
},
|
|
2752
2748
|
},
|
|
2753
2749
|
/**
|
|
2754
|
-
*
|
|
2750
|
+
* Lookup277: argon_primitives::vault::TreasuryBonusApprovalProof
|
|
2755
2751
|
**/
|
|
2756
2752
|
ArgonPrimitivesVaultTreasuryBonusApprovalProof: {
|
|
2757
2753
|
vaultId: 'Compact<u32>',
|
|
2758
2754
|
beneficiary: 'AccountId32',
|
|
2759
2755
|
bonusPercent: 'Compact<Permill>',
|
|
2760
2756
|
expiresAtFrame: 'Compact<u64>',
|
|
2761
|
-
|
|
2757
|
+
bondSpaceToUnreserve: 'Compact<u32>',
|
|
2762
2758
|
nonce: 'Compact<u64>',
|
|
2763
2759
|
signature: 'SpRuntimeMultiSignature',
|
|
2764
2760
|
},
|
|
2765
2761
|
/**
|
|
2766
|
-
*
|
|
2762
|
+
* Lookup278: pallet_operational_accounts::pallet::Call<T>
|
|
2767
2763
|
**/
|
|
2768
2764
|
PalletOperationalAccountsCall: {
|
|
2769
2765
|
_enum: {
|
|
@@ -2790,7 +2786,7 @@ export default {
|
|
|
2790
2786
|
},
|
|
2791
2787
|
},
|
|
2792
2788
|
/**
|
|
2793
|
-
*
|
|
2789
|
+
* Lookup279: pallet_operational_accounts::pallet::Registration<T>
|
|
2794
2790
|
**/
|
|
2795
2791
|
PalletOperationalAccountsRegistration: {
|
|
2796
2792
|
_enum: {
|
|
@@ -2798,7 +2794,7 @@ export default {
|
|
|
2798
2794
|
},
|
|
2799
2795
|
},
|
|
2800
2796
|
/**
|
|
2801
|
-
*
|
|
2797
|
+
* Lookup280: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2802
2798
|
**/
|
|
2803
2799
|
PalletOperationalAccountsRegistrationV1: {
|
|
2804
2800
|
operationalAccount: 'AccountId32',
|
|
@@ -2811,24 +2807,24 @@ export default {
|
|
|
2811
2807
|
accessProof: 'Option<PalletOperationalAccountsUpstreamAccessProof>',
|
|
2812
2808
|
},
|
|
2813
2809
|
/**
|
|
2814
|
-
*
|
|
2810
|
+
* Lookup281: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2815
2811
|
**/
|
|
2816
2812
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2817
2813
|
/**
|
|
2818
|
-
*
|
|
2814
|
+
* Lookup282: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2819
2815
|
**/
|
|
2820
2816
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2821
2817
|
signature: 'SpRuntimeMultiSignature',
|
|
2822
2818
|
},
|
|
2823
2819
|
/**
|
|
2824
|
-
*
|
|
2820
|
+
* Lookup284: pallet_operational_accounts::pallet::UpstreamAccessProof<sp_core::crypto::AccountId32>
|
|
2825
2821
|
**/
|
|
2826
2822
|
PalletOperationalAccountsUpstreamAccessProof: {
|
|
2827
2823
|
upstreamAccount: 'AccountId32',
|
|
2828
2824
|
signature: 'SpRuntimeMultiSignature',
|
|
2829
2825
|
},
|
|
2830
2826
|
/**
|
|
2831
|
-
*
|
|
2827
|
+
* Lookup287: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2832
2828
|
**/
|
|
2833
2829
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2834
2830
|
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
@@ -2839,7 +2835,7 @@ export default {
|
|
|
2839
2835
|
miningSeatCount: 'Option<u32>',
|
|
2840
2836
|
},
|
|
2841
2837
|
/**
|
|
2842
|
-
*
|
|
2838
|
+
* Lookup289: pallet_ethereum_verifier::pallet::Call<T>
|
|
2843
2839
|
**/
|
|
2844
2840
|
PalletEthereumVerifierCall: {
|
|
2845
2841
|
_enum: {
|
|
@@ -2861,7 +2857,7 @@ export default {
|
|
|
2861
2857
|
},
|
|
2862
2858
|
},
|
|
2863
2859
|
/**
|
|
2864
|
-
*
|
|
2860
|
+
* Lookup290: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2865
2861
|
**/
|
|
2866
2862
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2867
2863
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2871,7 +2867,7 @@ export default {
|
|
|
2871
2867
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2872
2868
|
},
|
|
2873
2869
|
/**
|
|
2874
|
-
*
|
|
2870
|
+
* Lookup291: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2875
2871
|
**/
|
|
2876
2872
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2877
2873
|
slot: 'u64',
|
|
@@ -2881,25 +2877,25 @@ export default {
|
|
|
2881
2877
|
bodyRoot: 'H256',
|
|
2882
2878
|
},
|
|
2883
2879
|
/**
|
|
2884
|
-
*
|
|
2880
|
+
* Lookup292: pallet_ethereum_verifier::types::SyncCommittee
|
|
2885
2881
|
**/
|
|
2886
2882
|
PalletEthereumVerifierSyncCommittee: {
|
|
2887
2883
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2888
2884
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2889
2885
|
},
|
|
2890
2886
|
/**
|
|
2891
|
-
*
|
|
2887
|
+
* Lookup294: snowbridge_beacon_primitives::types::PublicKey
|
|
2892
2888
|
**/
|
|
2893
2889
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2894
2890
|
/**
|
|
2895
|
-
*
|
|
2891
|
+
* Lookup298: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2896
2892
|
**/
|
|
2897
2893
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2898
2894
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2899
2895
|
executionBranch: 'Vec<H256>',
|
|
2900
2896
|
},
|
|
2901
2897
|
/**
|
|
2902
|
-
*
|
|
2898
|
+
* Lookup299: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2903
2899
|
**/
|
|
2904
2900
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2905
2901
|
_enum: {
|
|
@@ -2908,7 +2904,7 @@ export default {
|
|
|
2908
2904
|
},
|
|
2909
2905
|
},
|
|
2910
2906
|
/**
|
|
2911
|
-
*
|
|
2907
|
+
* Lookup300: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2912
2908
|
**/
|
|
2913
2909
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2914
2910
|
parentHash: 'H256',
|
|
@@ -2928,7 +2924,7 @@ export default {
|
|
|
2928
2924
|
withdrawalsRoot: 'H256',
|
|
2929
2925
|
},
|
|
2930
2926
|
/**
|
|
2931
|
-
*
|
|
2927
|
+
* Lookup301: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2932
2928
|
**/
|
|
2933
2929
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2934
2930
|
parentHash: 'H256',
|
|
@@ -2950,7 +2946,7 @@ export default {
|
|
|
2950
2946
|
excessBlobGas: 'u64',
|
|
2951
2947
|
},
|
|
2952
2948
|
/**
|
|
2953
|
-
*
|
|
2949
|
+
* Lookup302: pallet_ethereum_verifier::types::ForkVersions
|
|
2954
2950
|
**/
|
|
2955
2951
|
PalletEthereumVerifierForkVersions: {
|
|
2956
2952
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2962,14 +2958,14 @@ export default {
|
|
|
2962
2958
|
fulu: 'PalletEthereumVerifierFork',
|
|
2963
2959
|
},
|
|
2964
2960
|
/**
|
|
2965
|
-
*
|
|
2961
|
+
* Lookup303: pallet_ethereum_verifier::types::Fork
|
|
2966
2962
|
**/
|
|
2967
2963
|
PalletEthereumVerifierFork: {
|
|
2968
2964
|
version: '[u8;4]',
|
|
2969
2965
|
epoch: 'Compact<u64>',
|
|
2970
2966
|
},
|
|
2971
2967
|
/**
|
|
2972
|
-
*
|
|
2968
|
+
* Lookup304: pallet_ethereum_verifier::types::Update
|
|
2973
2969
|
**/
|
|
2974
2970
|
PalletEthereumVerifierUpdate: {
|
|
2975
2971
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2981,25 +2977,25 @@ export default {
|
|
|
2981
2977
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2982
2978
|
},
|
|
2983
2979
|
/**
|
|
2984
|
-
*
|
|
2980
|
+
* Lookup305: pallet_ethereum_verifier::types::SyncAggregate
|
|
2985
2981
|
**/
|
|
2986
2982
|
PalletEthereumVerifierSyncAggregate: {
|
|
2987
2983
|
syncCommitteeBits: 'Bytes',
|
|
2988
2984
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2989
2985
|
},
|
|
2990
2986
|
/**
|
|
2991
|
-
*
|
|
2987
|
+
* Lookup307: snowbridge_beacon_primitives::types::Signature
|
|
2992
2988
|
**/
|
|
2993
2989
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2994
2990
|
/**
|
|
2995
|
-
*
|
|
2991
|
+
* Lookup310: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2996
2992
|
**/
|
|
2997
2993
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2998
2994
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2999
2995
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
3000
2996
|
},
|
|
3001
2997
|
/**
|
|
3002
|
-
*
|
|
2998
|
+
* Lookup311: pallet_crosschain_transfer::pallet::Call<T>
|
|
3003
2999
|
**/
|
|
3004
3000
|
PalletCrosschainTransferCall: {
|
|
3005
3001
|
_enum: {
|
|
@@ -3065,7 +3061,7 @@ export default {
|
|
|
3065
3061
|
},
|
|
3066
3062
|
},
|
|
3067
3063
|
/**
|
|
3068
|
-
*
|
|
3064
|
+
* Lookup312: pallet_crosschain_transfer::pallet::ChainConfig
|
|
3069
3065
|
**/
|
|
3070
3066
|
PalletCrosschainTransferChainConfig: {
|
|
3071
3067
|
_enum: {
|
|
@@ -3078,7 +3074,7 @@ export default {
|
|
|
3078
3074
|
},
|
|
3079
3075
|
},
|
|
3080
3076
|
/**
|
|
3081
|
-
*
|
|
3077
|
+
* Lookup314: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3082
3078
|
**/
|
|
3083
3079
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3084
3080
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3087,27 +3083,27 @@ export default {
|
|
|
3087
3083
|
estimatedMicrogonsPerEth: 'u128',
|
|
3088
3084
|
},
|
|
3089
3085
|
/**
|
|
3090
|
-
*
|
|
3086
|
+
* Lookup317: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3091
3087
|
**/
|
|
3092
3088
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3093
3089
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3094
3090
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3095
3091
|
},
|
|
3096
3092
|
/**
|
|
3097
|
-
*
|
|
3093
|
+
* Lookup318: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3098
3094
|
**/
|
|
3099
3095
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3100
3096
|
anchorBlockHash: 'H256',
|
|
3101
3097
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3102
3098
|
},
|
|
3103
3099
|
/**
|
|
3104
|
-
*
|
|
3100
|
+
* Lookup320: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3105
3101
|
**/
|
|
3106
3102
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3107
3103
|
rlp: 'Bytes',
|
|
3108
3104
|
},
|
|
3109
3105
|
/**
|
|
3110
|
-
*
|
|
3106
|
+
* Lookup324: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3111
3107
|
**/
|
|
3112
3108
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3113
3109
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3115,28 +3111,28 @@ export default {
|
|
|
3115
3111
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3116
3112
|
},
|
|
3117
3113
|
/**
|
|
3118
|
-
*
|
|
3114
|
+
* Lookup325: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3119
3115
|
**/
|
|
3120
3116
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3121
3117
|
nodes: 'Vec<Bytes>',
|
|
3122
3118
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3123
3119
|
},
|
|
3124
3120
|
/**
|
|
3125
|
-
*
|
|
3121
|
+
* Lookup329: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3126
3122
|
**/
|
|
3127
3123
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3128
3124
|
transactionIndex: 'Compact<u64>',
|
|
3129
3125
|
nodeIndexes: 'Vec<u16>',
|
|
3130
3126
|
},
|
|
3131
3127
|
/**
|
|
3132
|
-
*
|
|
3128
|
+
* Lookup334: argon_primitives::ethereum::EthereumReceiptLog
|
|
3133
3129
|
**/
|
|
3134
3130
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3135
3131
|
transactionIndex: 'Compact<u64>',
|
|
3136
3132
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3137
3133
|
},
|
|
3138
3134
|
/**
|
|
3139
|
-
*
|
|
3135
|
+
* Lookup335: argon_primitives::ethereum::EthereumLog
|
|
3140
3136
|
**/
|
|
3141
3137
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3142
3138
|
address: 'H160',
|
|
@@ -3144,7 +3140,7 @@ export default {
|
|
|
3144
3140
|
data: 'Bytes',
|
|
3145
3141
|
},
|
|
3146
3142
|
/**
|
|
3147
|
-
*
|
|
3143
|
+
* Lookup340: pallet_bootstrap::pallet::Call<T>
|
|
3148
3144
|
**/
|
|
3149
3145
|
PalletBootstrapCall: {
|
|
3150
3146
|
_enum: {
|
|
@@ -3160,13 +3156,13 @@ export default {
|
|
|
3160
3156
|
},
|
|
3161
3157
|
},
|
|
3162
3158
|
/**
|
|
3163
|
-
*
|
|
3159
|
+
* Lookup341: pallet_bootstrap::pallet::RecoveryProof
|
|
3164
3160
|
**/
|
|
3165
3161
|
PalletBootstrapRecoveryProof: {
|
|
3166
3162
|
signature: '[u8;64]',
|
|
3167
3163
|
},
|
|
3168
3164
|
/**
|
|
3169
|
-
*
|
|
3165
|
+
* Lookup343: pallet_multisig::pallet::Error<T>
|
|
3170
3166
|
**/
|
|
3171
3167
|
PalletMultisigError: {
|
|
3172
3168
|
_enum: [
|
|
@@ -3187,7 +3183,7 @@ export default {
|
|
|
3187
3183
|
],
|
|
3188
3184
|
},
|
|
3189
3185
|
/**
|
|
3190
|
-
*
|
|
3186
|
+
* Lookup346: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3191
3187
|
**/
|
|
3192
3188
|
PalletProxyProxyDefinition: {
|
|
3193
3189
|
delegate: 'AccountId32',
|
|
@@ -3195,7 +3191,7 @@ export default {
|
|
|
3195
3191
|
delay: 'u32',
|
|
3196
3192
|
},
|
|
3197
3193
|
/**
|
|
3198
|
-
*
|
|
3194
|
+
* Lookup350: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3199
3195
|
**/
|
|
3200
3196
|
PalletProxyAnnouncement: {
|
|
3201
3197
|
real: 'AccountId32',
|
|
@@ -3203,7 +3199,7 @@ export default {
|
|
|
3203
3199
|
height: 'u32',
|
|
3204
3200
|
},
|
|
3205
3201
|
/**
|
|
3206
|
-
*
|
|
3202
|
+
* Lookup352: pallet_proxy::pallet::Error<T>
|
|
3207
3203
|
**/
|
|
3208
3204
|
PalletProxyError: {
|
|
3209
3205
|
_enum: [
|
|
@@ -3218,18 +3214,18 @@ export default {
|
|
|
3218
3214
|
],
|
|
3219
3215
|
},
|
|
3220
3216
|
/**
|
|
3221
|
-
*
|
|
3217
|
+
* Lookup353: argon_primitives::tick::Ticker
|
|
3222
3218
|
**/
|
|
3223
3219
|
ArgonPrimitivesTickTicker: {
|
|
3224
3220
|
tickDurationMillis: 'Compact<u64>',
|
|
3225
3221
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3226
3222
|
},
|
|
3227
3223
|
/**
|
|
3228
|
-
*
|
|
3224
|
+
* Lookup355: pallet_ticks::pallet::Error<T>
|
|
3229
3225
|
**/
|
|
3230
3226
|
PalletTicksError: 'Null',
|
|
3231
3227
|
/**
|
|
3232
|
-
*
|
|
3228
|
+
* Lookup358: pallet_mining_slot::MinerNonceScoring<T>
|
|
3233
3229
|
**/
|
|
3234
3230
|
PalletMiningSlotMinerNonceScoring: {
|
|
3235
3231
|
nonce: 'U256',
|
|
@@ -3238,7 +3234,7 @@ export default {
|
|
|
3238
3234
|
frameStartBlocksWonSurplus: 'i16',
|
|
3239
3235
|
},
|
|
3240
3236
|
/**
|
|
3241
|
-
*
|
|
3237
|
+
* Lookup370: argon_primitives::block_seal::MiningBidStats
|
|
3242
3238
|
**/
|
|
3243
3239
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3244
3240
|
bidsCount: 'u32',
|
|
@@ -3247,7 +3243,7 @@ export default {
|
|
|
3247
3243
|
bidAmountSum: 'u128',
|
|
3248
3244
|
},
|
|
3249
3245
|
/**
|
|
3250
|
-
*
|
|
3246
|
+
* Lookup374: argon_primitives::block_seal::MiningSlotConfig
|
|
3251
3247
|
**/
|
|
3252
3248
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3253
3249
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3255,7 +3251,7 @@ export default {
|
|
|
3255
3251
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3256
3252
|
},
|
|
3257
3253
|
/**
|
|
3258
|
-
*
|
|
3254
|
+
* Lookup384: pallet_mining_slot::pallet::Error<T>
|
|
3259
3255
|
**/
|
|
3260
3256
|
PalletMiningSlotError: {
|
|
3261
3257
|
_enum: [
|
|
@@ -3273,7 +3269,7 @@ export default {
|
|
|
3273
3269
|
],
|
|
3274
3270
|
},
|
|
3275
3271
|
/**
|
|
3276
|
-
*
|
|
3272
|
+
* Lookup385: argon_primitives::bitcoin::UtxoValue
|
|
3277
3273
|
**/
|
|
3278
3274
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3279
3275
|
utxoId: 'u64',
|
|
@@ -3283,7 +3279,7 @@ export default {
|
|
|
3283
3279
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3284
3280
|
},
|
|
3285
3281
|
/**
|
|
3286
|
-
*
|
|
3282
|
+
* Lookup386: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3287
3283
|
**/
|
|
3288
3284
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3289
3285
|
_enum: {
|
|
@@ -3293,13 +3289,13 @@ export default {
|
|
|
3293
3289
|
},
|
|
3294
3290
|
},
|
|
3295
3291
|
/**
|
|
3296
|
-
*
|
|
3292
|
+
* Lookup395: argon_primitives::bitcoin::BitcoinNetwork
|
|
3297
3293
|
**/
|
|
3298
3294
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3299
3295
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3300
3296
|
},
|
|
3301
3297
|
/**
|
|
3302
|
-
*
|
|
3298
|
+
* Lookup396: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3303
3299
|
**/
|
|
3304
3300
|
PalletBitcoinUtxosError: {
|
|
3305
3301
|
_enum: [
|
|
@@ -3321,7 +3317,7 @@ export default {
|
|
|
3321
3317
|
],
|
|
3322
3318
|
},
|
|
3323
3319
|
/**
|
|
3324
|
-
*
|
|
3320
|
+
* Lookup397: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3325
3321
|
**/
|
|
3326
3322
|
ArgonPrimitivesVault: {
|
|
3327
3323
|
operatorAccountId: 'AccountId32',
|
|
@@ -3329,12 +3325,12 @@ export default {
|
|
|
3329
3325
|
securitization: 'Compact<u128>',
|
|
3330
3326
|
securitizationTarget: 'Compact<u128>',
|
|
3331
3327
|
securitizationLocked: 'Compact<u128>',
|
|
3332
|
-
|
|
3333
|
-
|
|
3328
|
+
flexibleSecuritizationLocked: 'Compact<u128>',
|
|
3329
|
+
reservedSecuritizationSpace: 'Compact<u128>',
|
|
3334
3330
|
securitizationPendingActivation: 'Compact<u128>',
|
|
3335
3331
|
lockedSatoshis: 'Compact<u64>',
|
|
3336
3332
|
securitizedSatoshis: 'Compact<u64>',
|
|
3337
|
-
|
|
3333
|
+
flexibleSecuritizedSatoshis: 'Compact<u64>',
|
|
3338
3334
|
securitizationReleaseSchedule: 'BTreeMap<u64, u128>',
|
|
3339
3335
|
securitizationRatio: 'Compact<u128>',
|
|
3340
3336
|
isClosed: 'bool',
|
|
@@ -3344,14 +3340,14 @@ export default {
|
|
|
3344
3340
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3345
3341
|
},
|
|
3346
3342
|
/**
|
|
3347
|
-
*
|
|
3343
|
+
* Lookup404: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3348
3344
|
**/
|
|
3349
3345
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3350
3346
|
committedMicronots: 'Compact<u128>',
|
|
3351
3347
|
encumberedMicronots: 'Compact<u128>',
|
|
3352
3348
|
},
|
|
3353
3349
|
/**
|
|
3354
|
-
*
|
|
3350
|
+
* Lookup406: argon_primitives::bitcoin::BitcoinXPub
|
|
3355
3351
|
**/
|
|
3356
3352
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3357
3353
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3362,13 +3358,13 @@ export default {
|
|
|
3362
3358
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3363
3359
|
},
|
|
3364
3360
|
/**
|
|
3365
|
-
*
|
|
3361
|
+
* Lookup408: argon_primitives::bitcoin::NetworkKind
|
|
3366
3362
|
**/
|
|
3367
3363
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3368
3364
|
_enum: ['Main', 'Test'],
|
|
3369
3365
|
},
|
|
3370
3366
|
/**
|
|
3371
|
-
*
|
|
3367
|
+
* Lookup417: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3372
3368
|
**/
|
|
3373
3369
|
PalletVaultsVaultFrameRevenue: {
|
|
3374
3370
|
frameId: 'Compact<u64>',
|
|
@@ -3389,7 +3385,7 @@ export default {
|
|
|
3389
3385
|
uncollectedRevenue: 'Compact<u128>',
|
|
3390
3386
|
},
|
|
3391
3387
|
/**
|
|
3392
|
-
*
|
|
3388
|
+
* Lookup419: pallet_vaults::pallet::Error<T>
|
|
3393
3389
|
**/
|
|
3394
3390
|
PalletVaultsError: {
|
|
3395
3391
|
_enum: [
|
|
@@ -3428,7 +3424,7 @@ export default {
|
|
|
3428
3424
|
],
|
|
3429
3425
|
},
|
|
3430
3426
|
/**
|
|
3431
|
-
*
|
|
3427
|
+
* Lookup420: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3432
3428
|
**/
|
|
3433
3429
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3434
3430
|
vaultId: 'Compact<u32>',
|
|
@@ -3449,12 +3445,12 @@ export default {
|
|
|
3449
3445
|
createdAtHeight: 'Compact<u64>',
|
|
3450
3446
|
utxoScriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
|
|
3451
3447
|
isFunded: 'bool',
|
|
3452
|
-
|
|
3448
|
+
isFlexible: 'bool',
|
|
3453
3449
|
fundHoldExtensions: 'BTreeMap<u64, u128>',
|
|
3454
3450
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3455
3451
|
},
|
|
3456
3452
|
/**
|
|
3457
|
-
*
|
|
3453
|
+
* Lookup424: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3458
3454
|
**/
|
|
3459
3455
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3460
3456
|
utxoId: 'Compact<u64>',
|
|
@@ -3465,7 +3461,7 @@ export default {
|
|
|
3465
3461
|
redemptionAmount: 'Compact<u128>',
|
|
3466
3462
|
},
|
|
3467
3463
|
/**
|
|
3468
|
-
*
|
|
3464
|
+
* Lookup426: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3469
3465
|
**/
|
|
3470
3466
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3471
3467
|
utxoId: 'Compact<u64>',
|
|
@@ -3475,7 +3471,7 @@ export default {
|
|
|
3475
3471
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3476
3472
|
},
|
|
3477
3473
|
/**
|
|
3478
|
-
*
|
|
3474
|
+
* Lookup428: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3479
3475
|
**/
|
|
3480
3476
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3481
3477
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3483,7 +3479,7 @@ export default {
|
|
|
3483
3479
|
createdAtArgonBlockNumber: 'u32',
|
|
3484
3480
|
},
|
|
3485
3481
|
/**
|
|
3486
|
-
*
|
|
3482
|
+
* Lookup435: pallet_bitcoin_locks::pallet::Error<T>
|
|
3487
3483
|
**/
|
|
3488
3484
|
PalletBitcoinLocksError: {
|
|
3489
3485
|
_enum: {
|
|
@@ -3518,9 +3514,6 @@ export default {
|
|
|
3518
3514
|
LockPendingFunding: 'Null',
|
|
3519
3515
|
OverflowError: 'Null',
|
|
3520
3516
|
IneligibleMicrogonRateRequested: 'Null',
|
|
3521
|
-
FeeCouponWrongVault: 'Null',
|
|
3522
|
-
FeeCouponWrongChain: 'Null',
|
|
3523
|
-
FeeCouponWrongAccount: 'Null',
|
|
3524
3517
|
FeeCouponExpired: 'Null',
|
|
3525
3518
|
InvalidFeeCouponSignature: 'Null',
|
|
3526
3519
|
FeeCouponAlreadyUsed: 'Null',
|
|
@@ -3532,7 +3525,7 @@ export default {
|
|
|
3532
3525
|
},
|
|
3533
3526
|
},
|
|
3534
3527
|
/**
|
|
3535
|
-
*
|
|
3528
|
+
* Lookup436: argon_primitives::vault::VaultError
|
|
3536
3529
|
**/
|
|
3537
3530
|
ArgonPrimitivesVaultVaultError: {
|
|
3538
3531
|
_enum: [
|
|
@@ -3552,7 +3545,7 @@ export default {
|
|
|
3552
3545
|
],
|
|
3553
3546
|
},
|
|
3554
3547
|
/**
|
|
3555
|
-
*
|
|
3548
|
+
* Lookup448: pallet_notaries::pallet::Error<T>
|
|
3556
3549
|
**/
|
|
3557
3550
|
PalletNotariesError: {
|
|
3558
3551
|
_enum: [
|
|
@@ -3568,7 +3561,7 @@ export default {
|
|
|
3568
3561
|
],
|
|
3569
3562
|
},
|
|
3570
3563
|
/**
|
|
3571
|
-
*
|
|
3564
|
+
* Lookup452: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3572
3565
|
**/
|
|
3573
3566
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3574
3567
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3578,7 +3571,7 @@ export default {
|
|
|
3578
3571
|
parentSecret: 'Option<H256>',
|
|
3579
3572
|
},
|
|
3580
3573
|
/**
|
|
3581
|
-
*
|
|
3574
|
+
* Lookup455: pallet_notebook::pallet::Error<T>
|
|
3582
3575
|
**/
|
|
3583
3576
|
PalletNotebookError: {
|
|
3584
3577
|
_enum: [
|
|
@@ -3600,7 +3593,7 @@ export default {
|
|
|
3600
3593
|
],
|
|
3601
3594
|
},
|
|
3602
3595
|
/**
|
|
3603
|
-
*
|
|
3596
|
+
* Lookup456: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3604
3597
|
**/
|
|
3605
3598
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3606
3599
|
accountId: 'AccountId32',
|
|
@@ -3609,11 +3602,11 @@ export default {
|
|
|
3609
3602
|
notaryId: 'u32',
|
|
3610
3603
|
},
|
|
3611
3604
|
/**
|
|
3612
|
-
*
|
|
3605
|
+
* Lookup458: frame_support::PalletId
|
|
3613
3606
|
**/
|
|
3614
3607
|
FrameSupportPalletId: '[u8;8]',
|
|
3615
3608
|
/**
|
|
3616
|
-
*
|
|
3609
|
+
* Lookup459: pallet_localchain_transfer::pallet::Error<T>
|
|
3617
3610
|
**/
|
|
3618
3611
|
PalletLocalchainTransferError: {
|
|
3619
3612
|
_enum: [
|
|
@@ -3628,7 +3621,7 @@ export default {
|
|
|
3628
3621
|
],
|
|
3629
3622
|
},
|
|
3630
3623
|
/**
|
|
3631
|
-
*
|
|
3624
|
+
* Lookup463: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3632
3625
|
**/
|
|
3633
3626
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3634
3627
|
notaryId: 'Compact<u32>',
|
|
@@ -3638,13 +3631,13 @@ export default {
|
|
|
3638
3631
|
blockVotingPower: 'Compact<u128>',
|
|
3639
3632
|
},
|
|
3640
3633
|
/**
|
|
3641
|
-
*
|
|
3634
|
+
* Lookup468: pallet_block_seal_spec::pallet::Error<T>
|
|
3642
3635
|
**/
|
|
3643
3636
|
PalletBlockSealSpecError: {
|
|
3644
3637
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3645
3638
|
},
|
|
3646
3639
|
/**
|
|
3647
|
-
*
|
|
3640
|
+
* Lookup470: pallet_domains::pallet::Error<T>
|
|
3648
3641
|
**/
|
|
3649
3642
|
PalletDomainsError: {
|
|
3650
3643
|
_enum: [
|
|
@@ -3656,7 +3649,7 @@ export default {
|
|
|
3656
3649
|
],
|
|
3657
3650
|
},
|
|
3658
3651
|
/**
|
|
3659
|
-
*
|
|
3652
|
+
* Lookup472: pallet_price_index::EthereumPriceFrameAccumulator
|
|
3660
3653
|
**/
|
|
3661
3654
|
PalletPriceIndexEthereumPriceFrameAccumulator: {
|
|
3662
3655
|
totalUsdPrice: 'u128',
|
|
@@ -3664,7 +3657,7 @@ export default {
|
|
|
3664
3657
|
sampleCount: 'Compact<u32>',
|
|
3665
3658
|
},
|
|
3666
3659
|
/**
|
|
3667
|
-
*
|
|
3660
|
+
* Lookup477: pallet_price_index::CpiMeasurementBucket
|
|
3668
3661
|
**/
|
|
3669
3662
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3670
3663
|
tickRange: '(u64,u64)',
|
|
@@ -3672,7 +3665,7 @@ export default {
|
|
|
3672
3665
|
measurementsCount: 'u32',
|
|
3673
3666
|
},
|
|
3674
3667
|
/**
|
|
3675
|
-
*
|
|
3668
|
+
* Lookup481: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3676
3669
|
**/
|
|
3677
3670
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3678
3671
|
frameId: 'Compact<u64>',
|
|
@@ -3680,7 +3673,7 @@ export default {
|
|
|
3680
3673
|
sampleCount: 'Compact<u32>',
|
|
3681
3674
|
},
|
|
3682
3675
|
/**
|
|
3683
|
-
*
|
|
3676
|
+
* Lookup482: pallet_price_index::pallet::Error<T>
|
|
3684
3677
|
**/
|
|
3685
3678
|
PalletPriceIndexError: {
|
|
3686
3679
|
_enum: [
|
|
@@ -3692,7 +3685,7 @@ export default {
|
|
|
3692
3685
|
],
|
|
3693
3686
|
},
|
|
3694
3687
|
/**
|
|
3695
|
-
*
|
|
3688
|
+
* Lookup483: pallet_grandpa::StoredState<N>
|
|
3696
3689
|
**/
|
|
3697
3690
|
PalletGrandpaStoredState: {
|
|
3698
3691
|
_enum: {
|
|
@@ -3709,7 +3702,7 @@ export default {
|
|
|
3709
3702
|
},
|
|
3710
3703
|
},
|
|
3711
3704
|
/**
|
|
3712
|
-
*
|
|
3705
|
+
* Lookup484: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3713
3706
|
**/
|
|
3714
3707
|
PalletGrandpaStoredPendingChange: {
|
|
3715
3708
|
scheduledAt: 'u32',
|
|
@@ -3718,7 +3711,7 @@ export default {
|
|
|
3718
3711
|
forced: 'Option<u32>',
|
|
3719
3712
|
},
|
|
3720
3713
|
/**
|
|
3721
|
-
*
|
|
3714
|
+
* Lookup486: pallet_grandpa::pallet::Error<T>
|
|
3722
3715
|
**/
|
|
3723
3716
|
PalletGrandpaError: {
|
|
3724
3717
|
_enum: [
|
|
@@ -3732,7 +3725,7 @@ export default {
|
|
|
3732
3725
|
],
|
|
3733
3726
|
},
|
|
3734
3727
|
/**
|
|
3735
|
-
*
|
|
3728
|
+
* Lookup487: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3736
3729
|
**/
|
|
3737
3730
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3738
3731
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3740,7 +3733,7 @@ export default {
|
|
|
3740
3733
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3741
3734
|
},
|
|
3742
3735
|
/**
|
|
3743
|
-
*
|
|
3736
|
+
* Lookup489: pallet_block_seal::pallet::Error<T>
|
|
3744
3737
|
**/
|
|
3745
3738
|
PalletBlockSealError: {
|
|
3746
3739
|
_enum: [
|
|
@@ -3768,11 +3761,11 @@ export default {
|
|
|
3768
3761
|
],
|
|
3769
3762
|
},
|
|
3770
3763
|
/**
|
|
3771
|
-
*
|
|
3764
|
+
* Lookup493: pallet_block_rewards::pallet::Error<T>
|
|
3772
3765
|
**/
|
|
3773
3766
|
PalletBlockRewardsError: 'Null',
|
|
3774
3767
|
/**
|
|
3775
|
-
*
|
|
3768
|
+
* Lookup494: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3776
3769
|
**/
|
|
3777
3770
|
PalletMintPendingMintUtxo: {
|
|
3778
3771
|
utxoId: 'Compact<u64>',
|
|
@@ -3781,7 +3774,7 @@ export default {
|
|
|
3781
3774
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3782
3775
|
},
|
|
3783
3776
|
/**
|
|
3784
|
-
*
|
|
3777
|
+
* Lookup496: pallet_mint::pallet::MintQueueCursor
|
|
3785
3778
|
**/
|
|
3786
3779
|
PalletMintMintQueueCursor: {
|
|
3787
3780
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3789,7 +3782,7 @@ export default {
|
|
|
3789
3782
|
payoutCursorFrameId: 'Option<u64>',
|
|
3790
3783
|
},
|
|
3791
3784
|
/**
|
|
3792
|
-
*
|
|
3785
|
+
* Lookup499: pallet_mint::pallet::MintAction<B>
|
|
3793
3786
|
**/
|
|
3794
3787
|
PalletMintMintAction: {
|
|
3795
3788
|
argonBurned: 'u128',
|
|
@@ -3797,13 +3790,13 @@ export default {
|
|
|
3797
3790
|
bitcoinMinted: 'u128',
|
|
3798
3791
|
},
|
|
3799
3792
|
/**
|
|
3800
|
-
*
|
|
3793
|
+
* Lookup501: pallet_mint::pallet::Error<T>
|
|
3801
3794
|
**/
|
|
3802
3795
|
PalletMintError: {
|
|
3803
3796
|
_enum: ['TooManyPendingMints'],
|
|
3804
3797
|
},
|
|
3805
3798
|
/**
|
|
3806
|
-
*
|
|
3799
|
+
* Lookup503: pallet_balances::types::BalanceLock<Balance>
|
|
3807
3800
|
**/
|
|
3808
3801
|
PalletBalancesBalanceLock: {
|
|
3809
3802
|
id: '[u8;8]',
|
|
@@ -3811,34 +3804,34 @@ export default {
|
|
|
3811
3804
|
reasons: 'PalletBalancesReasons',
|
|
3812
3805
|
},
|
|
3813
3806
|
/**
|
|
3814
|
-
*
|
|
3807
|
+
* Lookup504: pallet_balances::types::Reasons
|
|
3815
3808
|
**/
|
|
3816
3809
|
PalletBalancesReasons: {
|
|
3817
3810
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3818
3811
|
},
|
|
3819
3812
|
/**
|
|
3820
|
-
*
|
|
3813
|
+
* Lookup507: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3821
3814
|
**/
|
|
3822
3815
|
PalletBalancesReserveData: {
|
|
3823
3816
|
id: '[u8;8]',
|
|
3824
3817
|
amount: 'u128',
|
|
3825
3818
|
},
|
|
3826
3819
|
/**
|
|
3827
|
-
*
|
|
3820
|
+
* Lookup510: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3828
3821
|
**/
|
|
3829
3822
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3830
3823
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3831
3824
|
amount: 'u128',
|
|
3832
3825
|
},
|
|
3833
3826
|
/**
|
|
3834
|
-
*
|
|
3827
|
+
* Lookup513: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3835
3828
|
**/
|
|
3836
3829
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3837
3830
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3838
3831
|
amount: 'u128',
|
|
3839
3832
|
},
|
|
3840
3833
|
/**
|
|
3841
|
-
*
|
|
3834
|
+
* Lookup514: argon_runtime::RuntimeFreezeReason
|
|
3842
3835
|
**/
|
|
3843
3836
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3844
3837
|
_enum: {
|
|
@@ -3865,13 +3858,13 @@ export default {
|
|
|
3865
3858
|
},
|
|
3866
3859
|
},
|
|
3867
3860
|
/**
|
|
3868
|
-
*
|
|
3861
|
+
* Lookup515: pallet_block_rewards::pallet::FreezeReason
|
|
3869
3862
|
**/
|
|
3870
3863
|
PalletBlockRewardsFreezeReason: {
|
|
3871
3864
|
_enum: ['MaturationPeriod'],
|
|
3872
3865
|
},
|
|
3873
3866
|
/**
|
|
3874
|
-
*
|
|
3867
|
+
* Lookup517: pallet_balances::pallet::Error<T, I>
|
|
3875
3868
|
**/
|
|
3876
3869
|
PalletBalancesError: {
|
|
3877
3870
|
_enum: [
|
|
@@ -3890,64 +3883,64 @@ export default {
|
|
|
3890
3883
|
],
|
|
3891
3884
|
},
|
|
3892
3885
|
/**
|
|
3893
|
-
*
|
|
3886
|
+
* Lookup519: pallet_tx_pause::pallet::Error<T>
|
|
3894
3887
|
**/
|
|
3895
3888
|
PalletTxPauseError: {
|
|
3896
3889
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3897
3890
|
},
|
|
3898
3891
|
/**
|
|
3899
|
-
*
|
|
3892
|
+
* Lookup520: pallet_transaction_payment::Releases
|
|
3900
3893
|
**/
|
|
3901
3894
|
PalletTransactionPaymentReleases: {
|
|
3902
3895
|
_enum: ['V1Ancient', 'V2'],
|
|
3903
3896
|
},
|
|
3904
3897
|
/**
|
|
3905
|
-
*
|
|
3898
|
+
* Lookup521: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3906
3899
|
**/
|
|
3907
3900
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3908
3901
|
/**
|
|
3909
|
-
*
|
|
3902
|
+
* Lookup522: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3910
3903
|
**/
|
|
3911
3904
|
FrameSupportTokensFungibleImbalance: {
|
|
3912
3905
|
amount: 'u128',
|
|
3913
3906
|
},
|
|
3914
3907
|
/**
|
|
3915
|
-
*
|
|
3908
|
+
* Lookup523: pallet_utility::pallet::Error<T>
|
|
3916
3909
|
**/
|
|
3917
3910
|
PalletUtilityError: {
|
|
3918
3911
|
_enum: ['TooManyCalls'],
|
|
3919
3912
|
},
|
|
3920
3913
|
/**
|
|
3921
|
-
*
|
|
3914
|
+
* Lookup524: pallet_sudo::pallet::Error<T>
|
|
3922
3915
|
**/
|
|
3923
3916
|
PalletSudoError: {
|
|
3924
3917
|
_enum: ['RequireSudo'],
|
|
3925
3918
|
},
|
|
3926
3919
|
/**
|
|
3927
|
-
*
|
|
3920
|
+
* Lookup525: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3928
3921
|
**/
|
|
3929
3922
|
PalletTreasuryFrameVaultCapital: {
|
|
3930
3923
|
frameId: 'Compact<u64>',
|
|
3931
3924
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3932
3925
|
},
|
|
3933
3926
|
/**
|
|
3934
|
-
*
|
|
3927
|
+
* Lookup527: pallet_treasury::pallet::VaultCapital<T>
|
|
3935
3928
|
**/
|
|
3936
3929
|
PalletTreasuryVaultCapital: {
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3930
|
+
regularBondAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
3931
|
+
flexibleBondsEligible: 'Compact<u32>',
|
|
3932
|
+
flexibleProrata: 'u128',
|
|
3940
3933
|
eligibleBonds: 'Compact<u32>',
|
|
3941
3934
|
},
|
|
3942
3935
|
/**
|
|
3943
|
-
*
|
|
3936
|
+
* Lookup529: pallet_treasury::pallet::BondLotAllocation
|
|
3944
3937
|
**/
|
|
3945
3938
|
PalletTreasuryBondLotAllocation: {
|
|
3946
3939
|
bondLotId: 'Compact<u64>',
|
|
3947
3940
|
prorata: 'u128',
|
|
3948
3941
|
},
|
|
3949
3942
|
/**
|
|
3950
|
-
*
|
|
3943
|
+
* Lookup534: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3951
3944
|
**/
|
|
3952
3945
|
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3953
3946
|
frameId: 'Compact<u64>',
|
|
@@ -3955,20 +3948,20 @@ export default {
|
|
|
3955
3948
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3956
3949
|
},
|
|
3957
3950
|
/**
|
|
3958
|
-
*
|
|
3951
|
+
* Lookup536: pallet_treasury::pallet::BondLotSummary
|
|
3959
3952
|
**/
|
|
3960
3953
|
PalletTreasuryBondLotSummary: {
|
|
3961
3954
|
bondLotId: 'Compact<u64>',
|
|
3962
3955
|
bonds: 'Compact<u32>',
|
|
3963
3956
|
},
|
|
3964
3957
|
/**
|
|
3965
|
-
*
|
|
3958
|
+
* Lookup538: pallet_treasury::pallet::BondLot<T>
|
|
3966
3959
|
**/
|
|
3967
3960
|
PalletTreasuryBondLot: {
|
|
3968
3961
|
owner: 'AccountId32',
|
|
3969
3962
|
program: 'PalletTreasuryBondProgram',
|
|
3970
3963
|
bonds: 'Compact<u32>',
|
|
3971
|
-
|
|
3964
|
+
isFlexible: 'bool',
|
|
3972
3965
|
createdFrameId: 'Compact<u64>',
|
|
3973
3966
|
participatedFrames: 'Compact<u32>',
|
|
3974
3967
|
lastFrameEarningsFrameId: 'Option<u64>',
|
|
@@ -3978,7 +3971,7 @@ export default {
|
|
|
3978
3971
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3979
3972
|
},
|
|
3980
3973
|
/**
|
|
3981
|
-
*
|
|
3974
|
+
* Lookup539: pallet_treasury::pallet::BondProgram
|
|
3982
3975
|
**/
|
|
3983
3976
|
PalletTreasuryBondProgram: {
|
|
3984
3977
|
_enum: {
|
|
@@ -3991,15 +3984,15 @@ export default {
|
|
|
3991
3984
|
},
|
|
3992
3985
|
},
|
|
3993
3986
|
/**
|
|
3994
|
-
*
|
|
3987
|
+
* Lookup542: pallet_treasury::pallet::VaultBondState<T>
|
|
3995
3988
|
**/
|
|
3996
3989
|
PalletTreasuryVaultBondState: {
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
3990
|
+
regularBondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3991
|
+
flexibleBonds: 'Compact<u32>',
|
|
3992
|
+
reservedBondSpace: 'Compact<u32>',
|
|
4000
3993
|
},
|
|
4001
3994
|
/**
|
|
4002
|
-
*
|
|
3995
|
+
* Lookup544: pallet_treasury::pallet::Error<T>
|
|
4003
3996
|
**/
|
|
4004
3997
|
PalletTreasuryError: {
|
|
4005
3998
|
_enum: [
|
|
@@ -4012,7 +4005,7 @@ export default {
|
|
|
4012
4005
|
'BondLotNotFound',
|
|
4013
4006
|
'NotBondLotOwner',
|
|
4014
4007
|
'BondLotAlreadyReleasing',
|
|
4015
|
-
'
|
|
4008
|
+
'InsufficientBondSpace',
|
|
4016
4009
|
'ActiveBondAmountBelowEncumberedBacking',
|
|
4017
4010
|
'BonusApprovalWrongVault',
|
|
4018
4011
|
'BonusApprovalWrongAccount',
|
|
@@ -4022,18 +4015,18 @@ export default {
|
|
|
4022
4015
|
'BonusApprovalExceedsProfitSharing',
|
|
4023
4016
|
'ArgonotBondPurchaseBelowCutoff',
|
|
4024
4017
|
'ArgonotBondPurchaseAboveCap',
|
|
4025
|
-
'
|
|
4018
|
+
'BondLotCannotBeFlexible',
|
|
4026
4019
|
'NoPermissions',
|
|
4027
4020
|
],
|
|
4028
4021
|
},
|
|
4029
4022
|
/**
|
|
4030
|
-
*
|
|
4023
|
+
* Lookup545: pallet_fee_control::pallet::Error<T>
|
|
4031
4024
|
**/
|
|
4032
4025
|
PalletFeeControlError: {
|
|
4033
4026
|
_enum: ['SponsoredFeeTooHigh'],
|
|
4034
4027
|
},
|
|
4035
4028
|
/**
|
|
4036
|
-
*
|
|
4029
|
+
* Lookup546: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
4037
4030
|
**/
|
|
4038
4031
|
PalletOperationalAccountsOperationalAccount: {
|
|
4039
4032
|
vaultAccount: 'AccountId32',
|
|
@@ -4058,14 +4051,14 @@ export default {
|
|
|
4058
4051
|
isOperationallyCertified: 'bool',
|
|
4059
4052
|
},
|
|
4060
4053
|
/**
|
|
4061
|
-
*
|
|
4054
|
+
* Lookup547: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
4062
4055
|
**/
|
|
4063
4056
|
PalletOperationalAccountsRewardsConfig: {
|
|
4064
4057
|
operationalCertificationReward: 'Compact<u128>',
|
|
4065
4058
|
operationalCertificationBonusReward: 'Compact<u128>',
|
|
4066
4059
|
},
|
|
4067
4060
|
/**
|
|
4068
|
-
*
|
|
4061
|
+
* Lookup548: pallet_operational_accounts::pallet::Error<T>
|
|
4069
4062
|
**/
|
|
4070
4063
|
PalletOperationalAccountsError: {
|
|
4071
4064
|
_enum: [
|
|
@@ -4092,13 +4085,13 @@ export default {
|
|
|
4092
4085
|
],
|
|
4093
4086
|
},
|
|
4094
4087
|
/**
|
|
4095
|
-
*
|
|
4088
|
+
* Lookup549: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
4096
4089
|
**/
|
|
4097
4090
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
4098
4091
|
slot: 'Compact<u64>',
|
|
4099
4092
|
},
|
|
4100
4093
|
/**
|
|
4101
|
-
*
|
|
4094
|
+
* Lookup550: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
4102
4095
|
**/
|
|
4103
4096
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
4104
4097
|
blockNumber: 'Compact<u64>',
|
|
@@ -4109,7 +4102,7 @@ export default {
|
|
|
4109
4102
|
receiptsRoot: 'H256',
|
|
4110
4103
|
},
|
|
4111
4104
|
/**
|
|
4112
|
-
*
|
|
4105
|
+
* Lookup551: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
4113
4106
|
**/
|
|
4114
4107
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
4115
4108
|
root: 'H256',
|
|
@@ -4117,13 +4110,13 @@ export default {
|
|
|
4117
4110
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
4118
4111
|
},
|
|
4119
4112
|
/**
|
|
4120
|
-
*
|
|
4113
|
+
* Lookup553: snowbridge_milagro_bls::keys::PublicKey
|
|
4121
4114
|
**/
|
|
4122
4115
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
4123
4116
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
4124
4117
|
},
|
|
4125
4118
|
/**
|
|
4126
|
-
*
|
|
4119
|
+
* Lookup554: snowbridge_amcl::bls381::ecp::ECP
|
|
4127
4120
|
**/
|
|
4128
4121
|
SnowbridgeAmclBls381Ecp: {
|
|
4129
4122
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -4131,26 +4124,26 @@ export default {
|
|
|
4131
4124
|
z: 'SnowbridgeAmclBls381Fp',
|
|
4132
4125
|
},
|
|
4133
4126
|
/**
|
|
4134
|
-
*
|
|
4127
|
+
* Lookup555: snowbridge_amcl::bls381::fp::FP
|
|
4135
4128
|
**/
|
|
4136
4129
|
SnowbridgeAmclBls381Fp: {
|
|
4137
4130
|
x: 'SnowbridgeAmclBls381Big',
|
|
4138
4131
|
xes: 'i32',
|
|
4139
4132
|
},
|
|
4140
4133
|
/**
|
|
4141
|
-
*
|
|
4134
|
+
* Lookup556: snowbridge_amcl::bls381::big::Big
|
|
4142
4135
|
**/
|
|
4143
4136
|
SnowbridgeAmclBls381Big: {
|
|
4144
4137
|
w: '[i32;14]',
|
|
4145
4138
|
},
|
|
4146
4139
|
/**
|
|
4147
|
-
*
|
|
4140
|
+
* Lookup560: argon_primitives::ethereum::EthereumBeaconPreset
|
|
4148
4141
|
**/
|
|
4149
4142
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
4150
4143
|
_enum: ['Mainnet', 'Minimal'],
|
|
4151
4144
|
},
|
|
4152
4145
|
/**
|
|
4153
|
-
*
|
|
4146
|
+
* Lookup561: pallet_ethereum_verifier::pallet::Error<T>
|
|
4154
4147
|
**/
|
|
4155
4148
|
PalletEthereumVerifierError: {
|
|
4156
4149
|
_enum: [
|
|
@@ -4181,7 +4174,7 @@ export default {
|
|
|
4181
4174
|
],
|
|
4182
4175
|
},
|
|
4183
4176
|
/**
|
|
4184
|
-
*
|
|
4177
|
+
* Lookup562: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4185
4178
|
**/
|
|
4186
4179
|
PalletCrosschainTransferAccountTransferTotals: {
|
|
4187
4180
|
microgonsIn: 'u128',
|
|
@@ -4194,7 +4187,7 @@ export default {
|
|
|
4194
4187
|
argonotTransfersOutCount: 'Compact<u32>',
|
|
4195
4188
|
},
|
|
4196
4189
|
/**
|
|
4197
|
-
*
|
|
4190
|
+
* Lookup564: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
4198
4191
|
**/
|
|
4199
4192
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
4200
4193
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -4202,7 +4195,7 @@ export default {
|
|
|
4202
4195
|
totalWeight: 'u128',
|
|
4203
4196
|
},
|
|
4204
4197
|
/**
|
|
4205
|
-
*
|
|
4198
|
+
* Lookup566: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4206
4199
|
**/
|
|
4207
4200
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4208
4201
|
accountId: 'AccountId32',
|
|
@@ -4210,7 +4203,7 @@ export default {
|
|
|
4210
4203
|
weight: 'u128',
|
|
4211
4204
|
},
|
|
4212
4205
|
/**
|
|
4213
|
-
*
|
|
4206
|
+
* Lookup571: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4214
4207
|
**/
|
|
4215
4208
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4216
4209
|
approvingCouncilHash: 'H256',
|
|
@@ -4223,7 +4216,7 @@ export default {
|
|
|
4223
4216
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4224
4217
|
},
|
|
4225
4218
|
/**
|
|
4226
|
-
*
|
|
4219
|
+
* Lookup576: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4227
4220
|
**/
|
|
4228
4221
|
PalletCrosschainTransferMintingAuthority: {
|
|
4229
4222
|
accountId: 'AccountId32',
|
|
@@ -4241,13 +4234,13 @@ export default {
|
|
|
4241
4234
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4242
4235
|
},
|
|
4243
4236
|
/**
|
|
4244
|
-
*
|
|
4237
|
+
* Lookup577: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4245
4238
|
**/
|
|
4246
4239
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4247
4240
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4248
4241
|
},
|
|
4249
4242
|
/**
|
|
4250
|
-
*
|
|
4243
|
+
* Lookup579: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4251
4244
|
**/
|
|
4252
4245
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4253
4246
|
argonAccountId: 'AccountId32',
|
|
@@ -4265,7 +4258,7 @@ export default {
|
|
|
4265
4258
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4266
4259
|
},
|
|
4267
4260
|
/**
|
|
4268
|
-
*
|
|
4261
|
+
* Lookup581: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4269
4262
|
**/
|
|
4270
4263
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4271
4264
|
microgonCollateral: 'u128',
|
|
@@ -4274,13 +4267,13 @@ export default {
|
|
|
4274
4267
|
signature: '[u8;65]',
|
|
4275
4268
|
},
|
|
4276
4269
|
/**
|
|
4277
|
-
*
|
|
4270
|
+
* Lookup585: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4278
4271
|
**/
|
|
4279
4272
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4280
4273
|
_enum: ['Started', 'Ready'],
|
|
4281
4274
|
},
|
|
4282
4275
|
/**
|
|
4283
|
-
*
|
|
4276
|
+
* Lookup587: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4284
4277
|
**/
|
|
4285
4278
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4286
4279
|
transferId: 'H256',
|
|
@@ -4288,14 +4281,14 @@ export default {
|
|
|
4288
4281
|
remainingMintingAuthorityTip: 'u128',
|
|
4289
4282
|
},
|
|
4290
4283
|
/**
|
|
4291
|
-
*
|
|
4284
|
+
* Lookup589: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4292
4285
|
**/
|
|
4293
4286
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4294
4287
|
argonCirculation: 'u128',
|
|
4295
4288
|
argonotCirculation: 'u128',
|
|
4296
4289
|
},
|
|
4297
4290
|
/**
|
|
4298
|
-
*
|
|
4291
|
+
* Lookup590: pallet_crosschain_transfer::pallet::Error<T>
|
|
4299
4292
|
**/
|
|
4300
4293
|
PalletCrosschainTransferError: {
|
|
4301
4294
|
_enum: [
|
|
@@ -4357,61 +4350,61 @@ export default {
|
|
|
4357
4350
|
],
|
|
4358
4351
|
},
|
|
4359
4352
|
/**
|
|
4360
|
-
*
|
|
4353
|
+
* Lookup592: pallet_bootstrap::pallet::Error<T>
|
|
4361
4354
|
**/
|
|
4362
4355
|
PalletBootstrapError: {
|
|
4363
4356
|
_enum: ['EncryptedPayloadTooLong', 'InvalidRecoveryProof', 'EndpointOwnedByAnotherAccount'],
|
|
4364
4357
|
},
|
|
4365
4358
|
/**
|
|
4366
|
-
*
|
|
4359
|
+
* Lookup595: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4367
4360
|
**/
|
|
4368
4361
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4369
4362
|
/**
|
|
4370
|
-
*
|
|
4363
|
+
* Lookup596: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4371
4364
|
**/
|
|
4372
4365
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4373
4366
|
/**
|
|
4374
|
-
*
|
|
4367
|
+
* Lookup597: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4375
4368
|
**/
|
|
4376
4369
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4377
4370
|
/**
|
|
4378
|
-
*
|
|
4371
|
+
* Lookup598: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4379
4372
|
**/
|
|
4380
4373
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4381
4374
|
/**
|
|
4382
|
-
*
|
|
4375
|
+
* Lookup599: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4383
4376
|
**/
|
|
4384
4377
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4385
4378
|
/**
|
|
4386
|
-
*
|
|
4379
|
+
* Lookup602: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4387
4380
|
**/
|
|
4388
4381
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4389
4382
|
/**
|
|
4390
|
-
*
|
|
4383
|
+
* Lookup603: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4391
4384
|
**/
|
|
4392
4385
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4393
4386
|
/**
|
|
4394
|
-
*
|
|
4387
|
+
* Lookup604: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4395
4388
|
**/
|
|
4396
4389
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4397
4390
|
/**
|
|
4398
|
-
*
|
|
4391
|
+
* Lookup605: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4399
4392
|
**/
|
|
4400
4393
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4401
4394
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4402
4395
|
},
|
|
4403
4396
|
/**
|
|
4404
|
-
*
|
|
4397
|
+
* Lookup606: frame_metadata_hash_extension::Mode
|
|
4405
4398
|
**/
|
|
4406
4399
|
FrameMetadataHashExtensionMode: {
|
|
4407
4400
|
_enum: ['Disabled', 'Enabled'],
|
|
4408
4401
|
},
|
|
4409
4402
|
/**
|
|
4410
|
-
*
|
|
4403
|
+
* Lookup607: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4411
4404
|
**/
|
|
4412
4405
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4413
4406
|
/**
|
|
4414
|
-
*
|
|
4407
|
+
* Lookup609: argon_runtime::Runtime
|
|
4415
4408
|
**/
|
|
4416
4409
|
ArgonRuntimeRuntime: 'Null',
|
|
4417
4410
|
};
|