@argonprotocol/mainchain 1.4.10-dev.d4d4d1dd → 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 +3909 -277
- 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 +3909 -277
- package/lib/index.d.ts +3909 -277
- 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 +8 -13
- package/src/interfaces/augment-api-errors.ts +37 -5
- package/src/interfaces/augment-api-query.ts +39 -9
- package/src/interfaces/augment-api-tx.ts +18 -30
- package/src/interfaces/lookup.ts +242 -218
- package/src/interfaces/registry.ts +6 -2
- package/src/interfaces/types-lookup.ts +254 -226
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,12 +2426,13 @@ 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: {
|
|
2415
2433
|
submit: {
|
|
2416
2434
|
index: 'PalletPriceIndexPriceIndex',
|
|
2435
|
+
ethereum: 'Option<PalletPriceIndexEthereumPriceIndex>',
|
|
2417
2436
|
},
|
|
2418
2437
|
set_operator: {
|
|
2419
2438
|
accountId: 'AccountId32',
|
|
@@ -2421,7 +2440,7 @@ export default {
|
|
|
2421
2440
|
},
|
|
2422
2441
|
},
|
|
2423
2442
|
/**
|
|
2424
|
-
*
|
|
2443
|
+
* Lookup248: pallet_price_index::PriceIndex
|
|
2425
2444
|
**/
|
|
2426
2445
|
PalletPriceIndexPriceIndex: {
|
|
2427
2446
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2432,7 +2451,15 @@ export default {
|
|
|
2432
2451
|
tick: 'Compact<u64>',
|
|
2433
2452
|
},
|
|
2434
2453
|
/**
|
|
2435
|
-
*
|
|
2454
|
+
* Lookup250: pallet_price_index::EthereumPriceIndex
|
|
2455
|
+
**/
|
|
2456
|
+
PalletPriceIndexEthereumPriceIndex: {
|
|
2457
|
+
ethereumUsdPrice: 'u128',
|
|
2458
|
+
ethereumGasPriceWei: 'Compact<u128>',
|
|
2459
|
+
tick: 'Compact<u64>',
|
|
2460
|
+
},
|
|
2461
|
+
/**
|
|
2462
|
+
* Lookup251: pallet_grandpa::pallet::Call<T>
|
|
2436
2463
|
**/
|
|
2437
2464
|
PalletGrandpaCall: {
|
|
2438
2465
|
_enum: {
|
|
@@ -2451,14 +2478,14 @@ export default {
|
|
|
2451
2478
|
},
|
|
2452
2479
|
},
|
|
2453
2480
|
/**
|
|
2454
|
-
*
|
|
2481
|
+
* Lookup252: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2455
2482
|
**/
|
|
2456
2483
|
SpConsensusGrandpaEquivocationProof: {
|
|
2457
2484
|
setId: 'u64',
|
|
2458
2485
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2459
2486
|
},
|
|
2460
2487
|
/**
|
|
2461
|
-
*
|
|
2488
|
+
* Lookup253: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2462
2489
|
**/
|
|
2463
2490
|
SpConsensusGrandpaEquivocation: {
|
|
2464
2491
|
_enum: {
|
|
@@ -2467,7 +2494,7 @@ export default {
|
|
|
2467
2494
|
},
|
|
2468
2495
|
},
|
|
2469
2496
|
/**
|
|
2470
|
-
*
|
|
2497
|
+
* Lookup254: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2471
2498
|
**/
|
|
2472
2499
|
FinalityGrandpaEquivocationPrevote: {
|
|
2473
2500
|
roundNumber: 'u64',
|
|
@@ -2476,18 +2503,18 @@ export default {
|
|
|
2476
2503
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2477
2504
|
},
|
|
2478
2505
|
/**
|
|
2479
|
-
*
|
|
2506
|
+
* Lookup255: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2480
2507
|
**/
|
|
2481
2508
|
FinalityGrandpaPrevote: {
|
|
2482
2509
|
targetHash: 'H256',
|
|
2483
2510
|
targetNumber: 'u32',
|
|
2484
2511
|
},
|
|
2485
2512
|
/**
|
|
2486
|
-
*
|
|
2513
|
+
* Lookup256: sp_consensus_grandpa::app::Signature
|
|
2487
2514
|
**/
|
|
2488
2515
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2489
2516
|
/**
|
|
2490
|
-
*
|
|
2517
|
+
* Lookup258: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2491
2518
|
**/
|
|
2492
2519
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2493
2520
|
roundNumber: 'u64',
|
|
@@ -2496,18 +2523,18 @@ export default {
|
|
|
2496
2523
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2497
2524
|
},
|
|
2498
2525
|
/**
|
|
2499
|
-
*
|
|
2526
|
+
* Lookup259: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2500
2527
|
**/
|
|
2501
2528
|
FinalityGrandpaPrecommit: {
|
|
2502
2529
|
targetHash: 'H256',
|
|
2503
2530
|
targetNumber: 'u32',
|
|
2504
2531
|
},
|
|
2505
2532
|
/**
|
|
2506
|
-
*
|
|
2533
|
+
* Lookup261: sp_core::Void
|
|
2507
2534
|
**/
|
|
2508
2535
|
SpCoreVoid: 'Null',
|
|
2509
2536
|
/**
|
|
2510
|
-
*
|
|
2537
|
+
* Lookup262: pallet_block_seal::pallet::Call<T>
|
|
2511
2538
|
**/
|
|
2512
2539
|
PalletBlockSealCall: {
|
|
2513
2540
|
_enum: {
|
|
@@ -2517,7 +2544,7 @@ export default {
|
|
|
2517
2544
|
},
|
|
2518
2545
|
},
|
|
2519
2546
|
/**
|
|
2520
|
-
*
|
|
2547
|
+
* Lookup263: argon_primitives::inherents::BlockSealInherent
|
|
2521
2548
|
**/
|
|
2522
2549
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2523
2550
|
_enum: {
|
|
@@ -2533,7 +2560,7 @@ export default {
|
|
|
2533
2560
|
},
|
|
2534
2561
|
},
|
|
2535
2562
|
/**
|
|
2536
|
-
*
|
|
2563
|
+
* Lookup264: argon_primitives::balance_change::MerkleProof
|
|
2537
2564
|
**/
|
|
2538
2565
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2539
2566
|
proof: 'Vec<H256>',
|
|
@@ -2541,7 +2568,7 @@ export default {
|
|
|
2541
2568
|
leafIndex: 'Compact<u32>',
|
|
2542
2569
|
},
|
|
2543
2570
|
/**
|
|
2544
|
-
*
|
|
2571
|
+
* Lookup266: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2545
2572
|
**/
|
|
2546
2573
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2547
2574
|
accountId: 'AccountId32',
|
|
@@ -2553,18 +2580,7 @@ export default {
|
|
|
2553
2580
|
tick: 'Compact<u64>',
|
|
2554
2581
|
},
|
|
2555
2582
|
/**
|
|
2556
|
-
*
|
|
2557
|
-
**/
|
|
2558
|
-
SpRuntimeMultiSignature: {
|
|
2559
|
-
_enum: {
|
|
2560
|
-
Ed25519: '[u8;64]',
|
|
2561
|
-
Sr25519: '[u8;64]',
|
|
2562
|
-
Ecdsa: '[u8;65]',
|
|
2563
|
-
Eth: '[u8;65]',
|
|
2564
|
-
},
|
|
2565
|
-
},
|
|
2566
|
-
/**
|
|
2567
|
-
* Lookup265: pallet_block_rewards::pallet::Call<T>
|
|
2583
|
+
* Lookup267: pallet_block_rewards::pallet::Call<T>
|
|
2568
2584
|
**/
|
|
2569
2585
|
PalletBlockRewardsCall: {
|
|
2570
2586
|
_enum: {
|
|
@@ -2577,11 +2593,11 @@ export default {
|
|
|
2577
2593
|
},
|
|
2578
2594
|
},
|
|
2579
2595
|
/**
|
|
2580
|
-
*
|
|
2596
|
+
* Lookup268: pallet_mint::pallet::Call<T>
|
|
2581
2597
|
**/
|
|
2582
2598
|
PalletMintCall: 'Null',
|
|
2583
2599
|
/**
|
|
2584
|
-
*
|
|
2600
|
+
* Lookup269: pallet_balances::pallet::Call<T, I>
|
|
2585
2601
|
**/
|
|
2586
2602
|
PalletBalancesCall: {
|
|
2587
2603
|
_enum: {
|
|
@@ -2626,13 +2642,13 @@ export default {
|
|
|
2626
2642
|
},
|
|
2627
2643
|
},
|
|
2628
2644
|
/**
|
|
2629
|
-
*
|
|
2645
|
+
* Lookup270: pallet_balances::types::AdjustmentDirection
|
|
2630
2646
|
**/
|
|
2631
2647
|
PalletBalancesAdjustmentDirection: {
|
|
2632
2648
|
_enum: ['Increase', 'Decrease'],
|
|
2633
2649
|
},
|
|
2634
2650
|
/**
|
|
2635
|
-
*
|
|
2651
|
+
* Lookup272: pallet_tx_pause::pallet::Call<T>
|
|
2636
2652
|
**/
|
|
2637
2653
|
PalletTxPauseCall: {
|
|
2638
2654
|
_enum: {
|
|
@@ -2645,7 +2661,7 @@ export default {
|
|
|
2645
2661
|
},
|
|
2646
2662
|
},
|
|
2647
2663
|
/**
|
|
2648
|
-
*
|
|
2664
|
+
* Lookup273: pallet_utility::pallet::Call<T>
|
|
2649
2665
|
**/
|
|
2650
2666
|
PalletUtilityCall: {
|
|
2651
2667
|
_enum: {
|
|
@@ -2681,7 +2697,7 @@ export default {
|
|
|
2681
2697
|
},
|
|
2682
2698
|
},
|
|
2683
2699
|
/**
|
|
2684
|
-
*
|
|
2700
|
+
* Lookup275: pallet_sudo::pallet::Call<T>
|
|
2685
2701
|
**/
|
|
2686
2702
|
PalletSudoCall: {
|
|
2687
2703
|
_enum: {
|
|
@@ -2706,7 +2722,7 @@ export default {
|
|
|
2706
2722
|
},
|
|
2707
2723
|
},
|
|
2708
2724
|
/**
|
|
2709
|
-
*
|
|
2725
|
+
* Lookup276: pallet_treasury::pallet::Call<T>
|
|
2710
2726
|
**/
|
|
2711
2727
|
PalletTreasuryCall: {
|
|
2712
2728
|
_enum: {
|
|
@@ -2736,7 +2752,7 @@ export default {
|
|
|
2736
2752
|
},
|
|
2737
2753
|
},
|
|
2738
2754
|
/**
|
|
2739
|
-
*
|
|
2755
|
+
* Lookup278: argon_primitives::vault::TreasuryBonusApprovalProof
|
|
2740
2756
|
**/
|
|
2741
2757
|
ArgonPrimitivesVaultTreasuryBonusApprovalProof: {
|
|
2742
2758
|
vaultId: 'Compact<u32>',
|
|
@@ -2746,14 +2762,16 @@ export default {
|
|
|
2746
2762
|
signature: 'SpRuntimeMultiSignature',
|
|
2747
2763
|
},
|
|
2748
2764
|
/**
|
|
2749
|
-
*
|
|
2765
|
+
* Lookup279: pallet_operational_accounts::pallet::Call<T>
|
|
2750
2766
|
**/
|
|
2751
2767
|
PalletOperationalAccountsCall: {
|
|
2752
2768
|
_enum: {
|
|
2753
2769
|
register: {
|
|
2754
2770
|
registration: 'PalletOperationalAccountsRegistration',
|
|
2755
2771
|
},
|
|
2756
|
-
|
|
2772
|
+
set_name: {
|
|
2773
|
+
name: 'Option<Bytes>',
|
|
2774
|
+
},
|
|
2757
2775
|
set_reward_config: {
|
|
2758
2776
|
operationalCertificationReward: 'u128',
|
|
2759
2777
|
operationalCertificationBonusReward: 'u128',
|
|
@@ -2771,7 +2789,7 @@ export default {
|
|
|
2771
2789
|
},
|
|
2772
2790
|
},
|
|
2773
2791
|
/**
|
|
2774
|
-
*
|
|
2792
|
+
* Lookup280: pallet_operational_accounts::pallet::Registration<T>
|
|
2775
2793
|
**/
|
|
2776
2794
|
PalletOperationalAccountsRegistration: {
|
|
2777
2795
|
_enum: {
|
|
@@ -2779,7 +2797,7 @@ export default {
|
|
|
2779
2797
|
},
|
|
2780
2798
|
},
|
|
2781
2799
|
/**
|
|
2782
|
-
*
|
|
2800
|
+
* Lookup281: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2783
2801
|
**/
|
|
2784
2802
|
PalletOperationalAccountsRegistrationV1: {
|
|
2785
2803
|
operationalAccount: 'AccountId32',
|
|
@@ -2792,24 +2810,24 @@ export default {
|
|
|
2792
2810
|
accessProof: 'Option<PalletOperationalAccountsUpstreamAccessProof>',
|
|
2793
2811
|
},
|
|
2794
2812
|
/**
|
|
2795
|
-
*
|
|
2813
|
+
* Lookup282: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2796
2814
|
**/
|
|
2797
2815
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2798
2816
|
/**
|
|
2799
|
-
*
|
|
2817
|
+
* Lookup283: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2800
2818
|
**/
|
|
2801
2819
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2802
2820
|
signature: 'SpRuntimeMultiSignature',
|
|
2803
2821
|
},
|
|
2804
2822
|
/**
|
|
2805
|
-
*
|
|
2823
|
+
* Lookup285: pallet_operational_accounts::pallet::UpstreamAccessProof<sp_core::crypto::AccountId32>
|
|
2806
2824
|
**/
|
|
2807
2825
|
PalletOperationalAccountsUpstreamAccessProof: {
|
|
2808
2826
|
upstreamAccount: 'AccountId32',
|
|
2809
2827
|
signature: 'SpRuntimeMultiSignature',
|
|
2810
2828
|
},
|
|
2811
2829
|
/**
|
|
2812
|
-
*
|
|
2830
|
+
* Lookup288: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2813
2831
|
**/
|
|
2814
2832
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2815
2833
|
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
@@ -2820,7 +2838,7 @@ export default {
|
|
|
2820
2838
|
miningSeatCount: 'Option<u32>',
|
|
2821
2839
|
},
|
|
2822
2840
|
/**
|
|
2823
|
-
*
|
|
2841
|
+
* Lookup290: pallet_ethereum_verifier::pallet::Call<T>
|
|
2824
2842
|
**/
|
|
2825
2843
|
PalletEthereumVerifierCall: {
|
|
2826
2844
|
_enum: {
|
|
@@ -2842,7 +2860,7 @@ export default {
|
|
|
2842
2860
|
},
|
|
2843
2861
|
},
|
|
2844
2862
|
/**
|
|
2845
|
-
*
|
|
2863
|
+
* Lookup291: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2846
2864
|
**/
|
|
2847
2865
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2848
2866
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2852,7 +2870,7 @@ export default {
|
|
|
2852
2870
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2853
2871
|
},
|
|
2854
2872
|
/**
|
|
2855
|
-
*
|
|
2873
|
+
* Lookup292: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2856
2874
|
**/
|
|
2857
2875
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2858
2876
|
slot: 'u64',
|
|
@@ -2862,25 +2880,25 @@ export default {
|
|
|
2862
2880
|
bodyRoot: 'H256',
|
|
2863
2881
|
},
|
|
2864
2882
|
/**
|
|
2865
|
-
*
|
|
2883
|
+
* Lookup293: pallet_ethereum_verifier::types::SyncCommittee
|
|
2866
2884
|
**/
|
|
2867
2885
|
PalletEthereumVerifierSyncCommittee: {
|
|
2868
2886
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2869
2887
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2870
2888
|
},
|
|
2871
2889
|
/**
|
|
2872
|
-
*
|
|
2890
|
+
* Lookup295: snowbridge_beacon_primitives::types::PublicKey
|
|
2873
2891
|
**/
|
|
2874
2892
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2875
2893
|
/**
|
|
2876
|
-
*
|
|
2894
|
+
* Lookup299: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2877
2895
|
**/
|
|
2878
2896
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2879
2897
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2880
2898
|
executionBranch: 'Vec<H256>',
|
|
2881
2899
|
},
|
|
2882
2900
|
/**
|
|
2883
|
-
*
|
|
2901
|
+
* Lookup300: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2884
2902
|
**/
|
|
2885
2903
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2886
2904
|
_enum: {
|
|
@@ -2889,7 +2907,7 @@ export default {
|
|
|
2889
2907
|
},
|
|
2890
2908
|
},
|
|
2891
2909
|
/**
|
|
2892
|
-
*
|
|
2910
|
+
* Lookup301: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2893
2911
|
**/
|
|
2894
2912
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2895
2913
|
parentHash: 'H256',
|
|
@@ -2909,7 +2927,7 @@ export default {
|
|
|
2909
2927
|
withdrawalsRoot: 'H256',
|
|
2910
2928
|
},
|
|
2911
2929
|
/**
|
|
2912
|
-
*
|
|
2930
|
+
* Lookup302: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2913
2931
|
**/
|
|
2914
2932
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2915
2933
|
parentHash: 'H256',
|
|
@@ -2931,7 +2949,7 @@ export default {
|
|
|
2931
2949
|
excessBlobGas: 'u64',
|
|
2932
2950
|
},
|
|
2933
2951
|
/**
|
|
2934
|
-
*
|
|
2952
|
+
* Lookup303: pallet_ethereum_verifier::types::ForkVersions
|
|
2935
2953
|
**/
|
|
2936
2954
|
PalletEthereumVerifierForkVersions: {
|
|
2937
2955
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2943,14 +2961,14 @@ export default {
|
|
|
2943
2961
|
fulu: 'PalletEthereumVerifierFork',
|
|
2944
2962
|
},
|
|
2945
2963
|
/**
|
|
2946
|
-
*
|
|
2964
|
+
* Lookup304: pallet_ethereum_verifier::types::Fork
|
|
2947
2965
|
**/
|
|
2948
2966
|
PalletEthereumVerifierFork: {
|
|
2949
2967
|
version: '[u8;4]',
|
|
2950
2968
|
epoch: 'Compact<u64>',
|
|
2951
2969
|
},
|
|
2952
2970
|
/**
|
|
2953
|
-
*
|
|
2971
|
+
* Lookup305: pallet_ethereum_verifier::types::Update
|
|
2954
2972
|
**/
|
|
2955
2973
|
PalletEthereumVerifierUpdate: {
|
|
2956
2974
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2962,25 +2980,25 @@ export default {
|
|
|
2962
2980
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2963
2981
|
},
|
|
2964
2982
|
/**
|
|
2965
|
-
*
|
|
2983
|
+
* Lookup306: pallet_ethereum_verifier::types::SyncAggregate
|
|
2966
2984
|
**/
|
|
2967
2985
|
PalletEthereumVerifierSyncAggregate: {
|
|
2968
2986
|
syncCommitteeBits: 'Bytes',
|
|
2969
2987
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2970
2988
|
},
|
|
2971
2989
|
/**
|
|
2972
|
-
*
|
|
2990
|
+
* Lookup308: snowbridge_beacon_primitives::types::Signature
|
|
2973
2991
|
**/
|
|
2974
2992
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2975
2993
|
/**
|
|
2976
|
-
*
|
|
2994
|
+
* Lookup311: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2977
2995
|
**/
|
|
2978
2996
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2979
2997
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2980
2998
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2981
2999
|
},
|
|
2982
3000
|
/**
|
|
2983
|
-
*
|
|
3001
|
+
* Lookup312: pallet_crosschain_transfer::pallet::Call<T>
|
|
2984
3002
|
**/
|
|
2985
3003
|
PalletCrosschainTransferCall: {
|
|
2986
3004
|
_enum: {
|
|
@@ -3046,7 +3064,7 @@ export default {
|
|
|
3046
3064
|
},
|
|
3047
3065
|
},
|
|
3048
3066
|
/**
|
|
3049
|
-
*
|
|
3067
|
+
* Lookup313: pallet_crosschain_transfer::pallet::ChainConfig
|
|
3050
3068
|
**/
|
|
3051
3069
|
PalletCrosschainTransferChainConfig: {
|
|
3052
3070
|
_enum: {
|
|
@@ -3059,7 +3077,7 @@ export default {
|
|
|
3059
3077
|
},
|
|
3060
3078
|
},
|
|
3061
3079
|
/**
|
|
3062
|
-
*
|
|
3080
|
+
* Lookup315: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3063
3081
|
**/
|
|
3064
3082
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3065
3083
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3068,27 +3086,27 @@ export default {
|
|
|
3068
3086
|
estimatedMicrogonsPerEth: 'u128',
|
|
3069
3087
|
},
|
|
3070
3088
|
/**
|
|
3071
|
-
*
|
|
3089
|
+
* Lookup318: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3072
3090
|
**/
|
|
3073
3091
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3074
3092
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3075
3093
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3076
3094
|
},
|
|
3077
3095
|
/**
|
|
3078
|
-
*
|
|
3096
|
+
* Lookup319: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3079
3097
|
**/
|
|
3080
3098
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3081
3099
|
anchorBlockHash: 'H256',
|
|
3082
3100
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3083
3101
|
},
|
|
3084
3102
|
/**
|
|
3085
|
-
*
|
|
3103
|
+
* Lookup321: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3086
3104
|
**/
|
|
3087
3105
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3088
3106
|
rlp: 'Bytes',
|
|
3089
3107
|
},
|
|
3090
3108
|
/**
|
|
3091
|
-
*
|
|
3109
|
+
* Lookup325: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3092
3110
|
**/
|
|
3093
3111
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3094
3112
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3096,28 +3114,28 @@ export default {
|
|
|
3096
3114
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3097
3115
|
},
|
|
3098
3116
|
/**
|
|
3099
|
-
*
|
|
3117
|
+
* Lookup326: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3100
3118
|
**/
|
|
3101
3119
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3102
3120
|
nodes: 'Vec<Bytes>',
|
|
3103
3121
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3104
3122
|
},
|
|
3105
3123
|
/**
|
|
3106
|
-
*
|
|
3124
|
+
* Lookup330: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3107
3125
|
**/
|
|
3108
3126
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3109
3127
|
transactionIndex: 'Compact<u64>',
|
|
3110
3128
|
nodeIndexes: 'Vec<u16>',
|
|
3111
3129
|
},
|
|
3112
3130
|
/**
|
|
3113
|
-
*
|
|
3131
|
+
* Lookup335: argon_primitives::ethereum::EthereumReceiptLog
|
|
3114
3132
|
**/
|
|
3115
3133
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3116
3134
|
transactionIndex: 'Compact<u64>',
|
|
3117
3135
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3118
3136
|
},
|
|
3119
3137
|
/**
|
|
3120
|
-
*
|
|
3138
|
+
* Lookup336: argon_primitives::ethereum::EthereumLog
|
|
3121
3139
|
**/
|
|
3122
3140
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3123
3141
|
address: 'H160',
|
|
@@ -3125,7 +3143,7 @@ export default {
|
|
|
3125
3143
|
data: 'Bytes',
|
|
3126
3144
|
},
|
|
3127
3145
|
/**
|
|
3128
|
-
*
|
|
3146
|
+
* Lookup341: pallet_bootstrap::pallet::Call<T>
|
|
3129
3147
|
**/
|
|
3130
3148
|
PalletBootstrapCall: {
|
|
3131
3149
|
_enum: {
|
|
@@ -3141,13 +3159,13 @@ export default {
|
|
|
3141
3159
|
},
|
|
3142
3160
|
},
|
|
3143
3161
|
/**
|
|
3144
|
-
*
|
|
3162
|
+
* Lookup342: pallet_bootstrap::pallet::RecoveryProof
|
|
3145
3163
|
**/
|
|
3146
3164
|
PalletBootstrapRecoveryProof: {
|
|
3147
3165
|
signature: '[u8;64]',
|
|
3148
3166
|
},
|
|
3149
3167
|
/**
|
|
3150
|
-
*
|
|
3168
|
+
* Lookup344: pallet_multisig::pallet::Error<T>
|
|
3151
3169
|
**/
|
|
3152
3170
|
PalletMultisigError: {
|
|
3153
3171
|
_enum: [
|
|
@@ -3168,7 +3186,7 @@ export default {
|
|
|
3168
3186
|
],
|
|
3169
3187
|
},
|
|
3170
3188
|
/**
|
|
3171
|
-
*
|
|
3189
|
+
* Lookup347: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3172
3190
|
**/
|
|
3173
3191
|
PalletProxyProxyDefinition: {
|
|
3174
3192
|
delegate: 'AccountId32',
|
|
@@ -3176,7 +3194,7 @@ export default {
|
|
|
3176
3194
|
delay: 'u32',
|
|
3177
3195
|
},
|
|
3178
3196
|
/**
|
|
3179
|
-
*
|
|
3197
|
+
* Lookup351: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3180
3198
|
**/
|
|
3181
3199
|
PalletProxyAnnouncement: {
|
|
3182
3200
|
real: 'AccountId32',
|
|
@@ -3184,7 +3202,7 @@ export default {
|
|
|
3184
3202
|
height: 'u32',
|
|
3185
3203
|
},
|
|
3186
3204
|
/**
|
|
3187
|
-
*
|
|
3205
|
+
* Lookup353: pallet_proxy::pallet::Error<T>
|
|
3188
3206
|
**/
|
|
3189
3207
|
PalletProxyError: {
|
|
3190
3208
|
_enum: [
|
|
@@ -3199,18 +3217,18 @@ export default {
|
|
|
3199
3217
|
],
|
|
3200
3218
|
},
|
|
3201
3219
|
/**
|
|
3202
|
-
*
|
|
3220
|
+
* Lookup354: argon_primitives::tick::Ticker
|
|
3203
3221
|
**/
|
|
3204
3222
|
ArgonPrimitivesTickTicker: {
|
|
3205
3223
|
tickDurationMillis: 'Compact<u64>',
|
|
3206
3224
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3207
3225
|
},
|
|
3208
3226
|
/**
|
|
3209
|
-
*
|
|
3227
|
+
* Lookup356: pallet_ticks::pallet::Error<T>
|
|
3210
3228
|
**/
|
|
3211
3229
|
PalletTicksError: 'Null',
|
|
3212
3230
|
/**
|
|
3213
|
-
*
|
|
3231
|
+
* Lookup359: pallet_mining_slot::MinerNonceScoring<T>
|
|
3214
3232
|
**/
|
|
3215
3233
|
PalletMiningSlotMinerNonceScoring: {
|
|
3216
3234
|
nonce: 'U256',
|
|
@@ -3219,7 +3237,7 @@ export default {
|
|
|
3219
3237
|
frameStartBlocksWonSurplus: 'i16',
|
|
3220
3238
|
},
|
|
3221
3239
|
/**
|
|
3222
|
-
*
|
|
3240
|
+
* Lookup371: argon_primitives::block_seal::MiningBidStats
|
|
3223
3241
|
**/
|
|
3224
3242
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3225
3243
|
bidsCount: 'u32',
|
|
@@ -3228,7 +3246,7 @@ export default {
|
|
|
3228
3246
|
bidAmountSum: 'u128',
|
|
3229
3247
|
},
|
|
3230
3248
|
/**
|
|
3231
|
-
*
|
|
3249
|
+
* Lookup375: argon_primitives::block_seal::MiningSlotConfig
|
|
3232
3250
|
**/
|
|
3233
3251
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3234
3252
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3236,7 +3254,7 @@ export default {
|
|
|
3236
3254
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3237
3255
|
},
|
|
3238
3256
|
/**
|
|
3239
|
-
*
|
|
3257
|
+
* Lookup385: pallet_mining_slot::pallet::Error<T>
|
|
3240
3258
|
**/
|
|
3241
3259
|
PalletMiningSlotError: {
|
|
3242
3260
|
_enum: [
|
|
@@ -3254,7 +3272,7 @@ export default {
|
|
|
3254
3272
|
],
|
|
3255
3273
|
},
|
|
3256
3274
|
/**
|
|
3257
|
-
*
|
|
3275
|
+
* Lookup386: argon_primitives::bitcoin::UtxoValue
|
|
3258
3276
|
**/
|
|
3259
3277
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3260
3278
|
utxoId: 'u64',
|
|
@@ -3264,7 +3282,7 @@ export default {
|
|
|
3264
3282
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3265
3283
|
},
|
|
3266
3284
|
/**
|
|
3267
|
-
*
|
|
3285
|
+
* Lookup387: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3268
3286
|
**/
|
|
3269
3287
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3270
3288
|
_enum: {
|
|
@@ -3274,13 +3292,13 @@ export default {
|
|
|
3274
3292
|
},
|
|
3275
3293
|
},
|
|
3276
3294
|
/**
|
|
3277
|
-
*
|
|
3295
|
+
* Lookup396: argon_primitives::bitcoin::BitcoinNetwork
|
|
3278
3296
|
**/
|
|
3279
3297
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3280
3298
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3281
3299
|
},
|
|
3282
3300
|
/**
|
|
3283
|
-
*
|
|
3301
|
+
* Lookup397: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3284
3302
|
**/
|
|
3285
3303
|
PalletBitcoinUtxosError: {
|
|
3286
3304
|
_enum: [
|
|
@@ -3302,13 +3320,11 @@ export default {
|
|
|
3302
3320
|
],
|
|
3303
3321
|
},
|
|
3304
3322
|
/**
|
|
3305
|
-
*
|
|
3323
|
+
* Lookup398: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3306
3324
|
**/
|
|
3307
3325
|
ArgonPrimitivesVault: {
|
|
3308
3326
|
operatorAccountId: 'AccountId32',
|
|
3309
3327
|
delegateAccountId: 'Option<AccountId32>',
|
|
3310
|
-
name: 'Option<Bytes>',
|
|
3311
|
-
lastNameChangeTick: 'Option<u64>',
|
|
3312
3328
|
securitization: 'Compact<u128>',
|
|
3313
3329
|
securitizationTarget: 'Compact<u128>',
|
|
3314
3330
|
securitizationLocked: 'Compact<u128>',
|
|
@@ -3327,14 +3343,14 @@ export default {
|
|
|
3327
3343
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3328
3344
|
},
|
|
3329
3345
|
/**
|
|
3330
|
-
*
|
|
3346
|
+
* Lookup405: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3331
3347
|
**/
|
|
3332
3348
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3333
3349
|
committedMicronots: 'Compact<u128>',
|
|
3334
3350
|
encumberedMicronots: 'Compact<u128>',
|
|
3335
3351
|
},
|
|
3336
3352
|
/**
|
|
3337
|
-
*
|
|
3353
|
+
* Lookup407: argon_primitives::bitcoin::BitcoinXPub
|
|
3338
3354
|
**/
|
|
3339
3355
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3340
3356
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3345,13 +3361,13 @@ export default {
|
|
|
3345
3361
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3346
3362
|
},
|
|
3347
3363
|
/**
|
|
3348
|
-
*
|
|
3364
|
+
* Lookup409: argon_primitives::bitcoin::NetworkKind
|
|
3349
3365
|
**/
|
|
3350
3366
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3351
3367
|
_enum: ['Main', 'Test'],
|
|
3352
3368
|
},
|
|
3353
3369
|
/**
|
|
3354
|
-
*
|
|
3370
|
+
* Lookup418: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3355
3371
|
**/
|
|
3356
3372
|
PalletVaultsVaultFrameRevenue: {
|
|
3357
3373
|
frameId: 'Compact<u64>',
|
|
@@ -3372,16 +3388,7 @@ export default {
|
|
|
3372
3388
|
uncollectedRevenue: 'Compact<u128>',
|
|
3373
3389
|
},
|
|
3374
3390
|
/**
|
|
3375
|
-
*
|
|
3376
|
-
**/
|
|
3377
|
-
PalletVaultsRecentCapacityDrop: {
|
|
3378
|
-
blockNumber: 'Compact<u32>',
|
|
3379
|
-
availableBeforeDrop: 'Compact<u128>',
|
|
3380
|
-
availableAfterDrop: 'Compact<u128>',
|
|
3381
|
-
noFeeFailuresUsed: 'Compact<u32>',
|
|
3382
|
-
},
|
|
3383
|
-
/**
|
|
3384
|
-
* Lookup419: pallet_vaults::pallet::Error<T>
|
|
3391
|
+
* Lookup420: pallet_vaults::pallet::Error<T>
|
|
3385
3392
|
**/
|
|
3386
3393
|
PalletVaultsError: {
|
|
3387
3394
|
_enum: [
|
|
@@ -3412,7 +3419,6 @@ export default {
|
|
|
3412
3419
|
'UnableToGenerateVaultBitcoinPubkey',
|
|
3413
3420
|
'FundingChangeAlreadyScheduled',
|
|
3414
3421
|
'InvalidBondSharingTerms',
|
|
3415
|
-
'InvalidVaultName',
|
|
3416
3422
|
'PendingCosignsBeforeCollect',
|
|
3417
3423
|
'PendingOrphanedUtxoCosignsBeforeCollect',
|
|
3418
3424
|
'OverdueCollectBlockersBeforeCollect',
|
|
@@ -3422,7 +3428,7 @@ export default {
|
|
|
3422
3428
|
],
|
|
3423
3429
|
},
|
|
3424
3430
|
/**
|
|
3425
|
-
*
|
|
3431
|
+
* Lookup421: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3426
3432
|
**/
|
|
3427
3433
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3428
3434
|
vaultId: 'Compact<u32>',
|
|
@@ -3448,7 +3454,7 @@ export default {
|
|
|
3448
3454
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3449
3455
|
},
|
|
3450
3456
|
/**
|
|
3451
|
-
*
|
|
3457
|
+
* Lookup425: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3452
3458
|
**/
|
|
3453
3459
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3454
3460
|
utxoId: 'Compact<u64>',
|
|
@@ -3459,7 +3465,7 @@ export default {
|
|
|
3459
3465
|
redemptionAmount: 'Compact<u128>',
|
|
3460
3466
|
},
|
|
3461
3467
|
/**
|
|
3462
|
-
*
|
|
3468
|
+
* Lookup427: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3463
3469
|
**/
|
|
3464
3470
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3465
3471
|
utxoId: 'Compact<u64>',
|
|
@@ -3469,7 +3475,7 @@ export default {
|
|
|
3469
3475
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3470
3476
|
},
|
|
3471
3477
|
/**
|
|
3472
|
-
*
|
|
3478
|
+
* Lookup429: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3473
3479
|
**/
|
|
3474
3480
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3475
3481
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3477,7 +3483,7 @@ export default {
|
|
|
3477
3483
|
createdAtArgonBlockNumber: 'u32',
|
|
3478
3484
|
},
|
|
3479
3485
|
/**
|
|
3480
|
-
*
|
|
3486
|
+
* Lookup436: pallet_bitcoin_locks::pallet::Error<T>
|
|
3481
3487
|
**/
|
|
3482
3488
|
PalletBitcoinLocksError: {
|
|
3483
3489
|
_enum: {
|
|
@@ -3512,6 +3518,13 @@ export default {
|
|
|
3512
3518
|
LockPendingFunding: 'Null',
|
|
3513
3519
|
OverflowError: 'Null',
|
|
3514
3520
|
IneligibleMicrogonRateRequested: 'Null',
|
|
3521
|
+
FeeCouponWrongVault: 'Null',
|
|
3522
|
+
FeeCouponWrongChain: 'Null',
|
|
3523
|
+
FeeCouponWrongAccount: 'Null',
|
|
3524
|
+
FeeCouponExpired: 'Null',
|
|
3525
|
+
InvalidFeeCouponSignature: 'Null',
|
|
3526
|
+
FeeCouponAlreadyUsed: 'Null',
|
|
3527
|
+
FeeCouponOnlyForInitialization: 'Null',
|
|
3515
3528
|
OrphanedUtxoFundingConflict: 'Null',
|
|
3516
3529
|
OrphanedUtxoReleaseRequested: 'Null',
|
|
3517
3530
|
FundingUtxoCannotBeReleased: 'Null',
|
|
@@ -3519,7 +3532,7 @@ export default {
|
|
|
3519
3532
|
},
|
|
3520
3533
|
},
|
|
3521
3534
|
/**
|
|
3522
|
-
*
|
|
3535
|
+
* Lookup437: argon_primitives::vault::VaultError
|
|
3523
3536
|
**/
|
|
3524
3537
|
ArgonPrimitivesVaultVaultError: {
|
|
3525
3538
|
_enum: [
|
|
@@ -3539,7 +3552,7 @@ export default {
|
|
|
3539
3552
|
],
|
|
3540
3553
|
},
|
|
3541
3554
|
/**
|
|
3542
|
-
*
|
|
3555
|
+
* Lookup449: pallet_notaries::pallet::Error<T>
|
|
3543
3556
|
**/
|
|
3544
3557
|
PalletNotariesError: {
|
|
3545
3558
|
_enum: [
|
|
@@ -3555,7 +3568,7 @@ export default {
|
|
|
3555
3568
|
],
|
|
3556
3569
|
},
|
|
3557
3570
|
/**
|
|
3558
|
-
*
|
|
3571
|
+
* Lookup453: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3559
3572
|
**/
|
|
3560
3573
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3561
3574
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3565,7 +3578,7 @@ export default {
|
|
|
3565
3578
|
parentSecret: 'Option<H256>',
|
|
3566
3579
|
},
|
|
3567
3580
|
/**
|
|
3568
|
-
*
|
|
3581
|
+
* Lookup456: pallet_notebook::pallet::Error<T>
|
|
3569
3582
|
**/
|
|
3570
3583
|
PalletNotebookError: {
|
|
3571
3584
|
_enum: [
|
|
@@ -3587,7 +3600,7 @@ export default {
|
|
|
3587
3600
|
],
|
|
3588
3601
|
},
|
|
3589
3602
|
/**
|
|
3590
|
-
*
|
|
3603
|
+
* Lookup457: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3591
3604
|
**/
|
|
3592
3605
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3593
3606
|
accountId: 'AccountId32',
|
|
@@ -3596,11 +3609,11 @@ export default {
|
|
|
3596
3609
|
notaryId: 'u32',
|
|
3597
3610
|
},
|
|
3598
3611
|
/**
|
|
3599
|
-
*
|
|
3612
|
+
* Lookup459: frame_support::PalletId
|
|
3600
3613
|
**/
|
|
3601
3614
|
FrameSupportPalletId: '[u8;8]',
|
|
3602
3615
|
/**
|
|
3603
|
-
*
|
|
3616
|
+
* Lookup460: pallet_localchain_transfer::pallet::Error<T>
|
|
3604
3617
|
**/
|
|
3605
3618
|
PalletLocalchainTransferError: {
|
|
3606
3619
|
_enum: [
|
|
@@ -3615,7 +3628,7 @@ export default {
|
|
|
3615
3628
|
],
|
|
3616
3629
|
},
|
|
3617
3630
|
/**
|
|
3618
|
-
*
|
|
3631
|
+
* Lookup464: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3619
3632
|
**/
|
|
3620
3633
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3621
3634
|
notaryId: 'Compact<u32>',
|
|
@@ -3625,13 +3638,13 @@ export default {
|
|
|
3625
3638
|
blockVotingPower: 'Compact<u128>',
|
|
3626
3639
|
},
|
|
3627
3640
|
/**
|
|
3628
|
-
*
|
|
3641
|
+
* Lookup469: pallet_block_seal_spec::pallet::Error<T>
|
|
3629
3642
|
**/
|
|
3630
3643
|
PalletBlockSealSpecError: {
|
|
3631
3644
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3632
3645
|
},
|
|
3633
3646
|
/**
|
|
3634
|
-
*
|
|
3647
|
+
* Lookup471: pallet_domains::pallet::Error<T>
|
|
3635
3648
|
**/
|
|
3636
3649
|
PalletDomainsError: {
|
|
3637
3650
|
_enum: [
|
|
@@ -3643,7 +3656,15 @@ export default {
|
|
|
3643
3656
|
],
|
|
3644
3657
|
},
|
|
3645
3658
|
/**
|
|
3646
|
-
*
|
|
3659
|
+
* Lookup473: pallet_price_index::EthereumPriceFrameAccumulator
|
|
3660
|
+
**/
|
|
3661
|
+
PalletPriceIndexEthereumPriceFrameAccumulator: {
|
|
3662
|
+
totalUsdPrice: 'u128',
|
|
3663
|
+
totalWeiPerGas: 'Compact<u128>',
|
|
3664
|
+
sampleCount: 'Compact<u32>',
|
|
3665
|
+
},
|
|
3666
|
+
/**
|
|
3667
|
+
* Lookup478: pallet_price_index::CpiMeasurementBucket
|
|
3647
3668
|
**/
|
|
3648
3669
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3649
3670
|
tickRange: '(u64,u64)',
|
|
@@ -3651,7 +3672,7 @@ export default {
|
|
|
3651
3672
|
measurementsCount: 'u32',
|
|
3652
3673
|
},
|
|
3653
3674
|
/**
|
|
3654
|
-
*
|
|
3675
|
+
* Lookup482: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3655
3676
|
**/
|
|
3656
3677
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3657
3678
|
frameId: 'Compact<u64>',
|
|
@@ -3659,7 +3680,7 @@ export default {
|
|
|
3659
3680
|
sampleCount: 'Compact<u32>',
|
|
3660
3681
|
},
|
|
3661
3682
|
/**
|
|
3662
|
-
*
|
|
3683
|
+
* Lookup483: pallet_price_index::pallet::Error<T>
|
|
3663
3684
|
**/
|
|
3664
3685
|
PalletPriceIndexError: {
|
|
3665
3686
|
_enum: [
|
|
@@ -3667,10 +3688,11 @@ export default {
|
|
|
3667
3688
|
'MissingValue',
|
|
3668
3689
|
'PricesTooOld',
|
|
3669
3690
|
'MaxPriceChangePerTickExceeded',
|
|
3691
|
+
'InvalidEthereumPrices',
|
|
3670
3692
|
],
|
|
3671
3693
|
},
|
|
3672
3694
|
/**
|
|
3673
|
-
*
|
|
3695
|
+
* Lookup484: pallet_grandpa::StoredState<N>
|
|
3674
3696
|
**/
|
|
3675
3697
|
PalletGrandpaStoredState: {
|
|
3676
3698
|
_enum: {
|
|
@@ -3687,7 +3709,7 @@ export default {
|
|
|
3687
3709
|
},
|
|
3688
3710
|
},
|
|
3689
3711
|
/**
|
|
3690
|
-
*
|
|
3712
|
+
* Lookup485: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3691
3713
|
**/
|
|
3692
3714
|
PalletGrandpaStoredPendingChange: {
|
|
3693
3715
|
scheduledAt: 'u32',
|
|
@@ -3696,7 +3718,7 @@ export default {
|
|
|
3696
3718
|
forced: 'Option<u32>',
|
|
3697
3719
|
},
|
|
3698
3720
|
/**
|
|
3699
|
-
*
|
|
3721
|
+
* Lookup487: pallet_grandpa::pallet::Error<T>
|
|
3700
3722
|
**/
|
|
3701
3723
|
PalletGrandpaError: {
|
|
3702
3724
|
_enum: [
|
|
@@ -3710,7 +3732,7 @@ export default {
|
|
|
3710
3732
|
],
|
|
3711
3733
|
},
|
|
3712
3734
|
/**
|
|
3713
|
-
*
|
|
3735
|
+
* Lookup488: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3714
3736
|
**/
|
|
3715
3737
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3716
3738
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3718,7 +3740,7 @@ export default {
|
|
|
3718
3740
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3719
3741
|
},
|
|
3720
3742
|
/**
|
|
3721
|
-
*
|
|
3743
|
+
* Lookup490: pallet_block_seal::pallet::Error<T>
|
|
3722
3744
|
**/
|
|
3723
3745
|
PalletBlockSealError: {
|
|
3724
3746
|
_enum: [
|
|
@@ -3746,11 +3768,11 @@ export default {
|
|
|
3746
3768
|
],
|
|
3747
3769
|
},
|
|
3748
3770
|
/**
|
|
3749
|
-
*
|
|
3771
|
+
* Lookup494: pallet_block_rewards::pallet::Error<T>
|
|
3750
3772
|
**/
|
|
3751
3773
|
PalletBlockRewardsError: 'Null',
|
|
3752
3774
|
/**
|
|
3753
|
-
*
|
|
3775
|
+
* Lookup495: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3754
3776
|
**/
|
|
3755
3777
|
PalletMintPendingMintUtxo: {
|
|
3756
3778
|
utxoId: 'Compact<u64>',
|
|
@@ -3759,7 +3781,7 @@ export default {
|
|
|
3759
3781
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3760
3782
|
},
|
|
3761
3783
|
/**
|
|
3762
|
-
*
|
|
3784
|
+
* Lookup497: pallet_mint::pallet::MintQueueCursor
|
|
3763
3785
|
**/
|
|
3764
3786
|
PalletMintMintQueueCursor: {
|
|
3765
3787
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3767,7 +3789,7 @@ export default {
|
|
|
3767
3789
|
payoutCursorFrameId: 'Option<u64>',
|
|
3768
3790
|
},
|
|
3769
3791
|
/**
|
|
3770
|
-
*
|
|
3792
|
+
* Lookup500: pallet_mint::pallet::MintAction<B>
|
|
3771
3793
|
**/
|
|
3772
3794
|
PalletMintMintAction: {
|
|
3773
3795
|
argonBurned: 'u128',
|
|
@@ -3775,13 +3797,13 @@ export default {
|
|
|
3775
3797
|
bitcoinMinted: 'u128',
|
|
3776
3798
|
},
|
|
3777
3799
|
/**
|
|
3778
|
-
*
|
|
3800
|
+
* Lookup502: pallet_mint::pallet::Error<T>
|
|
3779
3801
|
**/
|
|
3780
3802
|
PalletMintError: {
|
|
3781
3803
|
_enum: ['TooManyPendingMints'],
|
|
3782
3804
|
},
|
|
3783
3805
|
/**
|
|
3784
|
-
*
|
|
3806
|
+
* Lookup504: pallet_balances::types::BalanceLock<Balance>
|
|
3785
3807
|
**/
|
|
3786
3808
|
PalletBalancesBalanceLock: {
|
|
3787
3809
|
id: '[u8;8]',
|
|
@@ -3789,34 +3811,34 @@ export default {
|
|
|
3789
3811
|
reasons: 'PalletBalancesReasons',
|
|
3790
3812
|
},
|
|
3791
3813
|
/**
|
|
3792
|
-
*
|
|
3814
|
+
* Lookup505: pallet_balances::types::Reasons
|
|
3793
3815
|
**/
|
|
3794
3816
|
PalletBalancesReasons: {
|
|
3795
3817
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3796
3818
|
},
|
|
3797
3819
|
/**
|
|
3798
|
-
*
|
|
3820
|
+
* Lookup508: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3799
3821
|
**/
|
|
3800
3822
|
PalletBalancesReserveData: {
|
|
3801
3823
|
id: '[u8;8]',
|
|
3802
3824
|
amount: 'u128',
|
|
3803
3825
|
},
|
|
3804
3826
|
/**
|
|
3805
|
-
*
|
|
3827
|
+
* Lookup511: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3806
3828
|
**/
|
|
3807
3829
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3808
3830
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3809
3831
|
amount: 'u128',
|
|
3810
3832
|
},
|
|
3811
3833
|
/**
|
|
3812
|
-
*
|
|
3834
|
+
* Lookup514: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3813
3835
|
**/
|
|
3814
3836
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3815
3837
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3816
3838
|
amount: 'u128',
|
|
3817
3839
|
},
|
|
3818
3840
|
/**
|
|
3819
|
-
*
|
|
3841
|
+
* Lookup515: argon_runtime::RuntimeFreezeReason
|
|
3820
3842
|
**/
|
|
3821
3843
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3822
3844
|
_enum: {
|
|
@@ -3843,13 +3865,13 @@ export default {
|
|
|
3843
3865
|
},
|
|
3844
3866
|
},
|
|
3845
3867
|
/**
|
|
3846
|
-
*
|
|
3868
|
+
* Lookup516: pallet_block_rewards::pallet::FreezeReason
|
|
3847
3869
|
**/
|
|
3848
3870
|
PalletBlockRewardsFreezeReason: {
|
|
3849
3871
|
_enum: ['MaturationPeriod'],
|
|
3850
3872
|
},
|
|
3851
3873
|
/**
|
|
3852
|
-
*
|
|
3874
|
+
* Lookup518: pallet_balances::pallet::Error<T, I>
|
|
3853
3875
|
**/
|
|
3854
3876
|
PalletBalancesError: {
|
|
3855
3877
|
_enum: [
|
|
@@ -3868,48 +3890,48 @@ export default {
|
|
|
3868
3890
|
],
|
|
3869
3891
|
},
|
|
3870
3892
|
/**
|
|
3871
|
-
*
|
|
3893
|
+
* Lookup520: pallet_tx_pause::pallet::Error<T>
|
|
3872
3894
|
**/
|
|
3873
3895
|
PalletTxPauseError: {
|
|
3874
3896
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3875
3897
|
},
|
|
3876
3898
|
/**
|
|
3877
|
-
*
|
|
3899
|
+
* Lookup521: pallet_transaction_payment::Releases
|
|
3878
3900
|
**/
|
|
3879
3901
|
PalletTransactionPaymentReleases: {
|
|
3880
3902
|
_enum: ['V1Ancient', 'V2'],
|
|
3881
3903
|
},
|
|
3882
3904
|
/**
|
|
3883
|
-
*
|
|
3905
|
+
* Lookup522: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3884
3906
|
**/
|
|
3885
3907
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3886
3908
|
/**
|
|
3887
|
-
*
|
|
3909
|
+
* Lookup523: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3888
3910
|
**/
|
|
3889
3911
|
FrameSupportTokensFungibleImbalance: {
|
|
3890
3912
|
amount: 'u128',
|
|
3891
3913
|
},
|
|
3892
3914
|
/**
|
|
3893
|
-
*
|
|
3915
|
+
* Lookup524: pallet_utility::pallet::Error<T>
|
|
3894
3916
|
**/
|
|
3895
3917
|
PalletUtilityError: {
|
|
3896
3918
|
_enum: ['TooManyCalls'],
|
|
3897
3919
|
},
|
|
3898
3920
|
/**
|
|
3899
|
-
*
|
|
3921
|
+
* Lookup525: pallet_sudo::pallet::Error<T>
|
|
3900
3922
|
**/
|
|
3901
3923
|
PalletSudoError: {
|
|
3902
3924
|
_enum: ['RequireSudo'],
|
|
3903
3925
|
},
|
|
3904
3926
|
/**
|
|
3905
|
-
*
|
|
3927
|
+
* Lookup526: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3906
3928
|
**/
|
|
3907
3929
|
PalletTreasuryFrameVaultCapital: {
|
|
3908
3930
|
frameId: 'Compact<u64>',
|
|
3909
3931
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3910
3932
|
},
|
|
3911
3933
|
/**
|
|
3912
|
-
*
|
|
3934
|
+
* Lookup528: pallet_treasury::pallet::VaultCapital<T>
|
|
3913
3935
|
**/
|
|
3914
3936
|
PalletTreasuryVaultCapital: {
|
|
3915
3937
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
@@ -3918,14 +3940,14 @@ export default {
|
|
|
3918
3940
|
eligibleBonds: 'Compact<u32>',
|
|
3919
3941
|
},
|
|
3920
3942
|
/**
|
|
3921
|
-
*
|
|
3943
|
+
* Lookup530: pallet_treasury::pallet::BondLotAllocation
|
|
3922
3944
|
**/
|
|
3923
3945
|
PalletTreasuryBondLotAllocation: {
|
|
3924
3946
|
bondLotId: 'Compact<u64>',
|
|
3925
3947
|
prorata: 'u128',
|
|
3926
3948
|
},
|
|
3927
3949
|
/**
|
|
3928
|
-
*
|
|
3950
|
+
* Lookup535: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3929
3951
|
**/
|
|
3930
3952
|
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3931
3953
|
frameId: 'Compact<u64>',
|
|
@@ -3933,14 +3955,14 @@ export default {
|
|
|
3933
3955
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3934
3956
|
},
|
|
3935
3957
|
/**
|
|
3936
|
-
*
|
|
3958
|
+
* Lookup537: pallet_treasury::pallet::BondLotSummary
|
|
3937
3959
|
**/
|
|
3938
3960
|
PalletTreasuryBondLotSummary: {
|
|
3939
3961
|
bondLotId: 'Compact<u64>',
|
|
3940
3962
|
bonds: 'Compact<u32>',
|
|
3941
3963
|
},
|
|
3942
3964
|
/**
|
|
3943
|
-
*
|
|
3965
|
+
* Lookup539: pallet_treasury::pallet::BondLot<T>
|
|
3944
3966
|
**/
|
|
3945
3967
|
PalletTreasuryBondLot: {
|
|
3946
3968
|
owner: 'AccountId32',
|
|
@@ -3956,7 +3978,7 @@ export default {
|
|
|
3956
3978
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3957
3979
|
},
|
|
3958
3980
|
/**
|
|
3959
|
-
*
|
|
3981
|
+
* Lookup540: pallet_treasury::pallet::BondProgram
|
|
3960
3982
|
**/
|
|
3961
3983
|
PalletTreasuryBondProgram: {
|
|
3962
3984
|
_enum: {
|
|
@@ -3969,7 +3991,7 @@ export default {
|
|
|
3969
3991
|
},
|
|
3970
3992
|
},
|
|
3971
3993
|
/**
|
|
3972
|
-
*
|
|
3994
|
+
* Lookup543: pallet_treasury::pallet::VaultBondState<T>
|
|
3973
3995
|
**/
|
|
3974
3996
|
PalletTreasuryVaultBondState: {
|
|
3975
3997
|
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
@@ -3977,7 +3999,7 @@ export default {
|
|
|
3977
3999
|
backfillBondsReserved: 'Compact<u32>',
|
|
3978
4000
|
},
|
|
3979
4001
|
/**
|
|
3980
|
-
*
|
|
4002
|
+
* Lookup545: pallet_treasury::pallet::Error<T>
|
|
3981
4003
|
**/
|
|
3982
4004
|
PalletTreasuryError: {
|
|
3983
4005
|
_enum: [
|
|
@@ -4004,19 +4026,21 @@ export default {
|
|
|
4004
4026
|
],
|
|
4005
4027
|
},
|
|
4006
4028
|
/**
|
|
4007
|
-
*
|
|
4029
|
+
* Lookup546: pallet_fee_control::pallet::Error<T>
|
|
4008
4030
|
**/
|
|
4009
4031
|
PalletFeeControlError: {
|
|
4010
4032
|
_enum: ['SponsoredFeeTooHigh'],
|
|
4011
4033
|
},
|
|
4012
4034
|
/**
|
|
4013
|
-
*
|
|
4035
|
+
* Lookup547: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
4014
4036
|
**/
|
|
4015
4037
|
PalletOperationalAccountsOperationalAccount: {
|
|
4016
4038
|
vaultAccount: 'AccountId32',
|
|
4017
4039
|
miningAccount: 'AccountId32',
|
|
4018
4040
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
4019
4041
|
upstreamAccount: 'Option<AccountId32>',
|
|
4042
|
+
name: 'Option<Bytes>',
|
|
4043
|
+
lastNameChangeTick: 'Option<u64>',
|
|
4020
4044
|
uniswapArgonTransfersInAmount: 'u128',
|
|
4021
4045
|
accountBitcoinAmount: 'u128',
|
|
4022
4046
|
accountVaultBondAmount: 'u128',
|
|
@@ -4026,7 +4050,6 @@ export default {
|
|
|
4026
4050
|
miningSeatAccrual: 'Compact<u32>',
|
|
4027
4051
|
miningSeatAppliedTotal: 'Compact<u32>',
|
|
4028
4052
|
operationalCertificationsCount: 'Compact<u32>',
|
|
4029
|
-
accessCodePending: 'bool',
|
|
4030
4053
|
availableAccessCodes: 'Compact<u32>',
|
|
4031
4054
|
rewardsEarnedCount: 'Compact<u32>',
|
|
4032
4055
|
rewardsEarnedAmount: 'u128',
|
|
@@ -4034,14 +4057,14 @@ export default {
|
|
|
4034
4057
|
isOperationallyCertified: 'bool',
|
|
4035
4058
|
},
|
|
4036
4059
|
/**
|
|
4037
|
-
*
|
|
4060
|
+
* Lookup548: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
4038
4061
|
**/
|
|
4039
4062
|
PalletOperationalAccountsRewardsConfig: {
|
|
4040
4063
|
operationalCertificationReward: 'Compact<u128>',
|
|
4041
4064
|
operationalCertificationBonusReward: 'Compact<u128>',
|
|
4042
4065
|
},
|
|
4043
4066
|
/**
|
|
4044
|
-
*
|
|
4067
|
+
* Lookup549: pallet_operational_accounts::pallet::Error<T>
|
|
4045
4068
|
**/
|
|
4046
4069
|
PalletOperationalAccountsError: {
|
|
4047
4070
|
_enum: [
|
|
@@ -4064,16 +4087,17 @@ export default {
|
|
|
4064
4087
|
'AlreadyOperationallyCertified',
|
|
4065
4088
|
'NotEligibleForActivation',
|
|
4066
4089
|
'UpstreamHasNoAvailableAccessCodes',
|
|
4090
|
+
'InvalidName',
|
|
4067
4091
|
],
|
|
4068
4092
|
},
|
|
4069
4093
|
/**
|
|
4070
|
-
*
|
|
4094
|
+
* Lookup550: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
4071
4095
|
**/
|
|
4072
4096
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
4073
4097
|
slot: 'Compact<u64>',
|
|
4074
4098
|
},
|
|
4075
4099
|
/**
|
|
4076
|
-
*
|
|
4100
|
+
* Lookup551: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
4077
4101
|
**/
|
|
4078
4102
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
4079
4103
|
blockNumber: 'Compact<u64>',
|
|
@@ -4084,7 +4108,7 @@ export default {
|
|
|
4084
4108
|
receiptsRoot: 'H256',
|
|
4085
4109
|
},
|
|
4086
4110
|
/**
|
|
4087
|
-
*
|
|
4111
|
+
* Lookup552: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
4088
4112
|
**/
|
|
4089
4113
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
4090
4114
|
root: 'H256',
|
|
@@ -4092,13 +4116,13 @@ export default {
|
|
|
4092
4116
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
4093
4117
|
},
|
|
4094
4118
|
/**
|
|
4095
|
-
*
|
|
4119
|
+
* Lookup554: snowbridge_milagro_bls::keys::PublicKey
|
|
4096
4120
|
**/
|
|
4097
4121
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
4098
4122
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
4099
4123
|
},
|
|
4100
4124
|
/**
|
|
4101
|
-
*
|
|
4125
|
+
* Lookup555: snowbridge_amcl::bls381::ecp::ECP
|
|
4102
4126
|
**/
|
|
4103
4127
|
SnowbridgeAmclBls381Ecp: {
|
|
4104
4128
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -4106,26 +4130,26 @@ export default {
|
|
|
4106
4130
|
z: 'SnowbridgeAmclBls381Fp',
|
|
4107
4131
|
},
|
|
4108
4132
|
/**
|
|
4109
|
-
*
|
|
4133
|
+
* Lookup556: snowbridge_amcl::bls381::fp::FP
|
|
4110
4134
|
**/
|
|
4111
4135
|
SnowbridgeAmclBls381Fp: {
|
|
4112
4136
|
x: 'SnowbridgeAmclBls381Big',
|
|
4113
4137
|
xes: 'i32',
|
|
4114
4138
|
},
|
|
4115
4139
|
/**
|
|
4116
|
-
*
|
|
4140
|
+
* Lookup557: snowbridge_amcl::bls381::big::Big
|
|
4117
4141
|
**/
|
|
4118
4142
|
SnowbridgeAmclBls381Big: {
|
|
4119
4143
|
w: '[i32;14]',
|
|
4120
4144
|
},
|
|
4121
4145
|
/**
|
|
4122
|
-
*
|
|
4146
|
+
* Lookup561: argon_primitives::ethereum::EthereumBeaconPreset
|
|
4123
4147
|
**/
|
|
4124
4148
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
4125
4149
|
_enum: ['Mainnet', 'Minimal'],
|
|
4126
4150
|
},
|
|
4127
4151
|
/**
|
|
4128
|
-
*
|
|
4152
|
+
* Lookup562: pallet_ethereum_verifier::pallet::Error<T>
|
|
4129
4153
|
**/
|
|
4130
4154
|
PalletEthereumVerifierError: {
|
|
4131
4155
|
_enum: [
|
|
@@ -4156,7 +4180,7 @@ export default {
|
|
|
4156
4180
|
],
|
|
4157
4181
|
},
|
|
4158
4182
|
/**
|
|
4159
|
-
*
|
|
4183
|
+
* Lookup563: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4160
4184
|
**/
|
|
4161
4185
|
PalletCrosschainTransferAccountTransferTotals: {
|
|
4162
4186
|
microgonsIn: 'u128',
|
|
@@ -4169,7 +4193,7 @@ export default {
|
|
|
4169
4193
|
argonotTransfersOutCount: 'Compact<u32>',
|
|
4170
4194
|
},
|
|
4171
4195
|
/**
|
|
4172
|
-
*
|
|
4196
|
+
* Lookup565: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
4173
4197
|
**/
|
|
4174
4198
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
4175
4199
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -4177,7 +4201,7 @@ export default {
|
|
|
4177
4201
|
totalWeight: 'u128',
|
|
4178
4202
|
},
|
|
4179
4203
|
/**
|
|
4180
|
-
*
|
|
4204
|
+
* Lookup567: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4181
4205
|
**/
|
|
4182
4206
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4183
4207
|
accountId: 'AccountId32',
|
|
@@ -4185,7 +4209,7 @@ export default {
|
|
|
4185
4209
|
weight: 'u128',
|
|
4186
4210
|
},
|
|
4187
4211
|
/**
|
|
4188
|
-
*
|
|
4212
|
+
* Lookup572: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4189
4213
|
**/
|
|
4190
4214
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4191
4215
|
approvingCouncilHash: 'H256',
|
|
@@ -4198,7 +4222,7 @@ export default {
|
|
|
4198
4222
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4199
4223
|
},
|
|
4200
4224
|
/**
|
|
4201
|
-
*
|
|
4225
|
+
* Lookup577: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4202
4226
|
**/
|
|
4203
4227
|
PalletCrosschainTransferMintingAuthority: {
|
|
4204
4228
|
accountId: 'AccountId32',
|
|
@@ -4216,13 +4240,13 @@ export default {
|
|
|
4216
4240
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4217
4241
|
},
|
|
4218
4242
|
/**
|
|
4219
|
-
*
|
|
4243
|
+
* Lookup578: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4220
4244
|
**/
|
|
4221
4245
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4222
4246
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4223
4247
|
},
|
|
4224
4248
|
/**
|
|
4225
|
-
*
|
|
4249
|
+
* Lookup580: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4226
4250
|
**/
|
|
4227
4251
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4228
4252
|
argonAccountId: 'AccountId32',
|
|
@@ -4240,7 +4264,7 @@ export default {
|
|
|
4240
4264
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4241
4265
|
},
|
|
4242
4266
|
/**
|
|
4243
|
-
*
|
|
4267
|
+
* Lookup582: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4244
4268
|
**/
|
|
4245
4269
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4246
4270
|
microgonCollateral: 'u128',
|
|
@@ -4249,13 +4273,13 @@ export default {
|
|
|
4249
4273
|
signature: '[u8;65]',
|
|
4250
4274
|
},
|
|
4251
4275
|
/**
|
|
4252
|
-
*
|
|
4276
|
+
* Lookup586: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4253
4277
|
**/
|
|
4254
4278
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4255
4279
|
_enum: ['Started', 'Ready'],
|
|
4256
4280
|
},
|
|
4257
4281
|
/**
|
|
4258
|
-
*
|
|
4282
|
+
* Lookup588: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4259
4283
|
**/
|
|
4260
4284
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4261
4285
|
transferId: 'H256',
|
|
@@ -4263,14 +4287,14 @@ export default {
|
|
|
4263
4287
|
remainingMintingAuthorityTip: 'u128',
|
|
4264
4288
|
},
|
|
4265
4289
|
/**
|
|
4266
|
-
*
|
|
4290
|
+
* Lookup590: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4267
4291
|
**/
|
|
4268
4292
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4269
4293
|
argonCirculation: 'u128',
|
|
4270
4294
|
argonotCirculation: 'u128',
|
|
4271
4295
|
},
|
|
4272
4296
|
/**
|
|
4273
|
-
*
|
|
4297
|
+
* Lookup591: pallet_crosschain_transfer::pallet::Error<T>
|
|
4274
4298
|
**/
|
|
4275
4299
|
PalletCrosschainTransferError: {
|
|
4276
4300
|
_enum: [
|
|
@@ -4332,61 +4356,61 @@ export default {
|
|
|
4332
4356
|
],
|
|
4333
4357
|
},
|
|
4334
4358
|
/**
|
|
4335
|
-
*
|
|
4359
|
+
* Lookup593: pallet_bootstrap::pallet::Error<T>
|
|
4336
4360
|
**/
|
|
4337
4361
|
PalletBootstrapError: {
|
|
4338
4362
|
_enum: ['EncryptedPayloadTooLong', 'InvalidRecoveryProof', 'EndpointOwnedByAnotherAccount'],
|
|
4339
4363
|
},
|
|
4340
4364
|
/**
|
|
4341
|
-
*
|
|
4365
|
+
* Lookup596: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4342
4366
|
**/
|
|
4343
4367
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4344
4368
|
/**
|
|
4345
|
-
*
|
|
4369
|
+
* Lookup597: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4346
4370
|
**/
|
|
4347
4371
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4348
4372
|
/**
|
|
4349
|
-
*
|
|
4373
|
+
* Lookup598: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4350
4374
|
**/
|
|
4351
4375
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4352
4376
|
/**
|
|
4353
|
-
*
|
|
4377
|
+
* Lookup599: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4354
4378
|
**/
|
|
4355
4379
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4356
4380
|
/**
|
|
4357
|
-
*
|
|
4381
|
+
* Lookup600: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4358
4382
|
**/
|
|
4359
4383
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4360
4384
|
/**
|
|
4361
|
-
*
|
|
4385
|
+
* Lookup603: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4362
4386
|
**/
|
|
4363
4387
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4364
4388
|
/**
|
|
4365
|
-
*
|
|
4389
|
+
* Lookup604: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4366
4390
|
**/
|
|
4367
4391
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4368
4392
|
/**
|
|
4369
|
-
*
|
|
4393
|
+
* Lookup605: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4370
4394
|
**/
|
|
4371
4395
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4372
4396
|
/**
|
|
4373
|
-
*
|
|
4397
|
+
* Lookup606: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4374
4398
|
**/
|
|
4375
4399
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4376
4400
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4377
4401
|
},
|
|
4378
4402
|
/**
|
|
4379
|
-
*
|
|
4403
|
+
* Lookup607: frame_metadata_hash_extension::Mode
|
|
4380
4404
|
**/
|
|
4381
4405
|
FrameMetadataHashExtensionMode: {
|
|
4382
4406
|
_enum: ['Disabled', 'Enabled'],
|
|
4383
4407
|
},
|
|
4384
4408
|
/**
|
|
4385
|
-
*
|
|
4409
|
+
* Lookup608: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4386
4410
|
**/
|
|
4387
4411
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4388
4412
|
/**
|
|
4389
|
-
*
|
|
4413
|
+
* Lookup610: argon_runtime::Runtime
|
|
4390
4414
|
**/
|
|
4391
4415
|
ArgonRuntimeRuntime: 'Null',
|
|
4392
4416
|
};
|