@argonprotocol/mainchain 1.4.11-dev.f3bdc948 → 1.4.12-dev.2afa6e4a
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/README.md +0 -10
- package/browser/index.d.ts +713 -939
- package/browser/index.js +15 -1344
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +17 -1347
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +713 -939
- package/lib/index.d.ts +713 -939
- package/lib/index.js +19 -1349
- package/lib/index.js.map +1 -1
- package/package.json +2 -3
- package/src/interfaces/augment-api-consts.ts +16 -21
- package/src/interfaces/augment-api-errors.ts +108 -22
- package/src/interfaces/augment-api-events.ts +132 -74
- package/src/interfaces/augment-api-query.ts +97 -50
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +53 -77
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +325 -263
- package/src/interfaces/registry.ts +10 -5
- package/src/interfaces/types-lookup.ts +371 -307
package/src/interfaces/lookup.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
|
|
4
|
-
/* eslint-disable sort-keys */
|
|
5
2
|
|
|
6
3
|
export default {
|
|
7
4
|
/**
|
|
@@ -388,18 +385,15 @@ export default {
|
|
|
388
385
|
**/
|
|
389
386
|
PalletBitcoinUtxosEvent: {
|
|
390
387
|
_enum: {
|
|
391
|
-
|
|
392
|
-
utxoId: 'u64',
|
|
393
|
-
satoshisReceived: 'u64',
|
|
394
|
-
},
|
|
395
|
-
UtxoRejected: {
|
|
388
|
+
UtxoDetected: {
|
|
396
389
|
utxoId: 'u64',
|
|
397
390
|
utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
|
|
398
|
-
rejectedReason: 'ArgonPrimitivesBitcoinBitcoinRejectedReason',
|
|
399
391
|
satoshisReceived: 'u64',
|
|
392
|
+
bitcoinHeight: 'u64',
|
|
400
393
|
},
|
|
401
394
|
UtxoSpent: {
|
|
402
395
|
utxoId: 'u64',
|
|
396
|
+
utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
|
|
403
397
|
blockHeight: 'u64',
|
|
404
398
|
},
|
|
405
399
|
UtxoUnwatched: {
|
|
@@ -409,11 +403,7 @@ export default {
|
|
|
409
403
|
utxoId: 'u64',
|
|
410
404
|
error: 'SpRuntimeDispatchError',
|
|
411
405
|
},
|
|
412
|
-
|
|
413
|
-
utxoId: 'u64',
|
|
414
|
-
error: 'SpRuntimeDispatchError',
|
|
415
|
-
},
|
|
416
|
-
UtxoRejectedError: {
|
|
406
|
+
UtxoDetectedError: {
|
|
417
407
|
utxoId: 'u64',
|
|
418
408
|
error: 'SpRuntimeDispatchError',
|
|
419
409
|
},
|
|
@@ -431,13 +421,7 @@ export default {
|
|
|
431
421
|
**/
|
|
432
422
|
ArgonPrimitivesBitcoinH256Le: '[u8;32]',
|
|
433
423
|
/**
|
|
434
|
-
* Lookup54:
|
|
435
|
-
**/
|
|
436
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason: {
|
|
437
|
-
_enum: ['SatoshisOutsideAcceptedRange', 'Spent', 'VerificationExpired', 'AlreadyVerified'],
|
|
438
|
-
},
|
|
439
|
-
/**
|
|
440
|
-
* Lookup55: pallet_vaults::pallet::Event<T>
|
|
424
|
+
* Lookup54: pallet_vaults::pallet::Event<T>
|
|
441
425
|
**/
|
|
442
426
|
PalletVaultsEvent: {
|
|
443
427
|
_enum: {
|
|
@@ -482,15 +466,14 @@ export default {
|
|
|
482
466
|
vaultId: 'u32',
|
|
483
467
|
revenue: 'u128',
|
|
484
468
|
},
|
|
485
|
-
|
|
469
|
+
SecuritizationReserved: {
|
|
486
470
|
vaultId: 'u32',
|
|
487
471
|
locker: 'AccountId32',
|
|
488
|
-
|
|
489
|
-
isRatchet: 'bool',
|
|
472
|
+
securitizationCoverageMicrogons: 'u128',
|
|
490
473
|
feeRevenue: 'u128',
|
|
491
474
|
didUseFeeCoupon: 'bool',
|
|
492
475
|
},
|
|
493
|
-
|
|
476
|
+
SecuritizationReturned: {
|
|
494
477
|
vaultId: 'u32',
|
|
495
478
|
amount: 'u128',
|
|
496
479
|
},
|
|
@@ -527,29 +510,19 @@ export default {
|
|
|
527
510
|
},
|
|
528
511
|
},
|
|
529
512
|
/**
|
|
530
|
-
*
|
|
513
|
+
* Lookup56: pallet_bitcoin_locks::pallet::Event<T>
|
|
531
514
|
**/
|
|
532
515
|
PalletBitcoinLocksEvent: {
|
|
533
516
|
_enum: {
|
|
534
517
|
BitcoinLockCreated: {
|
|
535
518
|
utxoId: 'u64',
|
|
536
519
|
vaultId: 'u32',
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
520
|
+
securitizedSatoshis: 'u64',
|
|
521
|
+
microgonsAtTargetPerBtc: 'u128',
|
|
522
|
+
collateralRequired: 'u128',
|
|
540
523
|
accountId: 'AccountId32',
|
|
541
524
|
securityFee: 'u128',
|
|
542
525
|
},
|
|
543
|
-
BitcoinLockRatcheted: {
|
|
544
|
-
utxoId: 'u64',
|
|
545
|
-
vaultId: 'u32',
|
|
546
|
-
liquidityPromised: 'u128',
|
|
547
|
-
oldTargetPrice: 'u128',
|
|
548
|
-
securityFee: 'u128',
|
|
549
|
-
newTargetPrice: 'u128',
|
|
550
|
-
amountBurned: 'u128',
|
|
551
|
-
accountId: 'AccountId32',
|
|
552
|
-
},
|
|
553
526
|
BitcoinLockBurned: {
|
|
554
527
|
utxoId: 'u64',
|
|
555
528
|
vaultId: 'u32',
|
|
@@ -601,16 +574,21 @@ export default {
|
|
|
601
574
|
accountId: 'AccountId32',
|
|
602
575
|
signature: 'Bytes',
|
|
603
576
|
},
|
|
604
|
-
|
|
605
|
-
|
|
577
|
+
OrphanedUtxoExpirationError: {
|
|
578
|
+
accountId: 'AccountId32',
|
|
606
579
|
utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
|
|
607
|
-
|
|
580
|
+
error: 'SpRuntimeDispatchError',
|
|
581
|
+
},
|
|
582
|
+
OrphanedUtxoCleanupScheduleOverflow: {
|
|
608
583
|
accountId: 'AccountId32',
|
|
584
|
+
utxoId: 'u64',
|
|
585
|
+
expirationFrame: 'u64',
|
|
609
586
|
},
|
|
610
|
-
|
|
587
|
+
BitcoinLockResecuritized: {
|
|
611
588
|
utxoId: 'u64',
|
|
612
589
|
vaultId: 'u32',
|
|
613
|
-
|
|
590
|
+
securitizedSatoshis: 'u64',
|
|
591
|
+
microgonsAtTargetPerBtc: 'u128',
|
|
614
592
|
accountId: 'AccountId32',
|
|
615
593
|
},
|
|
616
594
|
BitcoinLockFlexibleChanged: {
|
|
@@ -621,7 +599,7 @@ export default {
|
|
|
621
599
|
},
|
|
622
600
|
},
|
|
623
601
|
/**
|
|
624
|
-
*
|
|
602
|
+
* Lookup59: pallet_notaries::pallet::Event<T>
|
|
625
603
|
**/
|
|
626
604
|
PalletNotariesEvent: {
|
|
627
605
|
_enum: {
|
|
@@ -650,7 +628,7 @@ export default {
|
|
|
650
628
|
},
|
|
651
629
|
},
|
|
652
630
|
/**
|
|
653
|
-
*
|
|
631
|
+
* Lookup60: argon_primitives::notary::NotaryMeta<MaxHosts>
|
|
654
632
|
**/
|
|
655
633
|
ArgonPrimitivesNotaryNotaryMeta: {
|
|
656
634
|
name: 'Bytes',
|
|
@@ -658,7 +636,7 @@ export default {
|
|
|
658
636
|
hosts: 'Vec<Bytes>',
|
|
659
637
|
},
|
|
660
638
|
/**
|
|
661
|
-
*
|
|
639
|
+
* Lookup67: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
|
|
662
640
|
**/
|
|
663
641
|
ArgonPrimitivesNotaryNotaryRecord: {
|
|
664
642
|
notaryId: 'Compact<u32>',
|
|
@@ -669,7 +647,7 @@ export default {
|
|
|
669
647
|
meta: 'ArgonPrimitivesNotaryNotaryMeta',
|
|
670
648
|
},
|
|
671
649
|
/**
|
|
672
|
-
*
|
|
650
|
+
* Lookup68: pallet_notebook::pallet::Event<T>
|
|
673
651
|
**/
|
|
674
652
|
PalletNotebookEvent: {
|
|
675
653
|
_enum: {
|
|
@@ -690,7 +668,7 @@ export default {
|
|
|
690
668
|
},
|
|
691
669
|
},
|
|
692
670
|
/**
|
|
693
|
-
*
|
|
671
|
+
* Lookup69: argon_notary_audit::error::VerifyError
|
|
694
672
|
**/
|
|
695
673
|
ArgonNotaryAuditErrorVerifyError: {
|
|
696
674
|
_enum: {
|
|
@@ -800,13 +778,13 @@ export default {
|
|
|
800
778
|
},
|
|
801
779
|
},
|
|
802
780
|
/**
|
|
803
|
-
*
|
|
781
|
+
* Lookup70: argon_primitives::account::AccountType
|
|
804
782
|
**/
|
|
805
783
|
ArgonPrimitivesAccountAccountType: {
|
|
806
784
|
_enum: ['Tax', 'Deposit'],
|
|
807
785
|
},
|
|
808
786
|
/**
|
|
809
|
-
*
|
|
787
|
+
* Lookup71: argon_notary_audit::AccountHistoryLookupError
|
|
810
788
|
**/
|
|
811
789
|
ArgonNotaryAuditAccountHistoryLookupError: {
|
|
812
790
|
_enum: [
|
|
@@ -817,7 +795,7 @@ export default {
|
|
|
817
795
|
],
|
|
818
796
|
},
|
|
819
797
|
/**
|
|
820
|
-
*
|
|
798
|
+
* Lookup75: pallet_localchain_transfer::pallet::Event<T>
|
|
821
799
|
**/
|
|
822
800
|
PalletLocalchainTransferEvent: {
|
|
823
801
|
_enum: {
|
|
@@ -866,7 +844,7 @@ export default {
|
|
|
866
844
|
},
|
|
867
845
|
},
|
|
868
846
|
/**
|
|
869
|
-
*
|
|
847
|
+
* Lookup76: pallet_block_seal_spec::pallet::Event<T>
|
|
870
848
|
**/
|
|
871
849
|
PalletBlockSealSpecEvent: {
|
|
872
850
|
_enum: {
|
|
@@ -885,7 +863,7 @@ export default {
|
|
|
885
863
|
},
|
|
886
864
|
},
|
|
887
865
|
/**
|
|
888
|
-
*
|
|
866
|
+
* Lookup77: pallet_domains::pallet::Event<T>
|
|
889
867
|
**/
|
|
890
868
|
PalletDomainsEvent: {
|
|
891
869
|
_enum: {
|
|
@@ -915,7 +893,7 @@ export default {
|
|
|
915
893
|
},
|
|
916
894
|
},
|
|
917
895
|
/**
|
|
918
|
-
*
|
|
896
|
+
* Lookup78: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
|
|
919
897
|
**/
|
|
920
898
|
ArgonPrimitivesDomainZoneRecord: {
|
|
921
899
|
paymentAccount: 'AccountId32',
|
|
@@ -923,7 +901,7 @@ export default {
|
|
|
923
901
|
versions: 'BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>',
|
|
924
902
|
},
|
|
925
903
|
/**
|
|
926
|
-
*
|
|
904
|
+
* Lookup80: argon_primitives::domain::Semver
|
|
927
905
|
**/
|
|
928
906
|
ArgonPrimitivesDomainSemver: {
|
|
929
907
|
major: 'u32',
|
|
@@ -931,21 +909,21 @@ export default {
|
|
|
931
909
|
patch: 'u32',
|
|
932
910
|
},
|
|
933
911
|
/**
|
|
934
|
-
*
|
|
912
|
+
* Lookup81: argon_primitives::domain::VersionHost
|
|
935
913
|
**/
|
|
936
914
|
ArgonPrimitivesDomainVersionHost: {
|
|
937
915
|
datastoreId: 'Bytes',
|
|
938
916
|
host: 'Bytes',
|
|
939
917
|
},
|
|
940
918
|
/**
|
|
941
|
-
*
|
|
919
|
+
* Lookup86: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
|
|
942
920
|
**/
|
|
943
921
|
PalletDomainsDomainRegistration: {
|
|
944
922
|
accountId: 'AccountId32',
|
|
945
923
|
registeredAtTick: 'u64',
|
|
946
924
|
},
|
|
947
925
|
/**
|
|
948
|
-
*
|
|
926
|
+
* Lookup87: pallet_price_index::pallet::Event<T>
|
|
949
927
|
**/
|
|
950
928
|
PalletPriceIndexEvent: {
|
|
951
929
|
_enum: {
|
|
@@ -956,7 +934,7 @@ export default {
|
|
|
956
934
|
},
|
|
957
935
|
},
|
|
958
936
|
/**
|
|
959
|
-
*
|
|
937
|
+
* Lookup88: pallet_grandpa::pallet::Event
|
|
960
938
|
**/
|
|
961
939
|
PalletGrandpaEvent: {
|
|
962
940
|
_enum: {
|
|
@@ -968,7 +946,7 @@ export default {
|
|
|
968
946
|
},
|
|
969
947
|
},
|
|
970
948
|
/**
|
|
971
|
-
*
|
|
949
|
+
* Lookup91: pallet_block_rewards::pallet::Event<T>
|
|
972
950
|
**/
|
|
973
951
|
PalletBlockRewardsEvent: {
|
|
974
952
|
_enum: {
|
|
@@ -984,7 +962,7 @@ export default {
|
|
|
984
962
|
},
|
|
985
963
|
},
|
|
986
964
|
/**
|
|
987
|
-
*
|
|
965
|
+
* Lookup93: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
|
|
988
966
|
**/
|
|
989
967
|
ArgonPrimitivesBlockSealBlockPayout: {
|
|
990
968
|
accountId: 'AccountId32',
|
|
@@ -994,18 +972,19 @@ export default {
|
|
|
994
972
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
995
973
|
},
|
|
996
974
|
/**
|
|
997
|
-
*
|
|
975
|
+
* Lookup94: argon_primitives::block_seal::BlockRewardType
|
|
998
976
|
**/
|
|
999
977
|
ArgonPrimitivesBlockSealBlockRewardType: {
|
|
1000
978
|
_enum: ['Miner', 'Voter', 'ProfitShare'],
|
|
1001
979
|
},
|
|
1002
980
|
/**
|
|
1003
|
-
*
|
|
981
|
+
* Lookup97: pallet_mint::pallet::Event<T>
|
|
1004
982
|
**/
|
|
1005
983
|
PalletMintEvent: {
|
|
1006
984
|
_enum: {
|
|
1007
985
|
BitcoinMint: {
|
|
1008
986
|
accountId: 'AccountId32',
|
|
987
|
+
fissionId: 'u64',
|
|
1009
988
|
utxoId: 'Option<u64>',
|
|
1010
989
|
amount: 'u128',
|
|
1011
990
|
},
|
|
@@ -1018,6 +997,7 @@ export default {
|
|
|
1018
997
|
MintError: {
|
|
1019
998
|
mintType: 'PalletMintMintType',
|
|
1020
999
|
accountId: 'AccountId32',
|
|
1000
|
+
fissionId: 'Option<u64>',
|
|
1021
1001
|
utxoId: 'Option<u64>',
|
|
1022
1002
|
amount: 'u128',
|
|
1023
1003
|
error: 'SpRuntimeDispatchError',
|
|
@@ -1025,13 +1005,13 @@ export default {
|
|
|
1025
1005
|
},
|
|
1026
1006
|
},
|
|
1027
1007
|
/**
|
|
1028
|
-
*
|
|
1008
|
+
* Lookup100: pallet_mint::pallet::MintType
|
|
1029
1009
|
**/
|
|
1030
1010
|
PalletMintMintType: {
|
|
1031
1011
|
_enum: ['Bitcoin', 'Mining'],
|
|
1032
1012
|
},
|
|
1033
1013
|
/**
|
|
1034
|
-
*
|
|
1014
|
+
* Lookup101: pallet_balances::pallet::Event<T, I>
|
|
1035
1015
|
**/
|
|
1036
1016
|
PalletBalancesEvent: {
|
|
1037
1017
|
_enum: {
|
|
@@ -1163,13 +1143,13 @@ export default {
|
|
|
1163
1143
|
},
|
|
1164
1144
|
},
|
|
1165
1145
|
/**
|
|
1166
|
-
*
|
|
1146
|
+
* Lookup102: frame_support::traits::tokens::misc::BalanceStatus
|
|
1167
1147
|
**/
|
|
1168
1148
|
FrameSupportTokensMiscBalanceStatus: {
|
|
1169
1149
|
_enum: ['Free', 'Reserved'],
|
|
1170
1150
|
},
|
|
1171
1151
|
/**
|
|
1172
|
-
*
|
|
1152
|
+
* Lookup103: argon_runtime::RuntimeHoldReason
|
|
1173
1153
|
**/
|
|
1174
1154
|
ArgonRuntimeRuntimeHoldReason: {
|
|
1175
1155
|
_enum: {
|
|
@@ -1213,49 +1193,49 @@ export default {
|
|
|
1213
1193
|
},
|
|
1214
1194
|
},
|
|
1215
1195
|
/**
|
|
1216
|
-
*
|
|
1196
|
+
* Lookup104: pallet_mining_slot::pallet::HoldReason
|
|
1217
1197
|
**/
|
|
1218
1198
|
PalletMiningSlotHoldReason: {
|
|
1219
1199
|
_enum: ['RegisterAsMiner'],
|
|
1220
1200
|
},
|
|
1221
1201
|
/**
|
|
1222
|
-
*
|
|
1202
|
+
* Lookup105: pallet_vaults::pallet::HoldReason
|
|
1223
1203
|
**/
|
|
1224
1204
|
PalletVaultsHoldReason: {
|
|
1225
1205
|
_enum: ['EnterVault', 'ObligationFee', 'PendingCollect'],
|
|
1226
1206
|
},
|
|
1227
1207
|
/**
|
|
1228
|
-
*
|
|
1208
|
+
* Lookup106: pallet_bitcoin_locks::pallet::HoldReason
|
|
1229
1209
|
**/
|
|
1230
1210
|
PalletBitcoinLocksHoldReason: {
|
|
1231
1211
|
_enum: ['ReleaseBitcoinLock'],
|
|
1232
1212
|
},
|
|
1233
1213
|
/**
|
|
1234
|
-
*
|
|
1214
|
+
* Lookup107: pallet_block_rewards::pallet::HoldReason
|
|
1235
1215
|
**/
|
|
1236
1216
|
PalletBlockRewardsHoldReason: {
|
|
1237
1217
|
_enum: ['MaturationPeriod'],
|
|
1238
1218
|
},
|
|
1239
1219
|
/**
|
|
1240
|
-
*
|
|
1220
|
+
* Lookup108: pallet_treasury::pallet::HoldReason
|
|
1241
1221
|
**/
|
|
1242
1222
|
PalletTreasuryHoldReason: {
|
|
1243
1223
|
_enum: ['ContributedToTreasury'],
|
|
1244
1224
|
},
|
|
1245
1225
|
/**
|
|
1246
|
-
*
|
|
1226
|
+
* Lookup109: pallet_crosschain_transfer::pallet::HoldReason
|
|
1247
1227
|
**/
|
|
1248
1228
|
PalletCrosschainTransferHoldReason: {
|
|
1249
1229
|
_enum: ['TransferOutMintingAuthorityTip', 'MintingAuthorityActivationRepayment'],
|
|
1250
1230
|
},
|
|
1251
1231
|
/**
|
|
1252
|
-
*
|
|
1232
|
+
* Lookup110: pallet_balances::pallet::UnexpectedKind
|
|
1253
1233
|
**/
|
|
1254
1234
|
PalletBalancesUnexpectedKind: {
|
|
1255
1235
|
_enum: ['BalanceUpdated', 'FailedToMutateAccount'],
|
|
1256
1236
|
},
|
|
1257
1237
|
/**
|
|
1258
|
-
*
|
|
1238
|
+
* Lookup112: pallet_tx_pause::pallet::Event<T>
|
|
1259
1239
|
**/
|
|
1260
1240
|
PalletTxPauseEvent: {
|
|
1261
1241
|
_enum: {
|
|
@@ -1268,7 +1248,7 @@ export default {
|
|
|
1268
1248
|
},
|
|
1269
1249
|
},
|
|
1270
1250
|
/**
|
|
1271
|
-
*
|
|
1251
|
+
* Lookup115: pallet_transaction_payment::pallet::Event<T>
|
|
1272
1252
|
**/
|
|
1273
1253
|
PalletTransactionPaymentEvent: {
|
|
1274
1254
|
_enum: {
|
|
@@ -1280,7 +1260,7 @@ export default {
|
|
|
1280
1260
|
},
|
|
1281
1261
|
},
|
|
1282
1262
|
/**
|
|
1283
|
-
*
|
|
1263
|
+
* Lookup116: pallet_utility::pallet::Event
|
|
1284
1264
|
**/
|
|
1285
1265
|
PalletUtilityEvent: {
|
|
1286
1266
|
_enum: {
|
|
@@ -1304,7 +1284,7 @@ export default {
|
|
|
1304
1284
|
},
|
|
1305
1285
|
},
|
|
1306
1286
|
/**
|
|
1307
|
-
*
|
|
1287
|
+
* Lookup117: pallet_sudo::pallet::Event<T>
|
|
1308
1288
|
**/
|
|
1309
1289
|
PalletSudoEvent: {
|
|
1310
1290
|
_enum: {
|
|
@@ -1324,6 +1304,41 @@ export default {
|
|
|
1324
1304
|
},
|
|
1325
1305
|
},
|
|
1326
1306
|
},
|
|
1307
|
+
/**
|
|
1308
|
+
* Lookup118: pallet_bitcoin_fissions::pallet::Event<T>
|
|
1309
|
+
**/
|
|
1310
|
+
PalletBitcoinFissionsEvent: {
|
|
1311
|
+
_enum: {
|
|
1312
|
+
FissionCreated: {
|
|
1313
|
+
accountId: 'AccountId32',
|
|
1314
|
+
fissionId: 'u64',
|
|
1315
|
+
liquidId: 'u64',
|
|
1316
|
+
utxoId: 'u64',
|
|
1317
|
+
satoshis: 'u64',
|
|
1318
|
+
microgonsAtTargetPerBtc: 'u128',
|
|
1319
|
+
liquidityPromised: 'u128',
|
|
1320
|
+
},
|
|
1321
|
+
FissionRatcheted: {
|
|
1322
|
+
accountId: 'AccountId32',
|
|
1323
|
+
fissionId: 'u64',
|
|
1324
|
+
ratchetNumber: 'u32',
|
|
1325
|
+
microgonsAtTargetPerBtc: 'u128',
|
|
1326
|
+
liquidityPromised: 'u128',
|
|
1327
|
+
amountMinted: 'u128',
|
|
1328
|
+
amountBurned: 'u128',
|
|
1329
|
+
},
|
|
1330
|
+
FissionClosed: {
|
|
1331
|
+
accountId: 'AccountId32',
|
|
1332
|
+
fissionId: 'u64',
|
|
1333
|
+
redemptionAmount: 'u128',
|
|
1334
|
+
},
|
|
1335
|
+
FissionClosedByLock: {
|
|
1336
|
+
accountId: 'AccountId32',
|
|
1337
|
+
fissionId: 'u64',
|
|
1338
|
+
utxoId: 'u64',
|
|
1339
|
+
},
|
|
1340
|
+
},
|
|
1341
|
+
},
|
|
1327
1342
|
/**
|
|
1328
1343
|
* Lookup119: pallet_treasury::pallet::Event<T>
|
|
1329
1344
|
**/
|
|
@@ -2116,14 +2131,6 @@ export default {
|
|
|
2116
2131
|
set_operator: {
|
|
2117
2132
|
accountId: 'AccountId32',
|
|
2118
2133
|
},
|
|
2119
|
-
fund_with_utxo_candidate: {
|
|
2120
|
-
utxoId: 'u64',
|
|
2121
|
-
utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
|
|
2122
|
-
},
|
|
2123
|
-
reject_utxo_candidate: {
|
|
2124
|
-
utxoId: 'u64',
|
|
2125
|
-
utxoRef: 'ArgonPrimitivesBitcoinUtxoRef',
|
|
2126
|
-
},
|
|
2127
2134
|
},
|
|
2128
2135
|
},
|
|
2129
2136
|
/**
|
|
@@ -2225,7 +2232,7 @@ export default {
|
|
|
2225
2232
|
**/
|
|
2226
2233
|
PalletBitcoinLocksCall: {
|
|
2227
2234
|
_enum: {
|
|
2228
|
-
|
|
2235
|
+
create_receive_address: {
|
|
2229
2236
|
vaultId: 'u32',
|
|
2230
2237
|
satoshis: 'Compact<u64>',
|
|
2231
2238
|
bitcoinPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -2240,10 +2247,7 @@ export default {
|
|
|
2240
2247
|
utxoId: 'u64',
|
|
2241
2248
|
signature: 'Bytes',
|
|
2242
2249
|
},
|
|
2243
|
-
|
|
2244
|
-
utxoId: 'u64',
|
|
2245
|
-
options: 'Option<PalletBitcoinLocksLockOptions>',
|
|
2246
|
-
},
|
|
2250
|
+
__Unused3: 'Null',
|
|
2247
2251
|
admin_modify_minimum_locked_sats: {
|
|
2248
2252
|
satoshis: 'u64',
|
|
2249
2253
|
},
|
|
@@ -2259,9 +2263,10 @@ export default {
|
|
|
2259
2263
|
},
|
|
2260
2264
|
__Unused7: 'Null',
|
|
2261
2265
|
__Unused8: 'Null',
|
|
2262
|
-
|
|
2266
|
+
resecuritize: {
|
|
2263
2267
|
utxoId: 'u64',
|
|
2264
|
-
|
|
2268
|
+
satoshis: 'Compact<u64>',
|
|
2269
|
+
options: 'Option<PalletBitcoinLocksLockOptions>',
|
|
2265
2270
|
},
|
|
2266
2271
|
set_flexible: {
|
|
2267
2272
|
utxoId: 'u64',
|
|
@@ -2277,18 +2282,11 @@ export default {
|
|
|
2277
2282
|
* Lookup220: pallet_bitcoin_locks::pallet::LockOptions<T>
|
|
2278
2283
|
**/
|
|
2279
2284
|
PalletBitcoinLocksLockOptions: {
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
microgonsAtTargetPerBtc: 'Option<u128>',
|
|
2283
|
-
},
|
|
2284
|
-
V2: {
|
|
2285
|
-
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
2286
|
-
feeCoupon: 'PalletBitcoinLocksFeeCoupon',
|
|
2287
|
-
},
|
|
2288
|
-
},
|
|
2285
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
2286
|
+
feeCoupon: 'Option<PalletBitcoinLocksFeeCoupon>',
|
|
2289
2287
|
},
|
|
2290
2288
|
/**
|
|
2291
|
-
*
|
|
2289
|
+
* Lookup222: pallet_bitcoin_locks::pallet::FeeCoupon<T>
|
|
2292
2290
|
**/
|
|
2293
2291
|
PalletBitcoinLocksFeeCoupon: {
|
|
2294
2292
|
feeDiscount: 'Compact<u128>',
|
|
@@ -2298,7 +2296,7 @@ export default {
|
|
|
2298
2296
|
signature: 'SpRuntimeMultiSignature',
|
|
2299
2297
|
},
|
|
2300
2298
|
/**
|
|
2301
|
-
*
|
|
2299
|
+
* Lookup223: sp_runtime::MultiSignature
|
|
2302
2300
|
**/
|
|
2303
2301
|
SpRuntimeMultiSignature: {
|
|
2304
2302
|
_enum: {
|
|
@@ -2309,7 +2307,7 @@ export default {
|
|
|
2309
2307
|
},
|
|
2310
2308
|
},
|
|
2311
2309
|
/**
|
|
2312
|
-
*
|
|
2310
|
+
* Lookup228: pallet_notaries::pallet::Call<T>
|
|
2313
2311
|
**/
|
|
2314
2312
|
PalletNotariesCall: {
|
|
2315
2313
|
_enum: {
|
|
@@ -2327,7 +2325,7 @@ export default {
|
|
|
2327
2325
|
},
|
|
2328
2326
|
},
|
|
2329
2327
|
/**
|
|
2330
|
-
*
|
|
2328
|
+
* Lookup229: pallet_notebook::pallet::Call<T>
|
|
2331
2329
|
**/
|
|
2332
2330
|
PalletNotebookCall: {
|
|
2333
2331
|
_enum: {
|
|
@@ -2340,14 +2338,14 @@ export default {
|
|
|
2340
2338
|
},
|
|
2341
2339
|
},
|
|
2342
2340
|
/**
|
|
2343
|
-
*
|
|
2341
|
+
* Lookup231: argon_primitives::notebook::SignedNotebookHeader
|
|
2344
2342
|
**/
|
|
2345
2343
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
2346
2344
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
2347
2345
|
signature: '[u8;64]',
|
|
2348
2346
|
},
|
|
2349
2347
|
/**
|
|
2350
|
-
*
|
|
2348
|
+
* Lookup232: argon_primitives::notebook::NotebookHeader
|
|
2351
2349
|
**/
|
|
2352
2350
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
2353
2351
|
version: 'Compact<u16>',
|
|
@@ -2367,7 +2365,7 @@ export default {
|
|
|
2367
2365
|
domains: 'Vec<(H256,AccountId32)>',
|
|
2368
2366
|
},
|
|
2369
2367
|
/**
|
|
2370
|
-
*
|
|
2368
|
+
* Lookup235: argon_primitives::notebook::ChainTransfer
|
|
2371
2369
|
**/
|
|
2372
2370
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
2373
2371
|
_enum: {
|
|
@@ -2381,14 +2379,14 @@ export default {
|
|
|
2381
2379
|
},
|
|
2382
2380
|
},
|
|
2383
2381
|
/**
|
|
2384
|
-
*
|
|
2382
|
+
* Lookup238: argon_primitives::balance_change::AccountOrigin
|
|
2385
2383
|
**/
|
|
2386
2384
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
2387
2385
|
notebookNumber: 'Compact<u32>',
|
|
2388
2386
|
accountUid: 'Compact<u32>',
|
|
2389
2387
|
},
|
|
2390
2388
|
/**
|
|
2391
|
-
*
|
|
2389
|
+
* Lookup244: pallet_localchain_transfer::pallet::Call<T>
|
|
2392
2390
|
**/
|
|
2393
2391
|
PalletLocalchainTransferCall: {
|
|
2394
2392
|
_enum: {
|
|
@@ -2399,7 +2397,7 @@ export default {
|
|
|
2399
2397
|
},
|
|
2400
2398
|
},
|
|
2401
2399
|
/**
|
|
2402
|
-
*
|
|
2400
|
+
* Lookup245: pallet_block_seal_spec::pallet::Call<T>
|
|
2403
2401
|
**/
|
|
2404
2402
|
PalletBlockSealSpecCall: {
|
|
2405
2403
|
_enum: {
|
|
@@ -2410,7 +2408,7 @@ export default {
|
|
|
2410
2408
|
},
|
|
2411
2409
|
},
|
|
2412
2410
|
/**
|
|
2413
|
-
*
|
|
2411
|
+
* Lookup246: pallet_domains::pallet::Call<T>
|
|
2414
2412
|
**/
|
|
2415
2413
|
PalletDomainsCall: {
|
|
2416
2414
|
_enum: {
|
|
@@ -2421,7 +2419,7 @@ export default {
|
|
|
2421
2419
|
},
|
|
2422
2420
|
},
|
|
2423
2421
|
/**
|
|
2424
|
-
*
|
|
2422
|
+
* Lookup247: pallet_price_index::pallet::Call<T>
|
|
2425
2423
|
**/
|
|
2426
2424
|
PalletPriceIndexCall: {
|
|
2427
2425
|
_enum: {
|
|
@@ -2435,7 +2433,7 @@ export default {
|
|
|
2435
2433
|
},
|
|
2436
2434
|
},
|
|
2437
2435
|
/**
|
|
2438
|
-
*
|
|
2436
|
+
* Lookup248: pallet_price_index::PriceIndex
|
|
2439
2437
|
**/
|
|
2440
2438
|
PalletPriceIndexPriceIndex: {
|
|
2441
2439
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2446,7 +2444,7 @@ export default {
|
|
|
2446
2444
|
tick: 'Compact<u64>',
|
|
2447
2445
|
},
|
|
2448
2446
|
/**
|
|
2449
|
-
*
|
|
2447
|
+
* Lookup250: pallet_price_index::EthereumPriceIndex
|
|
2450
2448
|
**/
|
|
2451
2449
|
PalletPriceIndexEthereumPriceIndex: {
|
|
2452
2450
|
ethereumUsdPrice: 'u128',
|
|
@@ -2454,7 +2452,7 @@ export default {
|
|
|
2454
2452
|
tick: 'Compact<u64>',
|
|
2455
2453
|
},
|
|
2456
2454
|
/**
|
|
2457
|
-
*
|
|
2455
|
+
* Lookup251: pallet_grandpa::pallet::Call<T>
|
|
2458
2456
|
**/
|
|
2459
2457
|
PalletGrandpaCall: {
|
|
2460
2458
|
_enum: {
|
|
@@ -2473,14 +2471,14 @@ export default {
|
|
|
2473
2471
|
},
|
|
2474
2472
|
},
|
|
2475
2473
|
/**
|
|
2476
|
-
*
|
|
2474
|
+
* Lookup252: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2477
2475
|
**/
|
|
2478
2476
|
SpConsensusGrandpaEquivocationProof: {
|
|
2479
2477
|
setId: 'u64',
|
|
2480
2478
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2481
2479
|
},
|
|
2482
2480
|
/**
|
|
2483
|
-
*
|
|
2481
|
+
* Lookup253: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2484
2482
|
**/
|
|
2485
2483
|
SpConsensusGrandpaEquivocation: {
|
|
2486
2484
|
_enum: {
|
|
@@ -2489,7 +2487,7 @@ export default {
|
|
|
2489
2487
|
},
|
|
2490
2488
|
},
|
|
2491
2489
|
/**
|
|
2492
|
-
*
|
|
2490
|
+
* Lookup254: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2493
2491
|
**/
|
|
2494
2492
|
FinalityGrandpaEquivocationPrevote: {
|
|
2495
2493
|
roundNumber: 'u64',
|
|
@@ -2498,18 +2496,18 @@ export default {
|
|
|
2498
2496
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2499
2497
|
},
|
|
2500
2498
|
/**
|
|
2501
|
-
*
|
|
2499
|
+
* Lookup255: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2502
2500
|
**/
|
|
2503
2501
|
FinalityGrandpaPrevote: {
|
|
2504
2502
|
targetHash: 'H256',
|
|
2505
2503
|
targetNumber: 'u32',
|
|
2506
2504
|
},
|
|
2507
2505
|
/**
|
|
2508
|
-
*
|
|
2506
|
+
* Lookup256: sp_consensus_grandpa::app::Signature
|
|
2509
2507
|
**/
|
|
2510
2508
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2511
2509
|
/**
|
|
2512
|
-
*
|
|
2510
|
+
* Lookup258: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2513
2511
|
**/
|
|
2514
2512
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2515
2513
|
roundNumber: 'u64',
|
|
@@ -2518,18 +2516,18 @@ export default {
|
|
|
2518
2516
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2519
2517
|
},
|
|
2520
2518
|
/**
|
|
2521
|
-
*
|
|
2519
|
+
* Lookup259: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2522
2520
|
**/
|
|
2523
2521
|
FinalityGrandpaPrecommit: {
|
|
2524
2522
|
targetHash: 'H256',
|
|
2525
2523
|
targetNumber: 'u32',
|
|
2526
2524
|
},
|
|
2527
2525
|
/**
|
|
2528
|
-
*
|
|
2526
|
+
* Lookup261: sp_core::Void
|
|
2529
2527
|
**/
|
|
2530
2528
|
SpCoreVoid: 'Null',
|
|
2531
2529
|
/**
|
|
2532
|
-
*
|
|
2530
|
+
* Lookup262: pallet_block_seal::pallet::Call<T>
|
|
2533
2531
|
**/
|
|
2534
2532
|
PalletBlockSealCall: {
|
|
2535
2533
|
_enum: {
|
|
@@ -2539,7 +2537,7 @@ export default {
|
|
|
2539
2537
|
},
|
|
2540
2538
|
},
|
|
2541
2539
|
/**
|
|
2542
|
-
*
|
|
2540
|
+
* Lookup263: argon_primitives::inherents::BlockSealInherent
|
|
2543
2541
|
**/
|
|
2544
2542
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2545
2543
|
_enum: {
|
|
@@ -2555,7 +2553,7 @@ export default {
|
|
|
2555
2553
|
},
|
|
2556
2554
|
},
|
|
2557
2555
|
/**
|
|
2558
|
-
*
|
|
2556
|
+
* Lookup264: argon_primitives::balance_change::MerkleProof
|
|
2559
2557
|
**/
|
|
2560
2558
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2561
2559
|
proof: 'Vec<H256>',
|
|
@@ -2563,7 +2561,7 @@ export default {
|
|
|
2563
2561
|
leafIndex: 'Compact<u32>',
|
|
2564
2562
|
},
|
|
2565
2563
|
/**
|
|
2566
|
-
*
|
|
2564
|
+
* Lookup266: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2567
2565
|
**/
|
|
2568
2566
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2569
2567
|
accountId: 'AccountId32',
|
|
@@ -2575,7 +2573,7 @@ export default {
|
|
|
2575
2573
|
tick: 'Compact<u64>',
|
|
2576
2574
|
},
|
|
2577
2575
|
/**
|
|
2578
|
-
*
|
|
2576
|
+
* Lookup267: pallet_block_rewards::pallet::Call<T>
|
|
2579
2577
|
**/
|
|
2580
2578
|
PalletBlockRewardsCall: {
|
|
2581
2579
|
_enum: {
|
|
@@ -2588,11 +2586,11 @@ export default {
|
|
|
2588
2586
|
},
|
|
2589
2587
|
},
|
|
2590
2588
|
/**
|
|
2591
|
-
*
|
|
2589
|
+
* Lookup268: pallet_mint::pallet::Call<T>
|
|
2592
2590
|
**/
|
|
2593
2591
|
PalletMintCall: 'Null',
|
|
2594
2592
|
/**
|
|
2595
|
-
*
|
|
2593
|
+
* Lookup269: pallet_balances::pallet::Call<T, I>
|
|
2596
2594
|
**/
|
|
2597
2595
|
PalletBalancesCall: {
|
|
2598
2596
|
_enum: {
|
|
@@ -2637,13 +2635,13 @@ export default {
|
|
|
2637
2635
|
},
|
|
2638
2636
|
},
|
|
2639
2637
|
/**
|
|
2640
|
-
*
|
|
2638
|
+
* Lookup270: pallet_balances::types::AdjustmentDirection
|
|
2641
2639
|
**/
|
|
2642
2640
|
PalletBalancesAdjustmentDirection: {
|
|
2643
2641
|
_enum: ['Increase', 'Decrease'],
|
|
2644
2642
|
},
|
|
2645
2643
|
/**
|
|
2646
|
-
*
|
|
2644
|
+
* Lookup272: pallet_tx_pause::pallet::Call<T>
|
|
2647
2645
|
**/
|
|
2648
2646
|
PalletTxPauseCall: {
|
|
2649
2647
|
_enum: {
|
|
@@ -2656,7 +2654,7 @@ export default {
|
|
|
2656
2654
|
},
|
|
2657
2655
|
},
|
|
2658
2656
|
/**
|
|
2659
|
-
*
|
|
2657
|
+
* Lookup273: pallet_utility::pallet::Call<T>
|
|
2660
2658
|
**/
|
|
2661
2659
|
PalletUtilityCall: {
|
|
2662
2660
|
_enum: {
|
|
@@ -2692,7 +2690,7 @@ export default {
|
|
|
2692
2690
|
},
|
|
2693
2691
|
},
|
|
2694
2692
|
/**
|
|
2695
|
-
*
|
|
2693
|
+
* Lookup275: pallet_sudo::pallet::Call<T>
|
|
2696
2694
|
**/
|
|
2697
2695
|
PalletSudoCall: {
|
|
2698
2696
|
_enum: {
|
|
@@ -2717,7 +2715,28 @@ export default {
|
|
|
2717
2715
|
},
|
|
2718
2716
|
},
|
|
2719
2717
|
/**
|
|
2720
|
-
*
|
|
2718
|
+
* Lookup276: pallet_bitcoin_fissions::pallet::Call<T>
|
|
2719
|
+
**/
|
|
2720
|
+
PalletBitcoinFissionsCall: {
|
|
2721
|
+
_enum: {
|
|
2722
|
+
create: {
|
|
2723
|
+
fissionId: 'Compact<u64>',
|
|
2724
|
+
liquidId: 'Compact<u64>',
|
|
2725
|
+
utxoId: 'Compact<u64>',
|
|
2726
|
+
satoshis: 'Compact<u64>',
|
|
2727
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
2728
|
+
},
|
|
2729
|
+
ratchet: {
|
|
2730
|
+
fissionId: 'Compact<u64>',
|
|
2731
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
2732
|
+
},
|
|
2733
|
+
close: {
|
|
2734
|
+
fissionId: 'Compact<u64>',
|
|
2735
|
+
},
|
|
2736
|
+
},
|
|
2737
|
+
},
|
|
2738
|
+
/**
|
|
2739
|
+
* Lookup277: pallet_treasury::pallet::Call<T>
|
|
2721
2740
|
**/
|
|
2722
2741
|
PalletTreasuryCall: {
|
|
2723
2742
|
_enum: {
|
|
@@ -2747,7 +2766,7 @@ export default {
|
|
|
2747
2766
|
},
|
|
2748
2767
|
},
|
|
2749
2768
|
/**
|
|
2750
|
-
*
|
|
2769
|
+
* Lookup279: argon_primitives::vault::TreasuryBonusApprovalProof
|
|
2751
2770
|
**/
|
|
2752
2771
|
ArgonPrimitivesVaultTreasuryBonusApprovalProof: {
|
|
2753
2772
|
vaultId: 'Compact<u32>',
|
|
@@ -2759,7 +2778,7 @@ export default {
|
|
|
2759
2778
|
signature: 'SpRuntimeMultiSignature',
|
|
2760
2779
|
},
|
|
2761
2780
|
/**
|
|
2762
|
-
*
|
|
2781
|
+
* Lookup280: pallet_operational_accounts::pallet::Call<T>
|
|
2763
2782
|
**/
|
|
2764
2783
|
PalletOperationalAccountsCall: {
|
|
2765
2784
|
_enum: {
|
|
@@ -2786,7 +2805,7 @@ export default {
|
|
|
2786
2805
|
},
|
|
2787
2806
|
},
|
|
2788
2807
|
/**
|
|
2789
|
-
*
|
|
2808
|
+
* Lookup281: pallet_operational_accounts::pallet::Registration<T>
|
|
2790
2809
|
**/
|
|
2791
2810
|
PalletOperationalAccountsRegistration: {
|
|
2792
2811
|
_enum: {
|
|
@@ -2794,7 +2813,7 @@ export default {
|
|
|
2794
2813
|
},
|
|
2795
2814
|
},
|
|
2796
2815
|
/**
|
|
2797
|
-
*
|
|
2816
|
+
* Lookup282: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2798
2817
|
**/
|
|
2799
2818
|
PalletOperationalAccountsRegistrationV1: {
|
|
2800
2819
|
operationalAccount: 'AccountId32',
|
|
@@ -2807,24 +2826,24 @@ export default {
|
|
|
2807
2826
|
accessProof: 'Option<PalletOperationalAccountsUpstreamAccessProof>',
|
|
2808
2827
|
},
|
|
2809
2828
|
/**
|
|
2810
|
-
*
|
|
2829
|
+
* Lookup283: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2811
2830
|
**/
|
|
2812
2831
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2813
2832
|
/**
|
|
2814
|
-
*
|
|
2833
|
+
* Lookup284: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2815
2834
|
**/
|
|
2816
2835
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2817
2836
|
signature: 'SpRuntimeMultiSignature',
|
|
2818
2837
|
},
|
|
2819
2838
|
/**
|
|
2820
|
-
*
|
|
2839
|
+
* Lookup286: pallet_operational_accounts::pallet::UpstreamAccessProof<sp_core::crypto::AccountId32>
|
|
2821
2840
|
**/
|
|
2822
2841
|
PalletOperationalAccountsUpstreamAccessProof: {
|
|
2823
2842
|
upstreamAccount: 'AccountId32',
|
|
2824
2843
|
signature: 'SpRuntimeMultiSignature',
|
|
2825
2844
|
},
|
|
2826
2845
|
/**
|
|
2827
|
-
*
|
|
2846
|
+
* Lookup289: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2828
2847
|
**/
|
|
2829
2848
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2830
2849
|
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
@@ -2835,7 +2854,7 @@ export default {
|
|
|
2835
2854
|
miningSeatCount: 'Option<u32>',
|
|
2836
2855
|
},
|
|
2837
2856
|
/**
|
|
2838
|
-
*
|
|
2857
|
+
* Lookup291: pallet_ethereum_verifier::pallet::Call<T>
|
|
2839
2858
|
**/
|
|
2840
2859
|
PalletEthereumVerifierCall: {
|
|
2841
2860
|
_enum: {
|
|
@@ -2857,7 +2876,7 @@ export default {
|
|
|
2857
2876
|
},
|
|
2858
2877
|
},
|
|
2859
2878
|
/**
|
|
2860
|
-
*
|
|
2879
|
+
* Lookup292: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2861
2880
|
**/
|
|
2862
2881
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2863
2882
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2867,7 +2886,7 @@ export default {
|
|
|
2867
2886
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2868
2887
|
},
|
|
2869
2888
|
/**
|
|
2870
|
-
*
|
|
2889
|
+
* Lookup293: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2871
2890
|
**/
|
|
2872
2891
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2873
2892
|
slot: 'u64',
|
|
@@ -2877,25 +2896,25 @@ export default {
|
|
|
2877
2896
|
bodyRoot: 'H256',
|
|
2878
2897
|
},
|
|
2879
2898
|
/**
|
|
2880
|
-
*
|
|
2899
|
+
* Lookup294: pallet_ethereum_verifier::types::SyncCommittee
|
|
2881
2900
|
**/
|
|
2882
2901
|
PalletEthereumVerifierSyncCommittee: {
|
|
2883
2902
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2884
2903
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2885
2904
|
},
|
|
2886
2905
|
/**
|
|
2887
|
-
*
|
|
2906
|
+
* Lookup296: snowbridge_beacon_primitives::types::PublicKey
|
|
2888
2907
|
**/
|
|
2889
2908
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2890
2909
|
/**
|
|
2891
|
-
*
|
|
2910
|
+
* Lookup300: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2892
2911
|
**/
|
|
2893
2912
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2894
2913
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2895
2914
|
executionBranch: 'Vec<H256>',
|
|
2896
2915
|
},
|
|
2897
2916
|
/**
|
|
2898
|
-
*
|
|
2917
|
+
* Lookup301: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2899
2918
|
**/
|
|
2900
2919
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2901
2920
|
_enum: {
|
|
@@ -2904,7 +2923,7 @@ export default {
|
|
|
2904
2923
|
},
|
|
2905
2924
|
},
|
|
2906
2925
|
/**
|
|
2907
|
-
*
|
|
2926
|
+
* Lookup302: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2908
2927
|
**/
|
|
2909
2928
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2910
2929
|
parentHash: 'H256',
|
|
@@ -2924,7 +2943,7 @@ export default {
|
|
|
2924
2943
|
withdrawalsRoot: 'H256',
|
|
2925
2944
|
},
|
|
2926
2945
|
/**
|
|
2927
|
-
*
|
|
2946
|
+
* Lookup303: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2928
2947
|
**/
|
|
2929
2948
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2930
2949
|
parentHash: 'H256',
|
|
@@ -2946,7 +2965,7 @@ export default {
|
|
|
2946
2965
|
excessBlobGas: 'u64',
|
|
2947
2966
|
},
|
|
2948
2967
|
/**
|
|
2949
|
-
*
|
|
2968
|
+
* Lookup304: pallet_ethereum_verifier::types::ForkVersions
|
|
2950
2969
|
**/
|
|
2951
2970
|
PalletEthereumVerifierForkVersions: {
|
|
2952
2971
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2958,14 +2977,14 @@ export default {
|
|
|
2958
2977
|
fulu: 'PalletEthereumVerifierFork',
|
|
2959
2978
|
},
|
|
2960
2979
|
/**
|
|
2961
|
-
*
|
|
2980
|
+
* Lookup305: pallet_ethereum_verifier::types::Fork
|
|
2962
2981
|
**/
|
|
2963
2982
|
PalletEthereumVerifierFork: {
|
|
2964
2983
|
version: '[u8;4]',
|
|
2965
2984
|
epoch: 'Compact<u64>',
|
|
2966
2985
|
},
|
|
2967
2986
|
/**
|
|
2968
|
-
*
|
|
2987
|
+
* Lookup306: pallet_ethereum_verifier::types::Update
|
|
2969
2988
|
**/
|
|
2970
2989
|
PalletEthereumVerifierUpdate: {
|
|
2971
2990
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2977,25 +2996,25 @@ export default {
|
|
|
2977
2996
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2978
2997
|
},
|
|
2979
2998
|
/**
|
|
2980
|
-
*
|
|
2999
|
+
* Lookup307: pallet_ethereum_verifier::types::SyncAggregate
|
|
2981
3000
|
**/
|
|
2982
3001
|
PalletEthereumVerifierSyncAggregate: {
|
|
2983
3002
|
syncCommitteeBits: 'Bytes',
|
|
2984
3003
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2985
3004
|
},
|
|
2986
3005
|
/**
|
|
2987
|
-
*
|
|
3006
|
+
* Lookup309: snowbridge_beacon_primitives::types::Signature
|
|
2988
3007
|
**/
|
|
2989
3008
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2990
3009
|
/**
|
|
2991
|
-
*
|
|
3010
|
+
* Lookup312: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2992
3011
|
**/
|
|
2993
3012
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2994
3013
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2995
3014
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2996
3015
|
},
|
|
2997
3016
|
/**
|
|
2998
|
-
*
|
|
3017
|
+
* Lookup313: pallet_crosschain_transfer::pallet::Call<T>
|
|
2999
3018
|
**/
|
|
3000
3019
|
PalletCrosschainTransferCall: {
|
|
3001
3020
|
_enum: {
|
|
@@ -3061,7 +3080,7 @@ export default {
|
|
|
3061
3080
|
},
|
|
3062
3081
|
},
|
|
3063
3082
|
/**
|
|
3064
|
-
*
|
|
3083
|
+
* Lookup314: pallet_crosschain_transfer::pallet::ChainConfig
|
|
3065
3084
|
**/
|
|
3066
3085
|
PalletCrosschainTransferChainConfig: {
|
|
3067
3086
|
_enum: {
|
|
@@ -3074,7 +3093,7 @@ export default {
|
|
|
3074
3093
|
},
|
|
3075
3094
|
},
|
|
3076
3095
|
/**
|
|
3077
|
-
*
|
|
3096
|
+
* Lookup316: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
3078
3097
|
**/
|
|
3079
3098
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
3080
3099
|
activationGasCost: 'Compact<u128>',
|
|
@@ -3083,27 +3102,27 @@ export default {
|
|
|
3083
3102
|
estimatedMicrogonsPerEth: 'u128',
|
|
3084
3103
|
},
|
|
3085
3104
|
/**
|
|
3086
|
-
*
|
|
3105
|
+
* Lookup319: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
3087
3106
|
**/
|
|
3088
3107
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
3089
3108
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
3090
3109
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
3091
3110
|
},
|
|
3092
3111
|
/**
|
|
3093
|
-
*
|
|
3112
|
+
* Lookup320: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
3094
3113
|
**/
|
|
3095
3114
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
3096
3115
|
anchorBlockHash: 'H256',
|
|
3097
3116
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
3098
3117
|
},
|
|
3099
3118
|
/**
|
|
3100
|
-
*
|
|
3119
|
+
* Lookup322: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3101
3120
|
**/
|
|
3102
3121
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3103
3122
|
rlp: 'Bytes',
|
|
3104
3123
|
},
|
|
3105
3124
|
/**
|
|
3106
|
-
*
|
|
3125
|
+
* Lookup326: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3107
3126
|
**/
|
|
3108
3127
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3109
3128
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3111,28 +3130,28 @@ export default {
|
|
|
3111
3130
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3112
3131
|
},
|
|
3113
3132
|
/**
|
|
3114
|
-
*
|
|
3133
|
+
* Lookup327: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3115
3134
|
**/
|
|
3116
3135
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3117
3136
|
nodes: 'Vec<Bytes>',
|
|
3118
3137
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3119
3138
|
},
|
|
3120
3139
|
/**
|
|
3121
|
-
*
|
|
3140
|
+
* Lookup331: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3122
3141
|
**/
|
|
3123
3142
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3124
3143
|
transactionIndex: 'Compact<u64>',
|
|
3125
3144
|
nodeIndexes: 'Vec<u16>',
|
|
3126
3145
|
},
|
|
3127
3146
|
/**
|
|
3128
|
-
*
|
|
3147
|
+
* Lookup336: argon_primitives::ethereum::EthereumReceiptLog
|
|
3129
3148
|
**/
|
|
3130
3149
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3131
3150
|
transactionIndex: 'Compact<u64>',
|
|
3132
3151
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3133
3152
|
},
|
|
3134
3153
|
/**
|
|
3135
|
-
*
|
|
3154
|
+
* Lookup337: argon_primitives::ethereum::EthereumLog
|
|
3136
3155
|
**/
|
|
3137
3156
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3138
3157
|
address: 'H160',
|
|
@@ -3140,7 +3159,7 @@ export default {
|
|
|
3140
3159
|
data: 'Bytes',
|
|
3141
3160
|
},
|
|
3142
3161
|
/**
|
|
3143
|
-
*
|
|
3162
|
+
* Lookup342: pallet_bootstrap::pallet::Call<T>
|
|
3144
3163
|
**/
|
|
3145
3164
|
PalletBootstrapCall: {
|
|
3146
3165
|
_enum: {
|
|
@@ -3156,13 +3175,13 @@ export default {
|
|
|
3156
3175
|
},
|
|
3157
3176
|
},
|
|
3158
3177
|
/**
|
|
3159
|
-
*
|
|
3178
|
+
* Lookup343: pallet_bootstrap::pallet::RecoveryProof
|
|
3160
3179
|
**/
|
|
3161
3180
|
PalletBootstrapRecoveryProof: {
|
|
3162
3181
|
signature: '[u8;64]',
|
|
3163
3182
|
},
|
|
3164
3183
|
/**
|
|
3165
|
-
*
|
|
3184
|
+
* Lookup345: pallet_multisig::pallet::Error<T>
|
|
3166
3185
|
**/
|
|
3167
3186
|
PalletMultisigError: {
|
|
3168
3187
|
_enum: [
|
|
@@ -3183,7 +3202,7 @@ export default {
|
|
|
3183
3202
|
],
|
|
3184
3203
|
},
|
|
3185
3204
|
/**
|
|
3186
|
-
*
|
|
3205
|
+
* Lookup348: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3187
3206
|
**/
|
|
3188
3207
|
PalletProxyProxyDefinition: {
|
|
3189
3208
|
delegate: 'AccountId32',
|
|
@@ -3191,7 +3210,7 @@ export default {
|
|
|
3191
3210
|
delay: 'u32',
|
|
3192
3211
|
},
|
|
3193
3212
|
/**
|
|
3194
|
-
*
|
|
3213
|
+
* Lookup352: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3195
3214
|
**/
|
|
3196
3215
|
PalletProxyAnnouncement: {
|
|
3197
3216
|
real: 'AccountId32',
|
|
@@ -3199,7 +3218,7 @@ export default {
|
|
|
3199
3218
|
height: 'u32',
|
|
3200
3219
|
},
|
|
3201
3220
|
/**
|
|
3202
|
-
*
|
|
3221
|
+
* Lookup354: pallet_proxy::pallet::Error<T>
|
|
3203
3222
|
**/
|
|
3204
3223
|
PalletProxyError: {
|
|
3205
3224
|
_enum: [
|
|
@@ -3214,18 +3233,18 @@ export default {
|
|
|
3214
3233
|
],
|
|
3215
3234
|
},
|
|
3216
3235
|
/**
|
|
3217
|
-
*
|
|
3236
|
+
* Lookup355: argon_primitives::tick::Ticker
|
|
3218
3237
|
**/
|
|
3219
3238
|
ArgonPrimitivesTickTicker: {
|
|
3220
3239
|
tickDurationMillis: 'Compact<u64>',
|
|
3221
3240
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3222
3241
|
},
|
|
3223
3242
|
/**
|
|
3224
|
-
*
|
|
3243
|
+
* Lookup357: pallet_ticks::pallet::Error<T>
|
|
3225
3244
|
**/
|
|
3226
3245
|
PalletTicksError: 'Null',
|
|
3227
3246
|
/**
|
|
3228
|
-
*
|
|
3247
|
+
* Lookup360: pallet_mining_slot::MinerNonceScoring<T>
|
|
3229
3248
|
**/
|
|
3230
3249
|
PalletMiningSlotMinerNonceScoring: {
|
|
3231
3250
|
nonce: 'U256',
|
|
@@ -3234,7 +3253,7 @@ export default {
|
|
|
3234
3253
|
frameStartBlocksWonSurplus: 'i16',
|
|
3235
3254
|
},
|
|
3236
3255
|
/**
|
|
3237
|
-
*
|
|
3256
|
+
* Lookup372: argon_primitives::block_seal::MiningBidStats
|
|
3238
3257
|
**/
|
|
3239
3258
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3240
3259
|
bidsCount: 'u32',
|
|
@@ -3243,7 +3262,7 @@ export default {
|
|
|
3243
3262
|
bidAmountSum: 'u128',
|
|
3244
3263
|
},
|
|
3245
3264
|
/**
|
|
3246
|
-
*
|
|
3265
|
+
* Lookup376: argon_primitives::block_seal::MiningSlotConfig
|
|
3247
3266
|
**/
|
|
3248
3267
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3249
3268
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3251,7 +3270,7 @@ export default {
|
|
|
3251
3270
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3252
3271
|
},
|
|
3253
3272
|
/**
|
|
3254
|
-
*
|
|
3273
|
+
* Lookup386: pallet_mining_slot::pallet::Error<T>
|
|
3255
3274
|
**/
|
|
3256
3275
|
PalletMiningSlotError: {
|
|
3257
3276
|
_enum: [
|
|
@@ -3269,17 +3288,7 @@ export default {
|
|
|
3269
3288
|
],
|
|
3270
3289
|
},
|
|
3271
3290
|
/**
|
|
3272
|
-
*
|
|
3273
|
-
**/
|
|
3274
|
-
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3275
|
-
utxoId: 'u64',
|
|
3276
|
-
scriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
|
|
3277
|
-
satoshis: 'Compact<u64>',
|
|
3278
|
-
submittedAtHeight: 'Compact<u64>',
|
|
3279
|
-
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3280
|
-
},
|
|
3281
|
-
/**
|
|
3282
|
-
* Lookup386: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3291
|
+
* Lookup387: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3283
3292
|
**/
|
|
3284
3293
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3285
3294
|
_enum: {
|
|
@@ -3289,13 +3298,21 @@ export default {
|
|
|
3289
3298
|
},
|
|
3290
3299
|
},
|
|
3291
3300
|
/**
|
|
3292
|
-
*
|
|
3301
|
+
* Lookup388: argon_primitives::bitcoin::UtxoAddress
|
|
3302
|
+
**/
|
|
3303
|
+
ArgonPrimitivesBitcoinUtxoAddress: {
|
|
3304
|
+
utxoId: 'u64',
|
|
3305
|
+
scriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
|
|
3306
|
+
submittedAtHeight: 'Compact<u64>',
|
|
3307
|
+
},
|
|
3308
|
+
/**
|
|
3309
|
+
* Lookup392: argon_primitives::bitcoin::BitcoinNetwork
|
|
3293
3310
|
**/
|
|
3294
3311
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3295
3312
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3296
3313
|
},
|
|
3297
3314
|
/**
|
|
3298
|
-
*
|
|
3315
|
+
* Lookup393: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3299
3316
|
**/
|
|
3300
3317
|
PalletBitcoinUtxosError: {
|
|
3301
3318
|
_enum: [
|
|
@@ -3311,13 +3328,11 @@ export default {
|
|
|
3311
3328
|
'MaxUtxosExceeded',
|
|
3312
3329
|
'InvalidBitcoinScript',
|
|
3313
3330
|
'DuplicateUtxoId',
|
|
3314
|
-
'
|
|
3315
|
-
'UtxoNotCandidate',
|
|
3316
|
-
'LockAlreadyFunded',
|
|
3331
|
+
'MaxUtxosPerLockExceeded',
|
|
3317
3332
|
],
|
|
3318
3333
|
},
|
|
3319
3334
|
/**
|
|
3320
|
-
*
|
|
3335
|
+
* Lookup394: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3321
3336
|
**/
|
|
3322
3337
|
ArgonPrimitivesVault: {
|
|
3323
3338
|
operatorAccountId: 'AccountId32',
|
|
@@ -3329,8 +3344,8 @@ export default {
|
|
|
3329
3344
|
reservedSecuritizationSpace: 'Compact<u128>',
|
|
3330
3345
|
securitizationPendingActivation: 'Compact<u128>',
|
|
3331
3346
|
lockedSatoshis: 'Compact<u64>',
|
|
3332
|
-
|
|
3333
|
-
|
|
3347
|
+
ratioAdjustedSatoshis: 'Compact<u64>',
|
|
3348
|
+
flexibleRatioAdjustedSatoshis: 'Compact<u64>',
|
|
3334
3349
|
securitizationReleaseSchedule: 'BTreeMap<u64, u128>',
|
|
3335
3350
|
securitizationRatio: 'Compact<u128>',
|
|
3336
3351
|
isClosed: 'bool',
|
|
@@ -3340,14 +3355,14 @@ export default {
|
|
|
3340
3355
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3341
3356
|
},
|
|
3342
3357
|
/**
|
|
3343
|
-
*
|
|
3358
|
+
* Lookup401: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3344
3359
|
**/
|
|
3345
3360
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3346
3361
|
committedMicronots: 'Compact<u128>',
|
|
3347
3362
|
encumberedMicronots: 'Compact<u128>',
|
|
3348
3363
|
},
|
|
3349
3364
|
/**
|
|
3350
|
-
*
|
|
3365
|
+
* Lookup403: argon_primitives::bitcoin::BitcoinXPub
|
|
3351
3366
|
**/
|
|
3352
3367
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3353
3368
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3358,21 +3373,21 @@ export default {
|
|
|
3358
3373
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3359
3374
|
},
|
|
3360
3375
|
/**
|
|
3361
|
-
*
|
|
3376
|
+
* Lookup405: argon_primitives::bitcoin::NetworkKind
|
|
3362
3377
|
**/
|
|
3363
3378
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3364
3379
|
_enum: ['Main', 'Test'],
|
|
3365
3380
|
},
|
|
3366
3381
|
/**
|
|
3367
|
-
*
|
|
3382
|
+
* Lookup414: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3368
3383
|
**/
|
|
3369
3384
|
PalletVaultsVaultFrameRevenue: {
|
|
3370
3385
|
frameId: 'Compact<u64>',
|
|
3371
3386
|
bitcoinLockFeeRevenue: 'Compact<u128>',
|
|
3372
3387
|
bitcoinLockFeeCouponValueUsed: 'Compact<u128>',
|
|
3373
3388
|
bitcoinLocksCreated: 'Compact<u32>',
|
|
3374
|
-
|
|
3375
|
-
|
|
3389
|
+
bitcoinLocksNewSecuritization: 'Compact<u128>',
|
|
3390
|
+
bitcoinLocksReleasedSecuritization: 'Compact<u128>',
|
|
3376
3391
|
bitcoinLocksAddedSatoshis: 'Compact<u64>',
|
|
3377
3392
|
bitcoinLocksReleasedSatoshis: 'Compact<u64>',
|
|
3378
3393
|
securitizationActivated: 'Compact<u128>',
|
|
@@ -3385,7 +3400,7 @@ export default {
|
|
|
3385
3400
|
uncollectedRevenue: 'Compact<u128>',
|
|
3386
3401
|
},
|
|
3387
3402
|
/**
|
|
3388
|
-
*
|
|
3403
|
+
* Lookup416: pallet_vaults::pallet::Error<T>
|
|
3389
3404
|
**/
|
|
3390
3405
|
PalletVaultsError: {
|
|
3391
3406
|
_enum: [
|
|
@@ -3424,18 +3439,20 @@ export default {
|
|
|
3424
3439
|
],
|
|
3425
3440
|
},
|
|
3426
3441
|
/**
|
|
3427
|
-
*
|
|
3442
|
+
* Lookup417: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3428
3443
|
**/
|
|
3429
3444
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3430
3445
|
vaultId: 'Compact<u32>',
|
|
3431
|
-
|
|
3432
|
-
|
|
3446
|
+
securitizedSatoshis: 'Compact<u64>',
|
|
3447
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
3448
|
+
securitizationCoverageMicrogons: 'Compact<u128>',
|
|
3449
|
+
securitizationTick: 'Compact<u64>',
|
|
3450
|
+
fundedSatoshis: 'Compact<u64>',
|
|
3451
|
+
fissionedSatoshis: 'Compact<u64>',
|
|
3433
3452
|
ownerAccount: 'AccountId32',
|
|
3434
3453
|
securitizationRatio: 'u128',
|
|
3435
3454
|
securityFees: 'Compact<u128>',
|
|
3436
3455
|
couponPaidFees: 'Compact<u128>',
|
|
3437
|
-
satoshis: 'Compact<u64>',
|
|
3438
|
-
utxoSatoshis: 'Option<u64>',
|
|
3439
3456
|
vaultPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
3440
3457
|
vaultClaimPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
3441
3458
|
vaultXpubSources: '([u8;4],u32,u32)',
|
|
@@ -3443,14 +3460,14 @@ export default {
|
|
|
3443
3460
|
vaultClaimHeight: 'Compact<u64>',
|
|
3444
3461
|
openClaimHeight: 'Compact<u64>',
|
|
3445
3462
|
createdAtHeight: 'Compact<u64>',
|
|
3463
|
+
fundingExpirationHeight: 'Compact<u64>',
|
|
3446
3464
|
utxoScriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
|
|
3447
|
-
isFunded: 'bool',
|
|
3448
3465
|
isFlexible: 'bool',
|
|
3449
3466
|
fundHoldExtensions: 'BTreeMap<u64, u128>',
|
|
3450
3467
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3451
3468
|
},
|
|
3452
3469
|
/**
|
|
3453
|
-
*
|
|
3470
|
+
* Lookup421: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3454
3471
|
**/
|
|
3455
3472
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3456
3473
|
utxoId: 'Compact<u64>',
|
|
@@ -3458,10 +3475,10 @@ export default {
|
|
|
3458
3475
|
bitcoinNetworkFee: 'Compact<u64>',
|
|
3459
3476
|
cosignDueFrame: 'Compact<u64>',
|
|
3460
3477
|
toScriptPubkey: 'Bytes',
|
|
3461
|
-
|
|
3478
|
+
securitizationAtRisk: 'Compact<u128>',
|
|
3462
3479
|
},
|
|
3463
3480
|
/**
|
|
3464
|
-
*
|
|
3481
|
+
* Lookup423: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3465
3482
|
**/
|
|
3466
3483
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3467
3484
|
utxoId: 'Compact<u64>',
|
|
@@ -3471,7 +3488,7 @@ export default {
|
|
|
3471
3488
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3472
3489
|
},
|
|
3473
3490
|
/**
|
|
3474
|
-
*
|
|
3491
|
+
* Lookup425: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3475
3492
|
**/
|
|
3476
3493
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3477
3494
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3479,7 +3496,7 @@ export default {
|
|
|
3479
3496
|
createdAtArgonBlockNumber: 'u32',
|
|
3480
3497
|
},
|
|
3481
3498
|
/**
|
|
3482
|
-
*
|
|
3499
|
+
* Lookup432: pallet_bitcoin_locks::pallet::Error<T>
|
|
3483
3500
|
**/
|
|
3484
3501
|
PalletBitcoinLocksError: {
|
|
3485
3502
|
_enum: {
|
|
@@ -3496,10 +3513,13 @@ export default {
|
|
|
3496
3513
|
BitcoinSignatureUnableToBeDecoded: 'Null',
|
|
3497
3514
|
BitcoinPubkeyUnableToBeDecoded: 'Null',
|
|
3498
3515
|
BitcoinInvalidCosignature: 'Null',
|
|
3499
|
-
InsufficientSatoshisLocked: 'Null',
|
|
3500
3516
|
NoBitcoinPricesAvailable: 'Null',
|
|
3501
3517
|
InvalidBitcoinScript: 'Null',
|
|
3502
3518
|
NoPermissions: 'Null',
|
|
3519
|
+
LockHasActiveFissions: 'Null',
|
|
3520
|
+
InsufficientSatoshisForFissions: 'Null',
|
|
3521
|
+
FissionStateMismatch: 'Null',
|
|
3522
|
+
InsufficientSecuritizationForFissions: 'Null',
|
|
3503
3523
|
HoldUnexpectedlyModified: 'Null',
|
|
3504
3524
|
UnrecoverableHold: 'Null',
|
|
3505
3525
|
VaultNotFound: 'Null',
|
|
@@ -3509,15 +3529,15 @@ export default {
|
|
|
3509
3529
|
UnableToGenerateVaultBitcoinPubkey: 'Null',
|
|
3510
3530
|
VaultNotYetActive: 'Null',
|
|
3511
3531
|
ExpirationAtBlockOverflow: 'Null',
|
|
3512
|
-
|
|
3532
|
+
NoResecuritizationChange: 'Null',
|
|
3513
3533
|
LockInProcessOfRelease: 'Null',
|
|
3514
3534
|
LockPendingFunding: 'Null',
|
|
3515
3535
|
OverflowError: 'Null',
|
|
3516
|
-
|
|
3536
|
+
IneligibleMicrogonsAtTargetPerBtcRequested: 'Null',
|
|
3537
|
+
MicrogonsAtTargetPerBtcTickOlderThanCurrent: 'Null',
|
|
3517
3538
|
FeeCouponExpired: 'Null',
|
|
3518
3539
|
InvalidFeeCouponSignature: 'Null',
|
|
3519
3540
|
FeeCouponAlreadyUsed: 'Null',
|
|
3520
|
-
FeeCouponOnlyForInitialization: 'Null',
|
|
3521
3541
|
OrphanedUtxoFundingConflict: 'Null',
|
|
3522
3542
|
OrphanedUtxoReleaseRequested: 'Null',
|
|
3523
3543
|
FundingUtxoCannotBeReleased: 'Null',
|
|
@@ -3525,7 +3545,7 @@ export default {
|
|
|
3525
3545
|
},
|
|
3526
3546
|
},
|
|
3527
3547
|
/**
|
|
3528
|
-
*
|
|
3548
|
+
* Lookup433: argon_primitives::vault::VaultError
|
|
3529
3549
|
**/
|
|
3530
3550
|
ArgonPrimitivesVaultVaultError: {
|
|
3531
3551
|
_enum: [
|
|
@@ -3545,7 +3565,7 @@ export default {
|
|
|
3545
3565
|
],
|
|
3546
3566
|
},
|
|
3547
3567
|
/**
|
|
3548
|
-
*
|
|
3568
|
+
* Lookup445: pallet_notaries::pallet::Error<T>
|
|
3549
3569
|
**/
|
|
3550
3570
|
PalletNotariesError: {
|
|
3551
3571
|
_enum: [
|
|
@@ -3561,7 +3581,7 @@ export default {
|
|
|
3561
3581
|
],
|
|
3562
3582
|
},
|
|
3563
3583
|
/**
|
|
3564
|
-
*
|
|
3584
|
+
* Lookup449: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3565
3585
|
**/
|
|
3566
3586
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3567
3587
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3571,7 +3591,7 @@ export default {
|
|
|
3571
3591
|
parentSecret: 'Option<H256>',
|
|
3572
3592
|
},
|
|
3573
3593
|
/**
|
|
3574
|
-
*
|
|
3594
|
+
* Lookup452: pallet_notebook::pallet::Error<T>
|
|
3575
3595
|
**/
|
|
3576
3596
|
PalletNotebookError: {
|
|
3577
3597
|
_enum: [
|
|
@@ -3593,7 +3613,7 @@ export default {
|
|
|
3593
3613
|
],
|
|
3594
3614
|
},
|
|
3595
3615
|
/**
|
|
3596
|
-
*
|
|
3616
|
+
* Lookup453: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3597
3617
|
**/
|
|
3598
3618
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3599
3619
|
accountId: 'AccountId32',
|
|
@@ -3602,11 +3622,11 @@ export default {
|
|
|
3602
3622
|
notaryId: 'u32',
|
|
3603
3623
|
},
|
|
3604
3624
|
/**
|
|
3605
|
-
*
|
|
3625
|
+
* Lookup455: frame_support::PalletId
|
|
3606
3626
|
**/
|
|
3607
3627
|
FrameSupportPalletId: '[u8;8]',
|
|
3608
3628
|
/**
|
|
3609
|
-
*
|
|
3629
|
+
* Lookup456: pallet_localchain_transfer::pallet::Error<T>
|
|
3610
3630
|
**/
|
|
3611
3631
|
PalletLocalchainTransferError: {
|
|
3612
3632
|
_enum: [
|
|
@@ -3621,7 +3641,7 @@ export default {
|
|
|
3621
3641
|
],
|
|
3622
3642
|
},
|
|
3623
3643
|
/**
|
|
3624
|
-
*
|
|
3644
|
+
* Lookup460: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3625
3645
|
**/
|
|
3626
3646
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3627
3647
|
notaryId: 'Compact<u32>',
|
|
@@ -3631,13 +3651,13 @@ export default {
|
|
|
3631
3651
|
blockVotingPower: 'Compact<u128>',
|
|
3632
3652
|
},
|
|
3633
3653
|
/**
|
|
3634
|
-
*
|
|
3654
|
+
* Lookup465: pallet_block_seal_spec::pallet::Error<T>
|
|
3635
3655
|
**/
|
|
3636
3656
|
PalletBlockSealSpecError: {
|
|
3637
3657
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3638
3658
|
},
|
|
3639
3659
|
/**
|
|
3640
|
-
*
|
|
3660
|
+
* Lookup467: pallet_domains::pallet::Error<T>
|
|
3641
3661
|
**/
|
|
3642
3662
|
PalletDomainsError: {
|
|
3643
3663
|
_enum: [
|
|
@@ -3649,7 +3669,7 @@ export default {
|
|
|
3649
3669
|
],
|
|
3650
3670
|
},
|
|
3651
3671
|
/**
|
|
3652
|
-
*
|
|
3672
|
+
* Lookup469: pallet_price_index::EthereumPriceFrameAccumulator
|
|
3653
3673
|
**/
|
|
3654
3674
|
PalletPriceIndexEthereumPriceFrameAccumulator: {
|
|
3655
3675
|
totalUsdPrice: 'u128',
|
|
@@ -3657,7 +3677,7 @@ export default {
|
|
|
3657
3677
|
sampleCount: 'Compact<u32>',
|
|
3658
3678
|
},
|
|
3659
3679
|
/**
|
|
3660
|
-
*
|
|
3680
|
+
* Lookup474: pallet_price_index::CpiMeasurementBucket
|
|
3661
3681
|
**/
|
|
3662
3682
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3663
3683
|
tickRange: '(u64,u64)',
|
|
@@ -3665,7 +3685,7 @@ export default {
|
|
|
3665
3685
|
measurementsCount: 'u32',
|
|
3666
3686
|
},
|
|
3667
3687
|
/**
|
|
3668
|
-
*
|
|
3688
|
+
* Lookup478: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3669
3689
|
**/
|
|
3670
3690
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3671
3691
|
frameId: 'Compact<u64>',
|
|
@@ -3673,7 +3693,7 @@ export default {
|
|
|
3673
3693
|
sampleCount: 'Compact<u32>',
|
|
3674
3694
|
},
|
|
3675
3695
|
/**
|
|
3676
|
-
*
|
|
3696
|
+
* Lookup479: pallet_price_index::pallet::Error<T>
|
|
3677
3697
|
**/
|
|
3678
3698
|
PalletPriceIndexError: {
|
|
3679
3699
|
_enum: [
|
|
@@ -3685,7 +3705,7 @@ export default {
|
|
|
3685
3705
|
],
|
|
3686
3706
|
},
|
|
3687
3707
|
/**
|
|
3688
|
-
*
|
|
3708
|
+
* Lookup480: pallet_grandpa::StoredState<N>
|
|
3689
3709
|
**/
|
|
3690
3710
|
PalletGrandpaStoredState: {
|
|
3691
3711
|
_enum: {
|
|
@@ -3702,7 +3722,7 @@ export default {
|
|
|
3702
3722
|
},
|
|
3703
3723
|
},
|
|
3704
3724
|
/**
|
|
3705
|
-
*
|
|
3725
|
+
* Lookup481: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3706
3726
|
**/
|
|
3707
3727
|
PalletGrandpaStoredPendingChange: {
|
|
3708
3728
|
scheduledAt: 'u32',
|
|
@@ -3711,7 +3731,7 @@ export default {
|
|
|
3711
3731
|
forced: 'Option<u32>',
|
|
3712
3732
|
},
|
|
3713
3733
|
/**
|
|
3714
|
-
*
|
|
3734
|
+
* Lookup483: pallet_grandpa::pallet::Error<T>
|
|
3715
3735
|
**/
|
|
3716
3736
|
PalletGrandpaError: {
|
|
3717
3737
|
_enum: [
|
|
@@ -3725,7 +3745,7 @@ export default {
|
|
|
3725
3745
|
],
|
|
3726
3746
|
},
|
|
3727
3747
|
/**
|
|
3728
|
-
*
|
|
3748
|
+
* Lookup484: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3729
3749
|
**/
|
|
3730
3750
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3731
3751
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3733,7 +3753,7 @@ export default {
|
|
|
3733
3753
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3734
3754
|
},
|
|
3735
3755
|
/**
|
|
3736
|
-
*
|
|
3756
|
+
* Lookup486: pallet_block_seal::pallet::Error<T>
|
|
3737
3757
|
**/
|
|
3738
3758
|
PalletBlockSealError: {
|
|
3739
3759
|
_enum: [
|
|
@@ -3761,20 +3781,21 @@ export default {
|
|
|
3761
3781
|
],
|
|
3762
3782
|
},
|
|
3763
3783
|
/**
|
|
3764
|
-
*
|
|
3784
|
+
* Lookup490: pallet_block_rewards::pallet::Error<T>
|
|
3765
3785
|
**/
|
|
3766
3786
|
PalletBlockRewardsError: 'Null',
|
|
3767
3787
|
/**
|
|
3768
|
-
*
|
|
3788
|
+
* Lookup491: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3769
3789
|
**/
|
|
3770
3790
|
PalletMintPendingMintUtxo: {
|
|
3791
|
+
fissionId: 'Compact<u64>',
|
|
3771
3792
|
utxoId: 'Compact<u64>',
|
|
3772
3793
|
accountId: 'AccountId32',
|
|
3773
3794
|
remainingAmount: 'Compact<u128>',
|
|
3774
3795
|
maxAmountPerFrame: 'Compact<u128>',
|
|
3775
3796
|
},
|
|
3776
3797
|
/**
|
|
3777
|
-
*
|
|
3798
|
+
* Lookup493: pallet_mint::pallet::MintQueueCursor
|
|
3778
3799
|
**/
|
|
3779
3800
|
PalletMintMintQueueCursor: {
|
|
3780
3801
|
payoutStartIndex: 'Compact<u64>',
|
|
@@ -3782,7 +3803,7 @@ export default {
|
|
|
3782
3803
|
payoutCursorFrameId: 'Option<u64>',
|
|
3783
3804
|
},
|
|
3784
3805
|
/**
|
|
3785
|
-
*
|
|
3806
|
+
* Lookup496: pallet_mint::pallet::MintAction<B>
|
|
3786
3807
|
**/
|
|
3787
3808
|
PalletMintMintAction: {
|
|
3788
3809
|
argonBurned: 'u128',
|
|
@@ -3790,13 +3811,13 @@ export default {
|
|
|
3790
3811
|
bitcoinMinted: 'u128',
|
|
3791
3812
|
},
|
|
3792
3813
|
/**
|
|
3793
|
-
*
|
|
3814
|
+
* Lookup498: pallet_mint::pallet::Error<T>
|
|
3794
3815
|
**/
|
|
3795
3816
|
PalletMintError: {
|
|
3796
3817
|
_enum: ['TooManyPendingMints'],
|
|
3797
3818
|
},
|
|
3798
3819
|
/**
|
|
3799
|
-
*
|
|
3820
|
+
* Lookup500: pallet_balances::types::BalanceLock<Balance>
|
|
3800
3821
|
**/
|
|
3801
3822
|
PalletBalancesBalanceLock: {
|
|
3802
3823
|
id: '[u8;8]',
|
|
@@ -3804,34 +3825,34 @@ export default {
|
|
|
3804
3825
|
reasons: 'PalletBalancesReasons',
|
|
3805
3826
|
},
|
|
3806
3827
|
/**
|
|
3807
|
-
*
|
|
3828
|
+
* Lookup501: pallet_balances::types::Reasons
|
|
3808
3829
|
**/
|
|
3809
3830
|
PalletBalancesReasons: {
|
|
3810
3831
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3811
3832
|
},
|
|
3812
3833
|
/**
|
|
3813
|
-
*
|
|
3834
|
+
* Lookup504: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3814
3835
|
**/
|
|
3815
3836
|
PalletBalancesReserveData: {
|
|
3816
3837
|
id: '[u8;8]',
|
|
3817
3838
|
amount: 'u128',
|
|
3818
3839
|
},
|
|
3819
3840
|
/**
|
|
3820
|
-
*
|
|
3841
|
+
* Lookup507: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3821
3842
|
**/
|
|
3822
3843
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3823
3844
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3824
3845
|
amount: 'u128',
|
|
3825
3846
|
},
|
|
3826
3847
|
/**
|
|
3827
|
-
*
|
|
3848
|
+
* Lookup510: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3828
3849
|
**/
|
|
3829
3850
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3830
3851
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3831
3852
|
amount: 'u128',
|
|
3832
3853
|
},
|
|
3833
3854
|
/**
|
|
3834
|
-
*
|
|
3855
|
+
* Lookup511: argon_runtime::RuntimeFreezeReason
|
|
3835
3856
|
**/
|
|
3836
3857
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3837
3858
|
_enum: {
|
|
@@ -3858,13 +3879,13 @@ export default {
|
|
|
3858
3879
|
},
|
|
3859
3880
|
},
|
|
3860
3881
|
/**
|
|
3861
|
-
*
|
|
3882
|
+
* Lookup512: pallet_block_rewards::pallet::FreezeReason
|
|
3862
3883
|
**/
|
|
3863
3884
|
PalletBlockRewardsFreezeReason: {
|
|
3864
3885
|
_enum: ['MaturationPeriod'],
|
|
3865
3886
|
},
|
|
3866
3887
|
/**
|
|
3867
|
-
*
|
|
3888
|
+
* Lookup514: pallet_balances::pallet::Error<T, I>
|
|
3868
3889
|
**/
|
|
3869
3890
|
PalletBalancesError: {
|
|
3870
3891
|
_enum: [
|
|
@@ -3883,39 +3904,80 @@ export default {
|
|
|
3883
3904
|
],
|
|
3884
3905
|
},
|
|
3885
3906
|
/**
|
|
3886
|
-
*
|
|
3907
|
+
* Lookup516: pallet_tx_pause::pallet::Error<T>
|
|
3887
3908
|
**/
|
|
3888
3909
|
PalletTxPauseError: {
|
|
3889
3910
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3890
3911
|
},
|
|
3891
3912
|
/**
|
|
3892
|
-
*
|
|
3913
|
+
* Lookup517: pallet_transaction_payment::Releases
|
|
3893
3914
|
**/
|
|
3894
3915
|
PalletTransactionPaymentReleases: {
|
|
3895
3916
|
_enum: ['V1Ancient', 'V2'],
|
|
3896
3917
|
},
|
|
3897
3918
|
/**
|
|
3898
|
-
*
|
|
3919
|
+
* Lookup518: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3899
3920
|
**/
|
|
3900
3921
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3901
3922
|
/**
|
|
3902
|
-
*
|
|
3923
|
+
* Lookup519: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3903
3924
|
**/
|
|
3904
3925
|
FrameSupportTokensFungibleImbalance: {
|
|
3905
3926
|
amount: 'u128',
|
|
3906
3927
|
},
|
|
3907
3928
|
/**
|
|
3908
|
-
*
|
|
3929
|
+
* Lookup520: pallet_utility::pallet::Error<T>
|
|
3909
3930
|
**/
|
|
3910
3931
|
PalletUtilityError: {
|
|
3911
3932
|
_enum: ['TooManyCalls'],
|
|
3912
3933
|
},
|
|
3913
3934
|
/**
|
|
3914
|
-
*
|
|
3935
|
+
* Lookup521: pallet_sudo::pallet::Error<T>
|
|
3915
3936
|
**/
|
|
3916
3937
|
PalletSudoError: {
|
|
3917
3938
|
_enum: ['RequireSudo'],
|
|
3918
3939
|
},
|
|
3940
|
+
/**
|
|
3941
|
+
* Lookup522: pallet_bitcoin_fissions::pallet::Fission<T>
|
|
3942
|
+
**/
|
|
3943
|
+
PalletBitcoinFissionsFission: {
|
|
3944
|
+
liquidId: 'Compact<u64>',
|
|
3945
|
+
utxoId: 'Compact<u64>',
|
|
3946
|
+
satoshis: 'Compact<u64>',
|
|
3947
|
+
microgonsAtTargetPerBtc: 'Compact<u128>',
|
|
3948
|
+
liquidityPromised: 'Compact<u128>',
|
|
3949
|
+
createdAtArgonBlock: 'Compact<u32>',
|
|
3950
|
+
ratchetNumber: 'Compact<u32>',
|
|
3951
|
+
lastRatchetTick: 'Compact<u64>',
|
|
3952
|
+
lastUpdatedArgonBlock: 'Compact<u32>',
|
|
3953
|
+
},
|
|
3954
|
+
/**
|
|
3955
|
+
* Lookup524: pallet_bitcoin_fissions::pallet::Error<T>
|
|
3956
|
+
**/
|
|
3957
|
+
PalletBitcoinFissionsError: {
|
|
3958
|
+
_enum: [
|
|
3959
|
+
'FissionIdBelowMinimum',
|
|
3960
|
+
'FissionIdOverflow',
|
|
3961
|
+
'FissionAlreadyExists',
|
|
3962
|
+
'FissionNotFound',
|
|
3963
|
+
'NoRatchetingAvailable',
|
|
3964
|
+
'RatchetNumberOverflow',
|
|
3965
|
+
'FissionHasNoSatoshis',
|
|
3966
|
+
'TooManyFissionsForLock',
|
|
3967
|
+
'LockNotFound',
|
|
3968
|
+
'NoPermissions',
|
|
3969
|
+
'LockNotFunded',
|
|
3970
|
+
'LockReleasePending',
|
|
3971
|
+
'InsufficientFundedSatoshis',
|
|
3972
|
+
'InsufficientSecuritization',
|
|
3973
|
+
'IneligibleMicrogonsAtTargetPerBtc',
|
|
3974
|
+
'MicrogonsAtTargetPerBtcTickOlderThanCurrent',
|
|
3975
|
+
'InsufficientFissionedSatoshis',
|
|
3976
|
+
'NoBitcoinPricesAvailable',
|
|
3977
|
+
'InsufficientFunds',
|
|
3978
|
+
'Overflow',
|
|
3979
|
+
],
|
|
3980
|
+
},
|
|
3919
3981
|
/**
|
|
3920
3982
|
* Lookup525: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3921
3983
|
**/
|