@argonprotocol/mainchain 1.4.8 → 1.4.9-dev.0147366f
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 +642 -423
- package/browser/index.js +125 -32
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +148 -56
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +642 -423
- package/lib/index.d.ts +642 -423
- package/lib/index.js +124 -32
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +56 -25
- package/src/interfaces/augment-api-errors.ts +43 -11
- package/src/interfaces/augment-api-events.ts +101 -32
- package/src/interfaces/augment-api-query.ts +87 -49
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +24 -12
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +367 -286
- package/src/interfaces/registry.ts +14 -3
- package/src/interfaces/types-lookup.ts +389 -297
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
|
/**
|
|
@@ -1328,6 +1325,13 @@ export default {
|
|
|
1328
1325
|
amount: 'u128',
|
|
1329
1326
|
dispatchError: 'SpRuntimeDispatchError',
|
|
1330
1327
|
},
|
|
1328
|
+
CouldNotDistributeEarningsToArgonotBondLot: {
|
|
1329
|
+
frameId: 'u64',
|
|
1330
|
+
bondLotId: 'u64',
|
|
1331
|
+
accountId: 'AccountId32',
|
|
1332
|
+
amount: 'u128',
|
|
1333
|
+
dispatchError: 'SpRuntimeDispatchError',
|
|
1334
|
+
},
|
|
1331
1335
|
CouldNotTransferToTreasuryReserves: {
|
|
1332
1336
|
frameId: 'u64',
|
|
1333
1337
|
amount: 'u128',
|
|
@@ -1336,6 +1340,9 @@ export default {
|
|
|
1336
1340
|
FrameEarningsDistributed: {
|
|
1337
1341
|
frameId: 'u64',
|
|
1338
1342
|
bidPoolDistributed: 'u128',
|
|
1343
|
+
argonotBondPoolDistributed: 'u128',
|
|
1344
|
+
vaultBidPoolDistributed: 'u128',
|
|
1345
|
+
treasuryRefunds: 'u128',
|
|
1339
1346
|
treasuryReserves: 'u128',
|
|
1340
1347
|
participatingVaults: 'u32',
|
|
1341
1348
|
},
|
|
@@ -1346,20 +1353,20 @@ export default {
|
|
|
1346
1353
|
},
|
|
1347
1354
|
CouldNotReleaseBondLot: {
|
|
1348
1355
|
frameId: 'u64',
|
|
1349
|
-
|
|
1356
|
+
programId: 'PalletTreasuryBondProgramId',
|
|
1350
1357
|
bondLotId: 'u64',
|
|
1351
1358
|
amount: 'u128',
|
|
1352
1359
|
accountId: 'AccountId32',
|
|
1353
1360
|
dispatchError: 'SpRuntimeDispatchError',
|
|
1354
1361
|
},
|
|
1355
1362
|
BondLotPurchased: {
|
|
1356
|
-
|
|
1363
|
+
programId: 'PalletTreasuryBondProgramId',
|
|
1357
1364
|
bondLotId: 'u64',
|
|
1358
1365
|
accountId: 'AccountId32',
|
|
1359
1366
|
bonds: 'u32',
|
|
1360
1367
|
},
|
|
1361
1368
|
BondLotReleaseScheduled: {
|
|
1362
|
-
|
|
1369
|
+
programId: 'PalletTreasuryBondProgramId',
|
|
1363
1370
|
bondLotId: 'u64',
|
|
1364
1371
|
accountId: 'AccountId32',
|
|
1365
1372
|
bonds: 'u32',
|
|
@@ -1368,7 +1375,7 @@ export default {
|
|
|
1368
1375
|
},
|
|
1369
1376
|
BondLotReleased: {
|
|
1370
1377
|
frameId: 'u64',
|
|
1371
|
-
|
|
1378
|
+
programId: 'PalletTreasuryBondProgramId',
|
|
1372
1379
|
bondLotId: 'u64',
|
|
1373
1380
|
accountId: 'AccountId32',
|
|
1374
1381
|
bonds: 'u32',
|
|
@@ -1381,13 +1388,24 @@ export default {
|
|
|
1381
1388
|
},
|
|
1382
1389
|
},
|
|
1383
1390
|
/**
|
|
1384
|
-
* Lookup120: pallet_treasury::pallet::
|
|
1391
|
+
* Lookup120: pallet_treasury::pallet::BondProgramId
|
|
1392
|
+
**/
|
|
1393
|
+
PalletTreasuryBondProgramId: {
|
|
1394
|
+
_enum: {
|
|
1395
|
+
Vault: {
|
|
1396
|
+
vaultId: 'Compact<u32>',
|
|
1397
|
+
},
|
|
1398
|
+
Argonot: 'Null',
|
|
1399
|
+
},
|
|
1400
|
+
},
|
|
1401
|
+
/**
|
|
1402
|
+
* Lookup121: pallet_treasury::pallet::BondReleaseReason
|
|
1385
1403
|
**/
|
|
1386
1404
|
PalletTreasuryBondReleaseReason: {
|
|
1387
1405
|
_enum: ['UserLiquidation', 'Bumped', 'VaultClosed'],
|
|
1388
1406
|
},
|
|
1389
1407
|
/**
|
|
1390
|
-
*
|
|
1408
|
+
* Lookup122: pallet_fee_control::pallet::Event<T>
|
|
1391
1409
|
**/
|
|
1392
1410
|
PalletFeeControlEvent: {
|
|
1393
1411
|
_enum: {
|
|
@@ -1402,7 +1420,7 @@ export default {
|
|
|
1402
1420
|
},
|
|
1403
1421
|
},
|
|
1404
1422
|
/**
|
|
1405
|
-
*
|
|
1423
|
+
* Lookup123: argon_runtime::OriginCaller
|
|
1406
1424
|
**/
|
|
1407
1425
|
ArgonRuntimeOriginCaller: {
|
|
1408
1426
|
_enum: {
|
|
@@ -1410,7 +1428,7 @@ export default {
|
|
|
1410
1428
|
},
|
|
1411
1429
|
},
|
|
1412
1430
|
/**
|
|
1413
|
-
*
|
|
1431
|
+
* Lookup124: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1414
1432
|
**/
|
|
1415
1433
|
FrameSupportDispatchRawOrigin: {
|
|
1416
1434
|
_enum: {
|
|
@@ -1421,18 +1439,20 @@ export default {
|
|
|
1421
1439
|
},
|
|
1422
1440
|
},
|
|
1423
1441
|
/**
|
|
1424
|
-
*
|
|
1442
|
+
* Lookup125: pallet_operational_accounts::pallet::Event<T>
|
|
1425
1443
|
**/
|
|
1426
1444
|
PalletOperationalAccountsEvent: {
|
|
1427
1445
|
_enum: {
|
|
1428
1446
|
OperationalAccountRegistered: {
|
|
1429
1447
|
operationalAccount: 'AccountId32',
|
|
1430
1448
|
vaultAccount: 'AccountId32',
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
sponsor: 'Option<AccountId32>',
|
|
1449
|
+
miningAccount: 'AccountId32',
|
|
1450
|
+
upstreamAccount: 'Option<AccountId32>',
|
|
1434
1451
|
},
|
|
1435
|
-
|
|
1452
|
+
AccountMeetsMinimums: {
|
|
1453
|
+
account: 'AccountId32',
|
|
1454
|
+
},
|
|
1455
|
+
AccountOperationallyCertified: {
|
|
1436
1456
|
account: 'AccountId32',
|
|
1437
1457
|
},
|
|
1438
1458
|
OperationalRewardEarned: {
|
|
@@ -1447,32 +1467,34 @@ export default {
|
|
|
1447
1467
|
remainingPending: 'u128',
|
|
1448
1468
|
},
|
|
1449
1469
|
RewardsConfigUpdated: {
|
|
1450
|
-
|
|
1451
|
-
|
|
1470
|
+
operationalCertificationReward: 'u128',
|
|
1471
|
+
operationalCertificationBonusReward: 'u128',
|
|
1452
1472
|
},
|
|
1453
1473
|
OperationalProgressForced: {
|
|
1454
1474
|
account: 'AccountId32',
|
|
1455
1475
|
updateOperationalProgress: 'bool',
|
|
1456
|
-
|
|
1476
|
+
meetsMinimums: 'bool',
|
|
1477
|
+
uniswapArgonTransfersInAmount: 'u128',
|
|
1478
|
+
accountBitcoinAmount: 'u128',
|
|
1479
|
+
accountVaultBondAmount: 'u128',
|
|
1457
1480
|
vaultCreated: 'bool',
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
observedMiningSeatTotal: 'u32',
|
|
1481
|
+
operatorVaultBitcoinAmount: 'u128',
|
|
1482
|
+
miningSeatCount: 'u32',
|
|
1461
1483
|
},
|
|
1462
1484
|
EncryptedServerUpdated: {
|
|
1463
|
-
|
|
1464
|
-
|
|
1485
|
+
upstreamAccount: 'AccountId32',
|
|
1486
|
+
downstreamAccount: 'AccountId32',
|
|
1465
1487
|
},
|
|
1466
1488
|
},
|
|
1467
1489
|
},
|
|
1468
1490
|
/**
|
|
1469
|
-
*
|
|
1491
|
+
* Lookup126: argon_primitives::providers::OperationalRewardKind
|
|
1470
1492
|
**/
|
|
1471
1493
|
ArgonPrimitivesProvidersOperationalRewardKind: {
|
|
1472
|
-
_enum: ['
|
|
1494
|
+
_enum: ['Certification', 'OperationalCertificationBonus'],
|
|
1473
1495
|
},
|
|
1474
1496
|
/**
|
|
1475
|
-
*
|
|
1497
|
+
* Lookup127: pallet_ethereum_verifier::pallet::Event<T>
|
|
1476
1498
|
**/
|
|
1477
1499
|
PalletEthereumVerifierEvent: {
|
|
1478
1500
|
_enum: {
|
|
@@ -1499,13 +1521,13 @@ export default {
|
|
|
1499
1521
|
},
|
|
1500
1522
|
},
|
|
1501
1523
|
/**
|
|
1502
|
-
*
|
|
1524
|
+
* Lookup128: pallet_ethereum_verifier::types::BasicOperatingMode
|
|
1503
1525
|
**/
|
|
1504
1526
|
PalletEthereumVerifierBasicOperatingMode: {
|
|
1505
1527
|
_enum: ['Normal', 'Halted'],
|
|
1506
1528
|
},
|
|
1507
1529
|
/**
|
|
1508
|
-
*
|
|
1530
|
+
* Lookup129: pallet_crosschain_transfer::pallet::Event<T>
|
|
1509
1531
|
**/
|
|
1510
1532
|
PalletCrosschainTransferEvent: {
|
|
1511
1533
|
_enum: {
|
|
@@ -1612,13 +1634,13 @@ export default {
|
|
|
1612
1634
|
},
|
|
1613
1635
|
},
|
|
1614
1636
|
/**
|
|
1615
|
-
*
|
|
1637
|
+
* Lookup130: pallet_crosschain_transfer::pallet::SourceChain
|
|
1616
1638
|
**/
|
|
1617
1639
|
PalletCrosschainTransferSourceChain: {
|
|
1618
1640
|
_enum: ['Ethereum'],
|
|
1619
1641
|
},
|
|
1620
1642
|
/**
|
|
1621
|
-
*
|
|
1643
|
+
* Lookup131: pallet_crosschain_transfer::pallet::TransferToArgonActivity<T>
|
|
1622
1644
|
**/
|
|
1623
1645
|
PalletCrosschainTransferTransferToArgonActivity: {
|
|
1624
1646
|
gatewayActivityNonce: 'Compact<u64>',
|
|
@@ -1628,13 +1650,13 @@ export default {
|
|
|
1628
1650
|
amount: 'Compact<u128>',
|
|
1629
1651
|
},
|
|
1630
1652
|
/**
|
|
1631
|
-
*
|
|
1653
|
+
* Lookup134: pallet_crosschain_transfer::pallet::AssetKind
|
|
1632
1654
|
**/
|
|
1633
1655
|
PalletCrosschainTransferAssetKind: {
|
|
1634
1656
|
_enum: ['Argon', 'Argonot'],
|
|
1635
1657
|
},
|
|
1636
1658
|
/**
|
|
1637
|
-
*
|
|
1659
|
+
* Lookup135: pallet_crosschain_transfer::pallet::CouncilApprovalTargetId
|
|
1638
1660
|
**/
|
|
1639
1661
|
PalletCrosschainTransferCouncilApprovalTargetId: {
|
|
1640
1662
|
_enum: {
|
|
@@ -1644,7 +1666,7 @@ export default {
|
|
|
1644
1666
|
},
|
|
1645
1667
|
},
|
|
1646
1668
|
/**
|
|
1647
|
-
*
|
|
1669
|
+
* Lookup136: pallet_crosschain_transfer::pallet::GatewaySyncPause
|
|
1648
1670
|
**/
|
|
1649
1671
|
PalletCrosschainTransferGatewaySyncPause: {
|
|
1650
1672
|
lastGoodGatewayActivityNonce: 'Compact<u64>',
|
|
@@ -1652,7 +1674,7 @@ export default {
|
|
|
1652
1674
|
reason: 'PalletCrosschainTransferGatewaySyncPauseReason',
|
|
1653
1675
|
},
|
|
1654
1676
|
/**
|
|
1655
|
-
*
|
|
1677
|
+
* Lookup137: pallet_crosschain_transfer::pallet::GatewaySyncPauseReason
|
|
1656
1678
|
**/
|
|
1657
1679
|
PalletCrosschainTransferGatewaySyncPauseReason: {
|
|
1658
1680
|
_enum: [
|
|
@@ -1669,7 +1691,7 @@ export default {
|
|
|
1669
1691
|
],
|
|
1670
1692
|
},
|
|
1671
1693
|
/**
|
|
1672
|
-
*
|
|
1694
|
+
* Lookup138: pallet_crosschain_transfer::pallet::GatewayState<T>
|
|
1673
1695
|
**/
|
|
1674
1696
|
PalletCrosschainTransferGatewayState: {
|
|
1675
1697
|
gatewayActivityNonce: 'Compact<u64>',
|
|
@@ -1678,7 +1700,7 @@ export default {
|
|
|
1678
1700
|
argonotCirculation: 'u128',
|
|
1679
1701
|
},
|
|
1680
1702
|
/**
|
|
1681
|
-
*
|
|
1703
|
+
* Lookup139: frame_system::Phase
|
|
1682
1704
|
**/
|
|
1683
1705
|
FrameSystemPhase: {
|
|
1684
1706
|
_enum: {
|
|
@@ -1688,21 +1710,21 @@ export default {
|
|
|
1688
1710
|
},
|
|
1689
1711
|
},
|
|
1690
1712
|
/**
|
|
1691
|
-
*
|
|
1713
|
+
* Lookup143: frame_system::LastRuntimeUpgradeInfo
|
|
1692
1714
|
**/
|
|
1693
1715
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1694
1716
|
specVersion: 'Compact<u32>',
|
|
1695
1717
|
specName: 'Text',
|
|
1696
1718
|
},
|
|
1697
1719
|
/**
|
|
1698
|
-
*
|
|
1720
|
+
* Lookup146: frame_system::CodeUpgradeAuthorization<T>
|
|
1699
1721
|
**/
|
|
1700
1722
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1701
1723
|
codeHash: 'H256',
|
|
1702
1724
|
checkVersion: 'bool',
|
|
1703
1725
|
},
|
|
1704
1726
|
/**
|
|
1705
|
-
*
|
|
1727
|
+
* Lookup147: frame_system::pallet::Call<T>
|
|
1706
1728
|
**/
|
|
1707
1729
|
FrameSystemCall: {
|
|
1708
1730
|
_enum: {
|
|
@@ -1747,7 +1769,7 @@ export default {
|
|
|
1747
1769
|
},
|
|
1748
1770
|
},
|
|
1749
1771
|
/**
|
|
1750
|
-
*
|
|
1772
|
+
* Lookup151: frame_system::limits::BlockWeights
|
|
1751
1773
|
**/
|
|
1752
1774
|
FrameSystemLimitsBlockWeights: {
|
|
1753
1775
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
@@ -1755,7 +1777,7 @@ export default {
|
|
|
1755
1777
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass',
|
|
1756
1778
|
},
|
|
1757
1779
|
/**
|
|
1758
|
-
*
|
|
1780
|
+
* Lookup152: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1759
1781
|
**/
|
|
1760
1782
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1761
1783
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
@@ -1763,7 +1785,7 @@ export default {
|
|
|
1763
1785
|
mandatory: 'FrameSystemLimitsWeightsPerClass',
|
|
1764
1786
|
},
|
|
1765
1787
|
/**
|
|
1766
|
-
*
|
|
1788
|
+
* Lookup153: frame_system::limits::WeightsPerClass
|
|
1767
1789
|
**/
|
|
1768
1790
|
FrameSystemLimitsWeightsPerClass: {
|
|
1769
1791
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -1772,14 +1794,14 @@ export default {
|
|
|
1772
1794
|
reserved: 'Option<SpWeightsWeightV2Weight>',
|
|
1773
1795
|
},
|
|
1774
1796
|
/**
|
|
1775
|
-
*
|
|
1797
|
+
* Lookup155: frame_system::limits::BlockLength
|
|
1776
1798
|
**/
|
|
1777
1799
|
FrameSystemLimitsBlockLength: {
|
|
1778
1800
|
max: 'FrameSupportDispatchPerDispatchClassU32',
|
|
1779
1801
|
maxHeaderSize: 'Option<u32>',
|
|
1780
1802
|
},
|
|
1781
1803
|
/**
|
|
1782
|
-
*
|
|
1804
|
+
* Lookup156: frame_support::dispatch::PerDispatchClass<T>
|
|
1783
1805
|
**/
|
|
1784
1806
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1785
1807
|
normal: 'u32',
|
|
@@ -1787,14 +1809,14 @@ export default {
|
|
|
1787
1809
|
mandatory: 'u32',
|
|
1788
1810
|
},
|
|
1789
1811
|
/**
|
|
1790
|
-
*
|
|
1812
|
+
* Lookup158: sp_weights::RuntimeDbWeight
|
|
1791
1813
|
**/
|
|
1792
1814
|
SpWeightsRuntimeDbWeight: {
|
|
1793
1815
|
read: 'u64',
|
|
1794
1816
|
write: 'u64',
|
|
1795
1817
|
},
|
|
1796
1818
|
/**
|
|
1797
|
-
*
|
|
1819
|
+
* Lookup159: sp_version::RuntimeVersion
|
|
1798
1820
|
**/
|
|
1799
1821
|
SpVersionRuntimeVersion: {
|
|
1800
1822
|
specName: 'Text',
|
|
@@ -1807,7 +1829,7 @@ export default {
|
|
|
1807
1829
|
systemVersion: 'u8',
|
|
1808
1830
|
},
|
|
1809
1831
|
/**
|
|
1810
|
-
*
|
|
1832
|
+
* Lookup164: frame_system::pallet::Error<T>
|
|
1811
1833
|
**/
|
|
1812
1834
|
FrameSystemError: {
|
|
1813
1835
|
_enum: [
|
|
@@ -1823,7 +1845,7 @@ export default {
|
|
|
1823
1845
|
],
|
|
1824
1846
|
},
|
|
1825
1847
|
/**
|
|
1826
|
-
*
|
|
1848
|
+
* Lookup165: argon_primitives::digests::Digestset<argon_notary_audit::error::VerifyError, sp_core::crypto::AccountId32>
|
|
1827
1849
|
**/
|
|
1828
1850
|
ArgonPrimitivesDigestsDigestset: {
|
|
1829
1851
|
author: 'AccountId32',
|
|
@@ -1835,20 +1857,20 @@ export default {
|
|
|
1835
1857
|
notebooks: 'ArgonPrimitivesDigestsNotebookDigest',
|
|
1836
1858
|
},
|
|
1837
1859
|
/**
|
|
1838
|
-
*
|
|
1860
|
+
* Lookup166: argon_primitives::digests::BlockVoteDigest
|
|
1839
1861
|
**/
|
|
1840
1862
|
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
1841
1863
|
votingPower: 'Compact<u128>',
|
|
1842
1864
|
votesCount: 'Compact<u32>',
|
|
1843
1865
|
},
|
|
1844
1866
|
/**
|
|
1845
|
-
*
|
|
1867
|
+
* Lookup168: argon_primitives::digests::ParentVotingKeyDigest
|
|
1846
1868
|
**/
|
|
1847
1869
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
1848
1870
|
parentVotingKey: 'Option<H256>',
|
|
1849
1871
|
},
|
|
1850
1872
|
/**
|
|
1851
|
-
*
|
|
1873
|
+
* Lookup171: argon_primitives::fork_power::ForkPower
|
|
1852
1874
|
**/
|
|
1853
1875
|
ArgonPrimitivesForkPower: {
|
|
1854
1876
|
isLatestVote: 'bool',
|
|
@@ -1860,7 +1882,7 @@ export default {
|
|
|
1860
1882
|
minerNonceScore: 'Option<U256>',
|
|
1861
1883
|
},
|
|
1862
1884
|
/**
|
|
1863
|
-
*
|
|
1885
|
+
* Lookup176: argon_primitives::digests::FrameInfo
|
|
1864
1886
|
**/
|
|
1865
1887
|
ArgonPrimitivesDigestsFrameInfo: {
|
|
1866
1888
|
frameId: 'Compact<u64>',
|
|
@@ -1868,13 +1890,13 @@ export default {
|
|
|
1868
1890
|
isNewFrame: 'bool',
|
|
1869
1891
|
},
|
|
1870
1892
|
/**
|
|
1871
|
-
*
|
|
1893
|
+
* Lookup178: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
1872
1894
|
**/
|
|
1873
1895
|
ArgonPrimitivesDigestsNotebookDigest: {
|
|
1874
1896
|
notebooks: 'Vec<ArgonPrimitivesNotebookNotebookAuditResult>',
|
|
1875
1897
|
},
|
|
1876
1898
|
/**
|
|
1877
|
-
*
|
|
1899
|
+
* Lookup180: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
|
|
1878
1900
|
**/
|
|
1879
1901
|
ArgonPrimitivesNotebookNotebookAuditResult: {
|
|
1880
1902
|
notaryId: 'Compact<u32>',
|
|
@@ -1883,7 +1905,7 @@ export default {
|
|
|
1883
1905
|
auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>',
|
|
1884
1906
|
},
|
|
1885
1907
|
/**
|
|
1886
|
-
*
|
|
1908
|
+
* Lookup183: pallet_digests::pallet::Error<T>
|
|
1887
1909
|
**/
|
|
1888
1910
|
PalletDigestsError: {
|
|
1889
1911
|
_enum: [
|
|
@@ -1903,7 +1925,7 @@ export default {
|
|
|
1903
1925
|
],
|
|
1904
1926
|
},
|
|
1905
1927
|
/**
|
|
1906
|
-
*
|
|
1928
|
+
* Lookup184: pallet_timestamp::pallet::Call<T>
|
|
1907
1929
|
**/
|
|
1908
1930
|
PalletTimestampCall: {
|
|
1909
1931
|
_enum: {
|
|
@@ -1913,7 +1935,7 @@ export default {
|
|
|
1913
1935
|
},
|
|
1914
1936
|
},
|
|
1915
1937
|
/**
|
|
1916
|
-
*
|
|
1938
|
+
* Lookup186: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
1917
1939
|
**/
|
|
1918
1940
|
PalletMultisigMultisig: {
|
|
1919
1941
|
when: 'PalletMultisigTimepoint',
|
|
@@ -1922,7 +1944,7 @@ export default {
|
|
|
1922
1944
|
approvals: 'Vec<AccountId32>',
|
|
1923
1945
|
},
|
|
1924
1946
|
/**
|
|
1925
|
-
*
|
|
1947
|
+
* Lookup189: pallet_multisig::pallet::Call<T>
|
|
1926
1948
|
**/
|
|
1927
1949
|
PalletMultisigCall: {
|
|
1928
1950
|
_enum: {
|
|
@@ -1958,7 +1980,7 @@ export default {
|
|
|
1958
1980
|
},
|
|
1959
1981
|
},
|
|
1960
1982
|
/**
|
|
1961
|
-
*
|
|
1983
|
+
* Lookup191: pallet_proxy::pallet::Call<T>
|
|
1962
1984
|
**/
|
|
1963
1985
|
PalletProxyCall: {
|
|
1964
1986
|
_enum: {
|
|
@@ -2012,11 +2034,11 @@ export default {
|
|
|
2012
2034
|
},
|
|
2013
2035
|
},
|
|
2014
2036
|
/**
|
|
2015
|
-
*
|
|
2037
|
+
* Lookup195: pallet_ticks::pallet::Call<T>
|
|
2016
2038
|
**/
|
|
2017
2039
|
PalletTicksCall: 'Null',
|
|
2018
2040
|
/**
|
|
2019
|
-
*
|
|
2041
|
+
* Lookup196: pallet_mining_slot::pallet::Call<T>
|
|
2020
2042
|
**/
|
|
2021
2043
|
PalletMiningSlotCall: {
|
|
2022
2044
|
_enum: {
|
|
@@ -2035,7 +2057,7 @@ export default {
|
|
|
2035
2057
|
},
|
|
2036
2058
|
},
|
|
2037
2059
|
/**
|
|
2038
|
-
*
|
|
2060
|
+
* Lookup197: pallet_bitcoin_utxos::pallet::Call<T>
|
|
2039
2061
|
**/
|
|
2040
2062
|
PalletBitcoinUtxosCall: {
|
|
2041
2063
|
_enum: {
|
|
@@ -2060,7 +2082,7 @@ export default {
|
|
|
2060
2082
|
},
|
|
2061
2083
|
},
|
|
2062
2084
|
/**
|
|
2063
|
-
*
|
|
2085
|
+
* Lookup198: argon_primitives::inherents::BitcoinUtxoSync
|
|
2064
2086
|
**/
|
|
2065
2087
|
ArgonPrimitivesInherentsBitcoinUtxoSync: {
|
|
2066
2088
|
spent: 'Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>',
|
|
@@ -2068,7 +2090,7 @@ export default {
|
|
|
2068
2090
|
syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock',
|
|
2069
2091
|
},
|
|
2070
2092
|
/**
|
|
2071
|
-
*
|
|
2093
|
+
* Lookup200: argon_primitives::inherents::BitcoinUtxoSpend
|
|
2072
2094
|
**/
|
|
2073
2095
|
ArgonPrimitivesInherentsBitcoinUtxoSpend: {
|
|
2074
2096
|
utxoId: 'Compact<u64>',
|
|
@@ -2076,7 +2098,7 @@ export default {
|
|
|
2076
2098
|
bitcoinHeight: 'Compact<u64>',
|
|
2077
2099
|
},
|
|
2078
2100
|
/**
|
|
2079
|
-
*
|
|
2101
|
+
* Lookup203: argon_primitives::inherents::BitcoinUtxoFunding
|
|
2080
2102
|
**/
|
|
2081
2103
|
ArgonPrimitivesInherentsBitcoinUtxoFunding: {
|
|
2082
2104
|
utxoId: 'Compact<u64>',
|
|
@@ -2086,14 +2108,14 @@ export default {
|
|
|
2086
2108
|
bitcoinHeight: 'Compact<u64>',
|
|
2087
2109
|
},
|
|
2088
2110
|
/**
|
|
2089
|
-
*
|
|
2111
|
+
* Lookup204: argon_primitives::bitcoin::BitcoinBlock
|
|
2090
2112
|
**/
|
|
2091
2113
|
ArgonPrimitivesBitcoinBitcoinBlock: {
|
|
2092
2114
|
blockHeight: 'Compact<u64>',
|
|
2093
2115
|
blockHash: 'ArgonPrimitivesBitcoinH256Le',
|
|
2094
2116
|
},
|
|
2095
2117
|
/**
|
|
2096
|
-
*
|
|
2118
|
+
* Lookup205: pallet_vaults::pallet::Call<T>
|
|
2097
2119
|
**/
|
|
2098
2120
|
PalletVaultsCall: {
|
|
2099
2121
|
_enum: {
|
|
@@ -2131,7 +2153,7 @@ export default {
|
|
|
2131
2153
|
},
|
|
2132
2154
|
},
|
|
2133
2155
|
/**
|
|
2134
|
-
*
|
|
2156
|
+
* Lookup206: pallet_vaults::pallet::VaultConfig<sp_core::crypto::AccountId32, Balance>
|
|
2135
2157
|
**/
|
|
2136
2158
|
PalletVaultsVaultConfig: {
|
|
2137
2159
|
terms: 'ArgonPrimitivesVaultVaultTerms',
|
|
@@ -2142,7 +2164,7 @@ export default {
|
|
|
2142
2164
|
securitizationRatio: 'Compact<u128>',
|
|
2143
2165
|
},
|
|
2144
2166
|
/**
|
|
2145
|
-
*
|
|
2167
|
+
* Lookup207: argon_primitives::vault::VaultTerms<Balance>
|
|
2146
2168
|
**/
|
|
2147
2169
|
ArgonPrimitivesVaultVaultTerms: {
|
|
2148
2170
|
bitcoinAnnualPercentRate: 'Compact<u128>',
|
|
@@ -2151,11 +2173,11 @@ export default {
|
|
|
2151
2173
|
treasuryBonusProfitSharing: 'Compact<Permill>',
|
|
2152
2174
|
},
|
|
2153
2175
|
/**
|
|
2154
|
-
*
|
|
2176
|
+
* Lookup213: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
2155
2177
|
**/
|
|
2156
2178
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
|
|
2157
2179
|
/**
|
|
2158
|
-
*
|
|
2180
|
+
* Lookup215: pallet_bitcoin_locks::pallet::Call<T>
|
|
2159
2181
|
**/
|
|
2160
2182
|
PalletBitcoinLocksCall: {
|
|
2161
2183
|
_enum: {
|
|
@@ -2206,11 +2228,11 @@ export default {
|
|
|
2206
2228
|
},
|
|
2207
2229
|
},
|
|
2208
2230
|
/**
|
|
2209
|
-
*
|
|
2231
|
+
* Lookup216: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
2210
2232
|
**/
|
|
2211
2233
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
|
|
2212
2234
|
/**
|
|
2213
|
-
*
|
|
2235
|
+
* Lookup219: pallet_bitcoin_locks::pallet::LockOptions<T>
|
|
2214
2236
|
**/
|
|
2215
2237
|
PalletBitcoinLocksLockOptions: {
|
|
2216
2238
|
_enum: {
|
|
@@ -2220,7 +2242,7 @@ export default {
|
|
|
2220
2242
|
},
|
|
2221
2243
|
},
|
|
2222
2244
|
/**
|
|
2223
|
-
*
|
|
2245
|
+
* Lookup222: pallet_notaries::pallet::Call<T>
|
|
2224
2246
|
**/
|
|
2225
2247
|
PalletNotariesCall: {
|
|
2226
2248
|
_enum: {
|
|
@@ -2238,7 +2260,7 @@ export default {
|
|
|
2238
2260
|
},
|
|
2239
2261
|
},
|
|
2240
2262
|
/**
|
|
2241
|
-
*
|
|
2263
|
+
* Lookup223: pallet_notebook::pallet::Call<T>
|
|
2242
2264
|
**/
|
|
2243
2265
|
PalletNotebookCall: {
|
|
2244
2266
|
_enum: {
|
|
@@ -2251,14 +2273,14 @@ export default {
|
|
|
2251
2273
|
},
|
|
2252
2274
|
},
|
|
2253
2275
|
/**
|
|
2254
|
-
*
|
|
2276
|
+
* Lookup225: argon_primitives::notebook::SignedNotebookHeader
|
|
2255
2277
|
**/
|
|
2256
2278
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
2257
2279
|
header: 'ArgonPrimitivesNotebookNotebookHeader',
|
|
2258
2280
|
signature: '[u8;64]',
|
|
2259
2281
|
},
|
|
2260
2282
|
/**
|
|
2261
|
-
*
|
|
2283
|
+
* Lookup226: argon_primitives::notebook::NotebookHeader
|
|
2262
2284
|
**/
|
|
2263
2285
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
2264
2286
|
version: 'Compact<u16>',
|
|
@@ -2278,7 +2300,7 @@ export default {
|
|
|
2278
2300
|
domains: 'Vec<(H256,AccountId32)>',
|
|
2279
2301
|
},
|
|
2280
2302
|
/**
|
|
2281
|
-
*
|
|
2303
|
+
* Lookup229: argon_primitives::notebook::ChainTransfer
|
|
2282
2304
|
**/
|
|
2283
2305
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
2284
2306
|
_enum: {
|
|
@@ -2292,14 +2314,14 @@ export default {
|
|
|
2292
2314
|
},
|
|
2293
2315
|
},
|
|
2294
2316
|
/**
|
|
2295
|
-
*
|
|
2317
|
+
* Lookup232: argon_primitives::balance_change::AccountOrigin
|
|
2296
2318
|
**/
|
|
2297
2319
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
2298
2320
|
notebookNumber: 'Compact<u32>',
|
|
2299
2321
|
accountUid: 'Compact<u32>',
|
|
2300
2322
|
},
|
|
2301
2323
|
/**
|
|
2302
|
-
*
|
|
2324
|
+
* Lookup239: pallet_localchain_transfer::pallet::Call<T>
|
|
2303
2325
|
**/
|
|
2304
2326
|
PalletLocalchainTransferCall: {
|
|
2305
2327
|
_enum: {
|
|
@@ -2310,7 +2332,7 @@ export default {
|
|
|
2310
2332
|
},
|
|
2311
2333
|
},
|
|
2312
2334
|
/**
|
|
2313
|
-
*
|
|
2335
|
+
* Lookup240: pallet_block_seal_spec::pallet::Call<T>
|
|
2314
2336
|
**/
|
|
2315
2337
|
PalletBlockSealSpecCall: {
|
|
2316
2338
|
_enum: {
|
|
@@ -2321,7 +2343,7 @@ export default {
|
|
|
2321
2343
|
},
|
|
2322
2344
|
},
|
|
2323
2345
|
/**
|
|
2324
|
-
*
|
|
2346
|
+
* Lookup241: pallet_domains::pallet::Call<T>
|
|
2325
2347
|
**/
|
|
2326
2348
|
PalletDomainsCall: {
|
|
2327
2349
|
_enum: {
|
|
@@ -2332,7 +2354,7 @@ export default {
|
|
|
2332
2354
|
},
|
|
2333
2355
|
},
|
|
2334
2356
|
/**
|
|
2335
|
-
*
|
|
2357
|
+
* Lookup242: pallet_price_index::pallet::Call<T>
|
|
2336
2358
|
**/
|
|
2337
2359
|
PalletPriceIndexCall: {
|
|
2338
2360
|
_enum: {
|
|
@@ -2345,7 +2367,7 @@ export default {
|
|
|
2345
2367
|
},
|
|
2346
2368
|
},
|
|
2347
2369
|
/**
|
|
2348
|
-
*
|
|
2370
|
+
* Lookup243: pallet_price_index::PriceIndex
|
|
2349
2371
|
**/
|
|
2350
2372
|
PalletPriceIndexPriceIndex: {
|
|
2351
2373
|
btcUsdPrice: 'Compact<u128>',
|
|
@@ -2356,7 +2378,7 @@ export default {
|
|
|
2356
2378
|
tick: 'Compact<u64>',
|
|
2357
2379
|
},
|
|
2358
2380
|
/**
|
|
2359
|
-
*
|
|
2381
|
+
* Lookup244: pallet_grandpa::pallet::Call<T>
|
|
2360
2382
|
**/
|
|
2361
2383
|
PalletGrandpaCall: {
|
|
2362
2384
|
_enum: {
|
|
@@ -2375,14 +2397,14 @@ export default {
|
|
|
2375
2397
|
},
|
|
2376
2398
|
},
|
|
2377
2399
|
/**
|
|
2378
|
-
*
|
|
2400
|
+
* Lookup245: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2379
2401
|
**/
|
|
2380
2402
|
SpConsensusGrandpaEquivocationProof: {
|
|
2381
2403
|
setId: 'u64',
|
|
2382
2404
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2383
2405
|
},
|
|
2384
2406
|
/**
|
|
2385
|
-
*
|
|
2407
|
+
* Lookup246: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2386
2408
|
**/
|
|
2387
2409
|
SpConsensusGrandpaEquivocation: {
|
|
2388
2410
|
_enum: {
|
|
@@ -2391,7 +2413,7 @@ export default {
|
|
|
2391
2413
|
},
|
|
2392
2414
|
},
|
|
2393
2415
|
/**
|
|
2394
|
-
*
|
|
2416
|
+
* Lookup247: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2395
2417
|
**/
|
|
2396
2418
|
FinalityGrandpaEquivocationPrevote: {
|
|
2397
2419
|
roundNumber: 'u64',
|
|
@@ -2400,18 +2422,18 @@ export default {
|
|
|
2400
2422
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2401
2423
|
},
|
|
2402
2424
|
/**
|
|
2403
|
-
*
|
|
2425
|
+
* Lookup248: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2404
2426
|
**/
|
|
2405
2427
|
FinalityGrandpaPrevote: {
|
|
2406
2428
|
targetHash: 'H256',
|
|
2407
2429
|
targetNumber: 'u32',
|
|
2408
2430
|
},
|
|
2409
2431
|
/**
|
|
2410
|
-
*
|
|
2432
|
+
* Lookup249: sp_consensus_grandpa::app::Signature
|
|
2411
2433
|
**/
|
|
2412
2434
|
SpConsensusGrandpaAppSignature: '[u8;64]',
|
|
2413
2435
|
/**
|
|
2414
|
-
*
|
|
2436
|
+
* Lookup251: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2415
2437
|
**/
|
|
2416
2438
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2417
2439
|
roundNumber: 'u64',
|
|
@@ -2420,18 +2442,18 @@ export default {
|
|
|
2420
2442
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2421
2443
|
},
|
|
2422
2444
|
/**
|
|
2423
|
-
*
|
|
2445
|
+
* Lookup252: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2424
2446
|
**/
|
|
2425
2447
|
FinalityGrandpaPrecommit: {
|
|
2426
2448
|
targetHash: 'H256',
|
|
2427
2449
|
targetNumber: 'u32',
|
|
2428
2450
|
},
|
|
2429
2451
|
/**
|
|
2430
|
-
*
|
|
2452
|
+
* Lookup254: sp_core::Void
|
|
2431
2453
|
**/
|
|
2432
2454
|
SpCoreVoid: 'Null',
|
|
2433
2455
|
/**
|
|
2434
|
-
*
|
|
2456
|
+
* Lookup255: pallet_block_seal::pallet::Call<T>
|
|
2435
2457
|
**/
|
|
2436
2458
|
PalletBlockSealCall: {
|
|
2437
2459
|
_enum: {
|
|
@@ -2441,7 +2463,7 @@ export default {
|
|
|
2441
2463
|
},
|
|
2442
2464
|
},
|
|
2443
2465
|
/**
|
|
2444
|
-
*
|
|
2466
|
+
* Lookup256: argon_primitives::inherents::BlockSealInherent
|
|
2445
2467
|
**/
|
|
2446
2468
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
2447
2469
|
_enum: {
|
|
@@ -2457,7 +2479,7 @@ export default {
|
|
|
2457
2479
|
},
|
|
2458
2480
|
},
|
|
2459
2481
|
/**
|
|
2460
|
-
*
|
|
2482
|
+
* Lookup257: argon_primitives::balance_change::MerkleProof
|
|
2461
2483
|
**/
|
|
2462
2484
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
2463
2485
|
proof: 'Vec<H256>',
|
|
@@ -2465,7 +2487,7 @@ export default {
|
|
|
2465
2487
|
leafIndex: 'Compact<u32>',
|
|
2466
2488
|
},
|
|
2467
2489
|
/**
|
|
2468
|
-
*
|
|
2490
|
+
* Lookup259: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
2469
2491
|
**/
|
|
2470
2492
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
2471
2493
|
accountId: 'AccountId32',
|
|
@@ -2477,7 +2499,7 @@ export default {
|
|
|
2477
2499
|
tick: 'Compact<u64>',
|
|
2478
2500
|
},
|
|
2479
2501
|
/**
|
|
2480
|
-
*
|
|
2502
|
+
* Lookup260: sp_runtime::MultiSignature
|
|
2481
2503
|
**/
|
|
2482
2504
|
SpRuntimeMultiSignature: {
|
|
2483
2505
|
_enum: {
|
|
@@ -2488,21 +2510,24 @@ export default {
|
|
|
2488
2510
|
},
|
|
2489
2511
|
},
|
|
2490
2512
|
/**
|
|
2491
|
-
*
|
|
2513
|
+
* Lookup262: pallet_block_rewards::pallet::Call<T>
|
|
2492
2514
|
**/
|
|
2493
2515
|
PalletBlockRewardsCall: {
|
|
2494
2516
|
_enum: {
|
|
2495
2517
|
set_block_rewards_paused: {
|
|
2496
2518
|
paused: 'bool',
|
|
2497
2519
|
},
|
|
2520
|
+
set_block_voter_rewards_enabled: {
|
|
2521
|
+
enabled: 'bool',
|
|
2522
|
+
},
|
|
2498
2523
|
},
|
|
2499
2524
|
},
|
|
2500
2525
|
/**
|
|
2501
|
-
*
|
|
2526
|
+
* Lookup263: pallet_mint::pallet::Call<T>
|
|
2502
2527
|
**/
|
|
2503
2528
|
PalletMintCall: 'Null',
|
|
2504
2529
|
/**
|
|
2505
|
-
*
|
|
2530
|
+
* Lookup264: pallet_balances::pallet::Call<T, I>
|
|
2506
2531
|
**/
|
|
2507
2532
|
PalletBalancesCall: {
|
|
2508
2533
|
_enum: {
|
|
@@ -2547,13 +2572,13 @@ export default {
|
|
|
2547
2572
|
},
|
|
2548
2573
|
},
|
|
2549
2574
|
/**
|
|
2550
|
-
*
|
|
2575
|
+
* Lookup265: pallet_balances::types::AdjustmentDirection
|
|
2551
2576
|
**/
|
|
2552
2577
|
PalletBalancesAdjustmentDirection: {
|
|
2553
2578
|
_enum: ['Increase', 'Decrease'],
|
|
2554
2579
|
},
|
|
2555
2580
|
/**
|
|
2556
|
-
*
|
|
2581
|
+
* Lookup267: pallet_tx_pause::pallet::Call<T>
|
|
2557
2582
|
**/
|
|
2558
2583
|
PalletTxPauseCall: {
|
|
2559
2584
|
_enum: {
|
|
@@ -2566,7 +2591,7 @@ export default {
|
|
|
2566
2591
|
},
|
|
2567
2592
|
},
|
|
2568
2593
|
/**
|
|
2569
|
-
*
|
|
2594
|
+
* Lookup268: pallet_utility::pallet::Call<T>
|
|
2570
2595
|
**/
|
|
2571
2596
|
PalletUtilityCall: {
|
|
2572
2597
|
_enum: {
|
|
@@ -2602,7 +2627,7 @@ export default {
|
|
|
2602
2627
|
},
|
|
2603
2628
|
},
|
|
2604
2629
|
/**
|
|
2605
|
-
*
|
|
2630
|
+
* Lookup270: pallet_sudo::pallet::Call<T>
|
|
2606
2631
|
**/
|
|
2607
2632
|
PalletSudoCall: {
|
|
2608
2633
|
_enum: {
|
|
@@ -2627,7 +2652,7 @@ export default {
|
|
|
2627
2652
|
},
|
|
2628
2653
|
},
|
|
2629
2654
|
/**
|
|
2630
|
-
*
|
|
2655
|
+
* Lookup271: pallet_treasury::pallet::Call<T>
|
|
2631
2656
|
**/
|
|
2632
2657
|
PalletTreasuryCall: {
|
|
2633
2658
|
_enum: {
|
|
@@ -2643,10 +2668,13 @@ export default {
|
|
|
2643
2668
|
liquidate_bond_lot: {
|
|
2644
2669
|
bondLotId: 'u64',
|
|
2645
2670
|
},
|
|
2671
|
+
buy_argonot_bonds: {
|
|
2672
|
+
bonds: 'u32',
|
|
2673
|
+
},
|
|
2646
2674
|
},
|
|
2647
2675
|
},
|
|
2648
2676
|
/**
|
|
2649
|
-
*
|
|
2677
|
+
* Lookup273: argon_primitives::vault::TreasuryBonusApprovalProof
|
|
2650
2678
|
**/
|
|
2651
2679
|
ArgonPrimitivesVaultTreasuryBonusApprovalProof: {
|
|
2652
2680
|
vaultId: 'Compact<u32>',
|
|
@@ -2655,7 +2683,7 @@ export default {
|
|
|
2655
2683
|
signature: 'SpRuntimeMultiSignature',
|
|
2656
2684
|
},
|
|
2657
2685
|
/**
|
|
2658
|
-
*
|
|
2686
|
+
* Lookup274: pallet_operational_accounts::pallet::Call<T>
|
|
2659
2687
|
**/
|
|
2660
2688
|
PalletOperationalAccountsCall: {
|
|
2661
2689
|
_enum: {
|
|
@@ -2664,16 +2692,16 @@ export default {
|
|
|
2664
2692
|
},
|
|
2665
2693
|
__Unused1: 'Null',
|
|
2666
2694
|
set_reward_config: {
|
|
2667
|
-
|
|
2668
|
-
|
|
2695
|
+
operationalCertificationReward: 'u128',
|
|
2696
|
+
operationalCertificationBonusReward: 'u128',
|
|
2669
2697
|
},
|
|
2670
2698
|
force_set_progress: {
|
|
2671
2699
|
owner: 'AccountId32',
|
|
2672
2700
|
patch: 'PalletOperationalAccountsOperationalProgressPatch',
|
|
2673
2701
|
updateOperationalProgress: 'bool',
|
|
2674
2702
|
},
|
|
2675
|
-
|
|
2676
|
-
|
|
2703
|
+
set_encrypted_server_for_downstream_account: {
|
|
2704
|
+
downstreamAccount: 'AccountId32',
|
|
2677
2705
|
encryptedServer: 'Bytes',
|
|
2678
2706
|
},
|
|
2679
2707
|
activate: 'Null',
|
|
@@ -2683,7 +2711,7 @@ export default {
|
|
|
2683
2711
|
},
|
|
2684
2712
|
},
|
|
2685
2713
|
/**
|
|
2686
|
-
*
|
|
2714
|
+
* Lookup275: pallet_operational_accounts::pallet::Registration<T>
|
|
2687
2715
|
**/
|
|
2688
2716
|
PalletOperationalAccountsRegistration: {
|
|
2689
2717
|
_enum: {
|
|
@@ -2691,52 +2719,48 @@ export default {
|
|
|
2691
2719
|
},
|
|
2692
2720
|
},
|
|
2693
2721
|
/**
|
|
2694
|
-
*
|
|
2722
|
+
* Lookup276: pallet_operational_accounts::pallet::RegistrationV1<T>
|
|
2695
2723
|
**/
|
|
2696
2724
|
PalletOperationalAccountsRegistrationV1: {
|
|
2697
2725
|
operationalAccount: 'AccountId32',
|
|
2698
2726
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
2699
2727
|
operationalAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2700
2728
|
vaultAccount: 'AccountId32',
|
|
2701
|
-
|
|
2702
|
-
miningBotAccount: 'AccountId32',
|
|
2729
|
+
miningAccount: 'AccountId32',
|
|
2703
2730
|
vaultAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
referralProof: 'Option<PalletOperationalAccountsReferralProof>',
|
|
2731
|
+
miningAccountProof: 'PalletOperationalAccountsAccountOwnershipProof',
|
|
2732
|
+
accessProof: 'Option<PalletOperationalAccountsUpstreamAccessProof>',
|
|
2707
2733
|
},
|
|
2708
2734
|
/**
|
|
2709
|
-
*
|
|
2735
|
+
* Lookup277: pallet_operational_accounts::pallet::OpaqueEncryptionPubkey
|
|
2710
2736
|
**/
|
|
2711
2737
|
PalletOperationalAccountsOpaqueEncryptionPubkey: '[u8;32]',
|
|
2712
2738
|
/**
|
|
2713
|
-
*
|
|
2739
|
+
* Lookup278: pallet_operational_accounts::pallet::AccountOwnershipProof
|
|
2714
2740
|
**/
|
|
2715
2741
|
PalletOperationalAccountsAccountOwnershipProof: {
|
|
2716
2742
|
signature: 'SpRuntimeMultiSignature',
|
|
2717
2743
|
},
|
|
2718
2744
|
/**
|
|
2719
|
-
*
|
|
2745
|
+
* Lookup280: pallet_operational_accounts::pallet::UpstreamAccessProof<sp_core::crypto::AccountId32>
|
|
2720
2746
|
**/
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
sponsor: 'AccountId32',
|
|
2725
|
-
expiresAtFrame: 'Compact<u64>',
|
|
2726
|
-
sponsorSignature: 'SpRuntimeMultiSignature',
|
|
2747
|
+
PalletOperationalAccountsUpstreamAccessProof: {
|
|
2748
|
+
upstreamAccount: 'AccountId32',
|
|
2749
|
+
signature: 'SpRuntimeMultiSignature',
|
|
2727
2750
|
},
|
|
2728
2751
|
/**
|
|
2729
|
-
*
|
|
2752
|
+
* Lookup281: pallet_operational_accounts::pallet::OperationalProgressPatch<Balance>
|
|
2730
2753
|
**/
|
|
2731
2754
|
PalletOperationalAccountsOperationalProgressPatch: {
|
|
2732
|
-
|
|
2755
|
+
uniswapArgonTransfersInAmount: 'Option<u128>',
|
|
2756
|
+
accountBitcoinAmount: 'Option<u128>',
|
|
2757
|
+
accountVaultBondAmount: 'Option<u128>',
|
|
2733
2758
|
vaultCreated: 'Option<bool>',
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
observedMiningSeatTotal: 'Option<u32>',
|
|
2759
|
+
vaultBitcoinAmount: 'Option<u128>',
|
|
2760
|
+
miningSeatCount: 'Option<u32>',
|
|
2737
2761
|
},
|
|
2738
2762
|
/**
|
|
2739
|
-
*
|
|
2763
|
+
* Lookup283: pallet_ethereum_verifier::pallet::Call<T>
|
|
2740
2764
|
**/
|
|
2741
2765
|
PalletEthereumVerifierCall: {
|
|
2742
2766
|
_enum: {
|
|
@@ -2758,7 +2782,7 @@ export default {
|
|
|
2758
2782
|
},
|
|
2759
2783
|
},
|
|
2760
2784
|
/**
|
|
2761
|
-
*
|
|
2785
|
+
* Lookup284: pallet_ethereum_verifier::types::CheckpointUpdate
|
|
2762
2786
|
**/
|
|
2763
2787
|
PalletEthereumVerifierCheckpointUpdate: {
|
|
2764
2788
|
header: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2768,7 +2792,7 @@ export default {
|
|
|
2768
2792
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2769
2793
|
},
|
|
2770
2794
|
/**
|
|
2771
|
-
*
|
|
2795
|
+
* Lookup285: snowbridge_beacon_primitives::types::BeaconHeader
|
|
2772
2796
|
**/
|
|
2773
2797
|
SnowbridgeBeaconPrimitivesBeaconHeader: {
|
|
2774
2798
|
slot: 'u64',
|
|
@@ -2778,25 +2802,25 @@ export default {
|
|
|
2778
2802
|
bodyRoot: 'H256',
|
|
2779
2803
|
},
|
|
2780
2804
|
/**
|
|
2781
|
-
*
|
|
2805
|
+
* Lookup286: pallet_ethereum_verifier::types::SyncCommittee
|
|
2782
2806
|
**/
|
|
2783
2807
|
PalletEthereumVerifierSyncCommittee: {
|
|
2784
2808
|
pubkeys: 'Vec<SnowbridgeBeaconPrimitivesPublicKey>',
|
|
2785
2809
|
aggregatePubkey: 'SnowbridgeBeaconPrimitivesPublicKey',
|
|
2786
2810
|
},
|
|
2787
2811
|
/**
|
|
2788
|
-
*
|
|
2812
|
+
* Lookup288: snowbridge_beacon_primitives::types::PublicKey
|
|
2789
2813
|
**/
|
|
2790
2814
|
SnowbridgeBeaconPrimitivesPublicKey: '[u8;48]',
|
|
2791
2815
|
/**
|
|
2792
|
-
*
|
|
2816
|
+
* Lookup292: pallet_ethereum_verifier::types::ExecutionHeaderProof
|
|
2793
2817
|
**/
|
|
2794
2818
|
PalletEthereumVerifierExecutionHeaderProof: {
|
|
2795
2819
|
executionHeader: 'SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader',
|
|
2796
2820
|
executionBranch: 'Vec<H256>',
|
|
2797
2821
|
},
|
|
2798
2822
|
/**
|
|
2799
|
-
*
|
|
2823
|
+
* Lookup293: snowbridge_beacon_primitives::types::VersionedExecutionPayloadHeader
|
|
2800
2824
|
**/
|
|
2801
2825
|
SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader: {
|
|
2802
2826
|
_enum: {
|
|
@@ -2805,7 +2829,7 @@ export default {
|
|
|
2805
2829
|
},
|
|
2806
2830
|
},
|
|
2807
2831
|
/**
|
|
2808
|
-
*
|
|
2832
|
+
* Lookup294: snowbridge_beacon_primitives::types::ExecutionPayloadHeader
|
|
2809
2833
|
**/
|
|
2810
2834
|
SnowbridgeBeaconPrimitivesExecutionPayloadHeader: {
|
|
2811
2835
|
parentHash: 'H256',
|
|
@@ -2825,7 +2849,7 @@ export default {
|
|
|
2825
2849
|
withdrawalsRoot: 'H256',
|
|
2826
2850
|
},
|
|
2827
2851
|
/**
|
|
2828
|
-
*
|
|
2852
|
+
* Lookup295: snowbridge_beacon_primitives::types::deneb::ExecutionPayloadHeader
|
|
2829
2853
|
**/
|
|
2830
2854
|
SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader: {
|
|
2831
2855
|
parentHash: 'H256',
|
|
@@ -2847,7 +2871,7 @@ export default {
|
|
|
2847
2871
|
excessBlobGas: 'u64',
|
|
2848
2872
|
},
|
|
2849
2873
|
/**
|
|
2850
|
-
*
|
|
2874
|
+
* Lookup296: pallet_ethereum_verifier::types::ForkVersions
|
|
2851
2875
|
**/
|
|
2852
2876
|
PalletEthereumVerifierForkVersions: {
|
|
2853
2877
|
genesis: 'PalletEthereumVerifierFork',
|
|
@@ -2859,14 +2883,14 @@ export default {
|
|
|
2859
2883
|
fulu: 'PalletEthereumVerifierFork',
|
|
2860
2884
|
},
|
|
2861
2885
|
/**
|
|
2862
|
-
*
|
|
2886
|
+
* Lookup297: pallet_ethereum_verifier::types::Fork
|
|
2863
2887
|
**/
|
|
2864
2888
|
PalletEthereumVerifierFork: {
|
|
2865
2889
|
version: '[u8;4]',
|
|
2866
2890
|
epoch: 'Compact<u64>',
|
|
2867
2891
|
},
|
|
2868
2892
|
/**
|
|
2869
|
-
*
|
|
2893
|
+
* Lookup298: pallet_ethereum_verifier::types::Update
|
|
2870
2894
|
**/
|
|
2871
2895
|
PalletEthereumVerifierUpdate: {
|
|
2872
2896
|
attestedHeader: 'SnowbridgeBeaconPrimitivesBeaconHeader',
|
|
@@ -2878,25 +2902,25 @@ export default {
|
|
|
2878
2902
|
executionHeaderProof: 'PalletEthereumVerifierExecutionHeaderProof',
|
|
2879
2903
|
},
|
|
2880
2904
|
/**
|
|
2881
|
-
*
|
|
2905
|
+
* Lookup299: pallet_ethereum_verifier::types::SyncAggregate
|
|
2882
2906
|
**/
|
|
2883
2907
|
PalletEthereumVerifierSyncAggregate: {
|
|
2884
2908
|
syncCommitteeBits: 'Bytes',
|
|
2885
2909
|
syncCommitteeSignature: 'SnowbridgeBeaconPrimitivesSignature',
|
|
2886
2910
|
},
|
|
2887
2911
|
/**
|
|
2888
|
-
*
|
|
2912
|
+
* Lookup301: snowbridge_beacon_primitives::types::Signature
|
|
2889
2913
|
**/
|
|
2890
2914
|
SnowbridgeBeaconPrimitivesSignature: '[u8;96]',
|
|
2891
2915
|
/**
|
|
2892
|
-
*
|
|
2916
|
+
* Lookup304: pallet_ethereum_verifier::types::NextSyncCommitteeUpdate
|
|
2893
2917
|
**/
|
|
2894
2918
|
PalletEthereumVerifierNextSyncCommitteeUpdate: {
|
|
2895
2919
|
nextSyncCommittee: 'PalletEthereumVerifierSyncCommittee',
|
|
2896
2920
|
nextSyncCommitteeBranch: 'Vec<H256>',
|
|
2897
2921
|
},
|
|
2898
2922
|
/**
|
|
2899
|
-
*
|
|
2923
|
+
* Lookup305: pallet_crosschain_transfer::pallet::Call<T>
|
|
2900
2924
|
**/
|
|
2901
2925
|
PalletCrosschainTransferCall: {
|
|
2902
2926
|
_enum: {
|
|
@@ -2962,7 +2986,7 @@ export default {
|
|
|
2962
2986
|
},
|
|
2963
2987
|
},
|
|
2964
2988
|
/**
|
|
2965
|
-
*
|
|
2989
|
+
* Lookup306: pallet_crosschain_transfer::pallet::ChainConfig
|
|
2966
2990
|
**/
|
|
2967
2991
|
PalletCrosschainTransferChainConfig: {
|
|
2968
2992
|
_enum: {
|
|
@@ -2975,7 +2999,7 @@ export default {
|
|
|
2975
2999
|
},
|
|
2976
3000
|
},
|
|
2977
3001
|
/**
|
|
2978
|
-
*
|
|
3002
|
+
* Lookup308: pallet_crosschain_transfer::pallet::MintingAuthorityActivationRepaymentPricing<T>
|
|
2979
3003
|
**/
|
|
2980
3004
|
PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing: {
|
|
2981
3005
|
activationGasCost: 'Compact<u128>',
|
|
@@ -2984,27 +3008,27 @@ export default {
|
|
|
2984
3008
|
estimatedMicrogonsPerEth: 'u128',
|
|
2985
3009
|
},
|
|
2986
3010
|
/**
|
|
2987
|
-
*
|
|
3011
|
+
* Lookup311: argon_primitives::ethereum::EthereumReceiptLogProofBatch<MaxProofBlocks, MaxReceiptLogs>
|
|
2988
3012
|
**/
|
|
2989
3013
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBatch: {
|
|
2990
3014
|
executionBlockProof: 'ArgonPrimitivesEthereumEthereumExecutionBlockProof',
|
|
2991
3015
|
blocks: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>',
|
|
2992
3016
|
},
|
|
2993
3017
|
/**
|
|
2994
|
-
*
|
|
3018
|
+
* Lookup312: argon_primitives::ethereum::EthereumExecutionBlockProof
|
|
2995
3019
|
**/
|
|
2996
3020
|
ArgonPrimitivesEthereumEthereumExecutionBlockProof: {
|
|
2997
3021
|
anchorBlockHash: 'H256',
|
|
2998
3022
|
targetToAnchorHeaderChain: 'Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>',
|
|
2999
3023
|
},
|
|
3000
3024
|
/**
|
|
3001
|
-
*
|
|
3025
|
+
* Lookup314: argon_primitives::ethereum::EthereumExecutionHeader
|
|
3002
3026
|
**/
|
|
3003
3027
|
ArgonPrimitivesEthereumEthereumExecutionHeader: {
|
|
3004
3028
|
rlp: 'Bytes',
|
|
3005
3029
|
},
|
|
3006
3030
|
/**
|
|
3007
|
-
*
|
|
3031
|
+
* Lookup318: argon_primitives::ethereum::EthereumReceiptLogProofBlock<MaxReceiptLogs>
|
|
3008
3032
|
**/
|
|
3009
3033
|
ArgonPrimitivesEthereumEthereumReceiptLogProofBlock: {
|
|
3010
3034
|
targetBlockNumber: 'Compact<u64>',
|
|
@@ -3012,28 +3036,28 @@ export default {
|
|
|
3012
3036
|
receiptLogs: 'Vec<ArgonPrimitivesEthereumEthereumReceiptLog>',
|
|
3013
3037
|
},
|
|
3014
3038
|
/**
|
|
3015
|
-
*
|
|
3039
|
+
* Lookup319: argon_primitives::ethereum::EthereumCombinedReceiptProof
|
|
3016
3040
|
**/
|
|
3017
3041
|
ArgonPrimitivesEthereumEthereumCombinedReceiptProof: {
|
|
3018
3042
|
nodes: 'Vec<Bytes>',
|
|
3019
3043
|
receipts: 'Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>',
|
|
3020
3044
|
},
|
|
3021
3045
|
/**
|
|
3022
|
-
*
|
|
3046
|
+
* Lookup323: argon_primitives::ethereum::EthereumReceiptProofReceipt
|
|
3023
3047
|
**/
|
|
3024
3048
|
ArgonPrimitivesEthereumEthereumReceiptProofReceipt: {
|
|
3025
3049
|
transactionIndex: 'Compact<u64>',
|
|
3026
3050
|
nodeIndexes: 'Vec<u16>',
|
|
3027
3051
|
},
|
|
3028
3052
|
/**
|
|
3029
|
-
*
|
|
3053
|
+
* Lookup328: argon_primitives::ethereum::EthereumReceiptLog
|
|
3030
3054
|
**/
|
|
3031
3055
|
ArgonPrimitivesEthereumEthereumReceiptLog: {
|
|
3032
3056
|
transactionIndex: 'Compact<u64>',
|
|
3033
3057
|
eventLog: 'ArgonPrimitivesEthereumEthereumLog',
|
|
3034
3058
|
},
|
|
3035
3059
|
/**
|
|
3036
|
-
*
|
|
3060
|
+
* Lookup329: argon_primitives::ethereum::EthereumLog
|
|
3037
3061
|
**/
|
|
3038
3062
|
ArgonPrimitivesEthereumEthereumLog: {
|
|
3039
3063
|
address: 'H160',
|
|
@@ -3041,7 +3065,7 @@ export default {
|
|
|
3041
3065
|
data: 'Bytes',
|
|
3042
3066
|
},
|
|
3043
3067
|
/**
|
|
3044
|
-
*
|
|
3068
|
+
* Lookup335: pallet_multisig::pallet::Error<T>
|
|
3045
3069
|
**/
|
|
3046
3070
|
PalletMultisigError: {
|
|
3047
3071
|
_enum: [
|
|
@@ -3062,7 +3086,7 @@ export default {
|
|
|
3062
3086
|
],
|
|
3063
3087
|
},
|
|
3064
3088
|
/**
|
|
3065
|
-
*
|
|
3089
|
+
* Lookup338: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
|
|
3066
3090
|
**/
|
|
3067
3091
|
PalletProxyProxyDefinition: {
|
|
3068
3092
|
delegate: 'AccountId32',
|
|
@@ -3070,7 +3094,7 @@ export default {
|
|
|
3070
3094
|
delay: 'u32',
|
|
3071
3095
|
},
|
|
3072
3096
|
/**
|
|
3073
|
-
*
|
|
3097
|
+
* Lookup342: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
3074
3098
|
**/
|
|
3075
3099
|
PalletProxyAnnouncement: {
|
|
3076
3100
|
real: 'AccountId32',
|
|
@@ -3078,7 +3102,7 @@ export default {
|
|
|
3078
3102
|
height: 'u32',
|
|
3079
3103
|
},
|
|
3080
3104
|
/**
|
|
3081
|
-
*
|
|
3105
|
+
* Lookup344: pallet_proxy::pallet::Error<T>
|
|
3082
3106
|
**/
|
|
3083
3107
|
PalletProxyError: {
|
|
3084
3108
|
_enum: [
|
|
@@ -3093,18 +3117,18 @@ export default {
|
|
|
3093
3117
|
],
|
|
3094
3118
|
},
|
|
3095
3119
|
/**
|
|
3096
|
-
*
|
|
3120
|
+
* Lookup345: argon_primitives::tick::Ticker
|
|
3097
3121
|
**/
|
|
3098
3122
|
ArgonPrimitivesTickTicker: {
|
|
3099
3123
|
tickDurationMillis: 'Compact<u64>',
|
|
3100
3124
|
channelHoldExpirationTicks: 'Compact<u64>',
|
|
3101
3125
|
},
|
|
3102
3126
|
/**
|
|
3103
|
-
*
|
|
3127
|
+
* Lookup347: pallet_ticks::pallet::Error<T>
|
|
3104
3128
|
**/
|
|
3105
3129
|
PalletTicksError: 'Null',
|
|
3106
3130
|
/**
|
|
3107
|
-
*
|
|
3131
|
+
* Lookup350: pallet_mining_slot::MinerNonceScoring<T>
|
|
3108
3132
|
**/
|
|
3109
3133
|
PalletMiningSlotMinerNonceScoring: {
|
|
3110
3134
|
nonce: 'U256',
|
|
@@ -3113,7 +3137,7 @@ export default {
|
|
|
3113
3137
|
frameStartBlocksWonSurplus: 'i16',
|
|
3114
3138
|
},
|
|
3115
3139
|
/**
|
|
3116
|
-
*
|
|
3140
|
+
* Lookup362: argon_primitives::block_seal::MiningBidStats
|
|
3117
3141
|
**/
|
|
3118
3142
|
ArgonPrimitivesBlockSealMiningBidStats: {
|
|
3119
3143
|
bidsCount: 'u32',
|
|
@@ -3122,7 +3146,7 @@ export default {
|
|
|
3122
3146
|
bidAmountSum: 'u128',
|
|
3123
3147
|
},
|
|
3124
3148
|
/**
|
|
3125
|
-
*
|
|
3149
|
+
* Lookup366: argon_primitives::block_seal::MiningSlotConfig
|
|
3126
3150
|
**/
|
|
3127
3151
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
3128
3152
|
ticksBeforeBidEndForVrfClose: 'Compact<u64>',
|
|
@@ -3130,7 +3154,7 @@ export default {
|
|
|
3130
3154
|
slotBiddingStartAfterTicks: 'Compact<u64>',
|
|
3131
3155
|
},
|
|
3132
3156
|
/**
|
|
3133
|
-
*
|
|
3157
|
+
* Lookup376: pallet_mining_slot::pallet::Error<T>
|
|
3134
3158
|
**/
|
|
3135
3159
|
PalletMiningSlotError: {
|
|
3136
3160
|
_enum: [
|
|
@@ -3143,11 +3167,12 @@ export default {
|
|
|
3143
3167
|
'InsufficientFunds',
|
|
3144
3168
|
'BidCannotBeReduced',
|
|
3145
3169
|
'InvalidBidAmount',
|
|
3170
|
+
'OperationalAccountRegistrationRequired',
|
|
3146
3171
|
'UnrecoverableHold',
|
|
3147
3172
|
],
|
|
3148
3173
|
},
|
|
3149
3174
|
/**
|
|
3150
|
-
*
|
|
3175
|
+
* Lookup377: argon_primitives::bitcoin::UtxoValue
|
|
3151
3176
|
**/
|
|
3152
3177
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
3153
3178
|
utxoId: 'u64',
|
|
@@ -3157,7 +3182,7 @@ export default {
|
|
|
3157
3182
|
watchForSpentUntilHeight: 'Compact<u64>',
|
|
3158
3183
|
},
|
|
3159
3184
|
/**
|
|
3160
|
-
*
|
|
3185
|
+
* Lookup378: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
3161
3186
|
**/
|
|
3162
3187
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
3163
3188
|
_enum: {
|
|
@@ -3167,13 +3192,13 @@ export default {
|
|
|
3167
3192
|
},
|
|
3168
3193
|
},
|
|
3169
3194
|
/**
|
|
3170
|
-
*
|
|
3195
|
+
* Lookup387: argon_primitives::bitcoin::BitcoinNetwork
|
|
3171
3196
|
**/
|
|
3172
3197
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
3173
3198
|
_enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
|
|
3174
3199
|
},
|
|
3175
3200
|
/**
|
|
3176
|
-
*
|
|
3201
|
+
* Lookup388: pallet_bitcoin_utxos::pallet::Error<T>
|
|
3177
3202
|
**/
|
|
3178
3203
|
PalletBitcoinUtxosError: {
|
|
3179
3204
|
_enum: [
|
|
@@ -3195,7 +3220,7 @@ export default {
|
|
|
3195
3220
|
],
|
|
3196
3221
|
},
|
|
3197
3222
|
/**
|
|
3198
|
-
*
|
|
3223
|
+
* Lookup389: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
|
|
3199
3224
|
**/
|
|
3200
3225
|
ArgonPrimitivesVault: {
|
|
3201
3226
|
operatorAccountId: 'AccountId32',
|
|
@@ -3217,14 +3242,14 @@ export default {
|
|
|
3217
3242
|
operationalMinimumReleaseTick: 'Option<u64>',
|
|
3218
3243
|
},
|
|
3219
3244
|
/**
|
|
3220
|
-
*
|
|
3245
|
+
* Lookup396: argon_primitives::vault::VaultArgonotCommitment<Balance>
|
|
3221
3246
|
**/
|
|
3222
3247
|
ArgonPrimitivesVaultVaultArgonotCommitment: {
|
|
3223
3248
|
committedMicronots: 'Compact<u128>',
|
|
3224
3249
|
encumberedMicronots: 'Compact<u128>',
|
|
3225
3250
|
},
|
|
3226
3251
|
/**
|
|
3227
|
-
*
|
|
3252
|
+
* Lookup398: argon_primitives::bitcoin::BitcoinXPub
|
|
3228
3253
|
**/
|
|
3229
3254
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
3230
3255
|
publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
|
|
@@ -3235,13 +3260,13 @@ export default {
|
|
|
3235
3260
|
network: 'ArgonPrimitivesBitcoinNetworkKind',
|
|
3236
3261
|
},
|
|
3237
3262
|
/**
|
|
3238
|
-
*
|
|
3263
|
+
* Lookup400: argon_primitives::bitcoin::NetworkKind
|
|
3239
3264
|
**/
|
|
3240
3265
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
3241
3266
|
_enum: ['Main', 'Test'],
|
|
3242
3267
|
},
|
|
3243
3268
|
/**
|
|
3244
|
-
*
|
|
3269
|
+
* Lookup409: pallet_vaults::pallet::VaultFrameRevenue<T>
|
|
3245
3270
|
**/
|
|
3246
3271
|
PalletVaultsVaultFrameRevenue: {
|
|
3247
3272
|
frameId: 'Compact<u64>',
|
|
@@ -3262,7 +3287,7 @@ export default {
|
|
|
3262
3287
|
uncollectedRevenue: 'Compact<u128>',
|
|
3263
3288
|
},
|
|
3264
3289
|
/**
|
|
3265
|
-
*
|
|
3290
|
+
* Lookup412: pallet_vaults::pallet::RecentCapacityDrop<Balance, BlockNumber>
|
|
3266
3291
|
**/
|
|
3267
3292
|
PalletVaultsRecentCapacityDrop: {
|
|
3268
3293
|
blockNumber: 'Compact<u32>',
|
|
@@ -3271,7 +3296,7 @@ export default {
|
|
|
3271
3296
|
noFeeFailuresUsed: 'Compact<u32>',
|
|
3272
3297
|
},
|
|
3273
3298
|
/**
|
|
3274
|
-
*
|
|
3299
|
+
* Lookup414: pallet_vaults::pallet::Error<T>
|
|
3275
3300
|
**/
|
|
3276
3301
|
PalletVaultsError: {
|
|
3277
3302
|
_enum: [
|
|
@@ -3307,11 +3332,12 @@ export default {
|
|
|
3307
3332
|
'PendingOrphanedUtxoCosignsBeforeCollect',
|
|
3308
3333
|
'OverdueCollectBlockersBeforeCollect',
|
|
3309
3334
|
'AccountAlreadyHasVault',
|
|
3335
|
+
'OperationalAccountRegistrationRequired',
|
|
3310
3336
|
'CommittedArgonotsBelowEncumberedBacking',
|
|
3311
3337
|
],
|
|
3312
3338
|
},
|
|
3313
3339
|
/**
|
|
3314
|
-
*
|
|
3340
|
+
* Lookup415: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
|
|
3315
3341
|
**/
|
|
3316
3342
|
PalletBitcoinLocksLockedBitcoin: {
|
|
3317
3343
|
vaultId: 'Compact<u32>',
|
|
@@ -3336,7 +3362,7 @@ export default {
|
|
|
3336
3362
|
createdAtArgonBlock: 'Compact<u32>',
|
|
3337
3363
|
},
|
|
3338
3364
|
/**
|
|
3339
|
-
*
|
|
3365
|
+
* Lookup419: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
|
|
3340
3366
|
**/
|
|
3341
3367
|
PalletBitcoinLocksLockReleaseRequest: {
|
|
3342
3368
|
utxoId: 'Compact<u64>',
|
|
@@ -3347,7 +3373,7 @@ export default {
|
|
|
3347
3373
|
redemptionAmount: 'Compact<u128>',
|
|
3348
3374
|
},
|
|
3349
3375
|
/**
|
|
3350
|
-
*
|
|
3376
|
+
* Lookup421: pallet_bitcoin_locks::pallet::OrphanedUtxo<BlockNumber>
|
|
3351
3377
|
**/
|
|
3352
3378
|
PalletBitcoinLocksOrphanedUtxo: {
|
|
3353
3379
|
utxoId: 'Compact<u64>',
|
|
@@ -3357,7 +3383,7 @@ export default {
|
|
|
3357
3383
|
cosignRequest: 'Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>',
|
|
3358
3384
|
},
|
|
3359
3385
|
/**
|
|
3360
|
-
*
|
|
3386
|
+
* Lookup423: pallet_bitcoin_locks::pallet::OrphanedUtxoCosignRequest<BlockNumber>
|
|
3361
3387
|
**/
|
|
3362
3388
|
PalletBitcoinLocksOrphanedUtxoCosignRequest: {
|
|
3363
3389
|
bitcoinNetworkFee: 'u64',
|
|
@@ -3365,7 +3391,7 @@ export default {
|
|
|
3365
3391
|
createdAtArgonBlockNumber: 'u32',
|
|
3366
3392
|
},
|
|
3367
3393
|
/**
|
|
3368
|
-
*
|
|
3394
|
+
* Lookup430: pallet_bitcoin_locks::pallet::Error<T>
|
|
3369
3395
|
**/
|
|
3370
3396
|
PalletBitcoinLocksError: {
|
|
3371
3397
|
_enum: {
|
|
@@ -3407,7 +3433,7 @@ export default {
|
|
|
3407
3433
|
},
|
|
3408
3434
|
},
|
|
3409
3435
|
/**
|
|
3410
|
-
*
|
|
3436
|
+
* Lookup431: argon_primitives::vault::VaultError
|
|
3411
3437
|
**/
|
|
3412
3438
|
ArgonPrimitivesVaultVaultError: {
|
|
3413
3439
|
_enum: [
|
|
@@ -3427,7 +3453,7 @@ export default {
|
|
|
3427
3453
|
],
|
|
3428
3454
|
},
|
|
3429
3455
|
/**
|
|
3430
|
-
*
|
|
3456
|
+
* Lookup443: pallet_notaries::pallet::Error<T>
|
|
3431
3457
|
**/
|
|
3432
3458
|
PalletNotariesError: {
|
|
3433
3459
|
_enum: [
|
|
@@ -3443,7 +3469,7 @@ export default {
|
|
|
3443
3469
|
],
|
|
3444
3470
|
},
|
|
3445
3471
|
/**
|
|
3446
|
-
*
|
|
3472
|
+
* Lookup447: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
3447
3473
|
**/
|
|
3448
3474
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
3449
3475
|
notebookNumber: 'Compact<u32>',
|
|
@@ -3453,7 +3479,7 @@ export default {
|
|
|
3453
3479
|
parentSecret: 'Option<H256>',
|
|
3454
3480
|
},
|
|
3455
3481
|
/**
|
|
3456
|
-
*
|
|
3482
|
+
* Lookup450: pallet_notebook::pallet::Error<T>
|
|
3457
3483
|
**/
|
|
3458
3484
|
PalletNotebookError: {
|
|
3459
3485
|
_enum: [
|
|
@@ -3475,7 +3501,7 @@ export default {
|
|
|
3475
3501
|
],
|
|
3476
3502
|
},
|
|
3477
3503
|
/**
|
|
3478
|
-
*
|
|
3504
|
+
* Lookup451: pallet_localchain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
3479
3505
|
**/
|
|
3480
3506
|
PalletLocalchainTransferQueuedTransferOut: {
|
|
3481
3507
|
accountId: 'AccountId32',
|
|
@@ -3484,11 +3510,11 @@ export default {
|
|
|
3484
3510
|
notaryId: 'u32',
|
|
3485
3511
|
},
|
|
3486
3512
|
/**
|
|
3487
|
-
*
|
|
3513
|
+
* Lookup453: frame_support::PalletId
|
|
3488
3514
|
**/
|
|
3489
3515
|
FrameSupportPalletId: '[u8;8]',
|
|
3490
3516
|
/**
|
|
3491
|
-
*
|
|
3517
|
+
* Lookup454: pallet_localchain_transfer::pallet::Error<T>
|
|
3492
3518
|
**/
|
|
3493
3519
|
PalletLocalchainTransferError: {
|
|
3494
3520
|
_enum: [
|
|
@@ -3503,7 +3529,7 @@ export default {
|
|
|
3503
3529
|
],
|
|
3504
3530
|
},
|
|
3505
3531
|
/**
|
|
3506
|
-
*
|
|
3532
|
+
* Lookup458: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
3507
3533
|
**/
|
|
3508
3534
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
3509
3535
|
notaryId: 'Compact<u32>',
|
|
@@ -3513,13 +3539,13 @@ export default {
|
|
|
3513
3539
|
blockVotingPower: 'Compact<u128>',
|
|
3514
3540
|
},
|
|
3515
3541
|
/**
|
|
3516
|
-
*
|
|
3542
|
+
* Lookup463: pallet_block_seal_spec::pallet::Error<T>
|
|
3517
3543
|
**/
|
|
3518
3544
|
PalletBlockSealSpecError: {
|
|
3519
3545
|
_enum: ['MaxNotebooksAtTickExceeded'],
|
|
3520
3546
|
},
|
|
3521
3547
|
/**
|
|
3522
|
-
*
|
|
3548
|
+
* Lookup465: pallet_domains::pallet::Error<T>
|
|
3523
3549
|
**/
|
|
3524
3550
|
PalletDomainsError: {
|
|
3525
3551
|
_enum: [
|
|
@@ -3531,7 +3557,7 @@ export default {
|
|
|
3531
3557
|
],
|
|
3532
3558
|
},
|
|
3533
3559
|
/**
|
|
3534
|
-
*
|
|
3560
|
+
* Lookup467: pallet_price_index::CpiMeasurementBucket
|
|
3535
3561
|
**/
|
|
3536
3562
|
PalletPriceIndexCpiMeasurementBucket: {
|
|
3537
3563
|
tickRange: '(u64,u64)',
|
|
@@ -3539,7 +3565,7 @@ export default {
|
|
|
3539
3565
|
measurementsCount: 'u32',
|
|
3540
3566
|
},
|
|
3541
3567
|
/**
|
|
3542
|
-
*
|
|
3568
|
+
* Lookup471: pallet_price_index::ArgonotAverageFrameAccumulator<Balance>
|
|
3543
3569
|
**/
|
|
3544
3570
|
PalletPriceIndexArgonotAverageFrameAccumulator: {
|
|
3545
3571
|
frameId: 'Compact<u64>',
|
|
@@ -3547,7 +3573,7 @@ export default {
|
|
|
3547
3573
|
sampleCount: 'Compact<u32>',
|
|
3548
3574
|
},
|
|
3549
3575
|
/**
|
|
3550
|
-
*
|
|
3576
|
+
* Lookup472: pallet_price_index::pallet::Error<T>
|
|
3551
3577
|
**/
|
|
3552
3578
|
PalletPriceIndexError: {
|
|
3553
3579
|
_enum: [
|
|
@@ -3558,7 +3584,7 @@ export default {
|
|
|
3558
3584
|
],
|
|
3559
3585
|
},
|
|
3560
3586
|
/**
|
|
3561
|
-
*
|
|
3587
|
+
* Lookup473: pallet_grandpa::StoredState<N>
|
|
3562
3588
|
**/
|
|
3563
3589
|
PalletGrandpaStoredState: {
|
|
3564
3590
|
_enum: {
|
|
@@ -3575,7 +3601,7 @@ export default {
|
|
|
3575
3601
|
},
|
|
3576
3602
|
},
|
|
3577
3603
|
/**
|
|
3578
|
-
*
|
|
3604
|
+
* Lookup474: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3579
3605
|
**/
|
|
3580
3606
|
PalletGrandpaStoredPendingChange: {
|
|
3581
3607
|
scheduledAt: 'u32',
|
|
@@ -3584,7 +3610,7 @@ export default {
|
|
|
3584
3610
|
forced: 'Option<u32>',
|
|
3585
3611
|
},
|
|
3586
3612
|
/**
|
|
3587
|
-
*
|
|
3613
|
+
* Lookup476: pallet_grandpa::pallet::Error<T>
|
|
3588
3614
|
**/
|
|
3589
3615
|
PalletGrandpaError: {
|
|
3590
3616
|
_enum: [
|
|
@@ -3598,7 +3624,7 @@ export default {
|
|
|
3598
3624
|
],
|
|
3599
3625
|
},
|
|
3600
3626
|
/**
|
|
3601
|
-
*
|
|
3627
|
+
* Lookup477: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32, argon_primitives::block_seal::app::Public>
|
|
3602
3628
|
**/
|
|
3603
3629
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
3604
3630
|
blockAuthorAccountId: 'AccountId32',
|
|
@@ -3606,7 +3632,7 @@ export default {
|
|
|
3606
3632
|
blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
|
|
3607
3633
|
},
|
|
3608
3634
|
/**
|
|
3609
|
-
*
|
|
3635
|
+
* Lookup479: pallet_block_seal::pallet::Error<T>
|
|
3610
3636
|
**/
|
|
3611
3637
|
PalletBlockSealError: {
|
|
3612
3638
|
_enum: [
|
|
@@ -3634,11 +3660,28 @@ export default {
|
|
|
3634
3660
|
],
|
|
3635
3661
|
},
|
|
3636
3662
|
/**
|
|
3637
|
-
*
|
|
3663
|
+
* Lookup483: pallet_block_rewards::pallet::Error<T>
|
|
3638
3664
|
**/
|
|
3639
3665
|
PalletBlockRewardsError: 'Null',
|
|
3640
3666
|
/**
|
|
3641
|
-
*
|
|
3667
|
+
* Lookup484: pallet_mint::pallet::PendingMintUtxo<T>
|
|
3668
|
+
**/
|
|
3669
|
+
PalletMintPendingMintUtxo: {
|
|
3670
|
+
utxoId: 'Compact<u64>',
|
|
3671
|
+
accountId: 'AccountId32',
|
|
3672
|
+
remainingAmount: 'Compact<u128>',
|
|
3673
|
+
maxAmountPerFrame: 'Compact<u128>',
|
|
3674
|
+
},
|
|
3675
|
+
/**
|
|
3676
|
+
* Lookup486: pallet_mint::pallet::MintQueueCursor
|
|
3677
|
+
**/
|
|
3678
|
+
PalletMintMintQueueCursor: {
|
|
3679
|
+
payoutStartIndex: 'Compact<u64>',
|
|
3680
|
+
payoutCursorIndex: 'Compact<u64>',
|
|
3681
|
+
payoutCursorFrameId: 'Option<u64>',
|
|
3682
|
+
},
|
|
3683
|
+
/**
|
|
3684
|
+
* Lookup489: pallet_mint::pallet::MintAction<B>
|
|
3642
3685
|
**/
|
|
3643
3686
|
PalletMintMintAction: {
|
|
3644
3687
|
argonBurned: 'u128',
|
|
@@ -3646,13 +3689,13 @@ export default {
|
|
|
3646
3689
|
bitcoinMinted: 'u128',
|
|
3647
3690
|
},
|
|
3648
3691
|
/**
|
|
3649
|
-
*
|
|
3692
|
+
* Lookup491: pallet_mint::pallet::Error<T>
|
|
3650
3693
|
**/
|
|
3651
3694
|
PalletMintError: {
|
|
3652
3695
|
_enum: ['TooManyPendingMints'],
|
|
3653
3696
|
},
|
|
3654
3697
|
/**
|
|
3655
|
-
*
|
|
3698
|
+
* Lookup493: pallet_balances::types::BalanceLock<Balance>
|
|
3656
3699
|
**/
|
|
3657
3700
|
PalletBalancesBalanceLock: {
|
|
3658
3701
|
id: '[u8;8]',
|
|
@@ -3660,34 +3703,34 @@ export default {
|
|
|
3660
3703
|
reasons: 'PalletBalancesReasons',
|
|
3661
3704
|
},
|
|
3662
3705
|
/**
|
|
3663
|
-
*
|
|
3706
|
+
* Lookup494: pallet_balances::types::Reasons
|
|
3664
3707
|
**/
|
|
3665
3708
|
PalletBalancesReasons: {
|
|
3666
3709
|
_enum: ['Fee', 'Misc', 'All'],
|
|
3667
3710
|
},
|
|
3668
3711
|
/**
|
|
3669
|
-
*
|
|
3712
|
+
* Lookup497: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3670
3713
|
**/
|
|
3671
3714
|
PalletBalancesReserveData: {
|
|
3672
3715
|
id: '[u8;8]',
|
|
3673
3716
|
amount: 'u128',
|
|
3674
3717
|
},
|
|
3675
3718
|
/**
|
|
3676
|
-
*
|
|
3719
|
+
* Lookup500: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
3677
3720
|
**/
|
|
3678
3721
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
3679
3722
|
id: 'ArgonRuntimeRuntimeHoldReason',
|
|
3680
3723
|
amount: 'u128',
|
|
3681
3724
|
},
|
|
3682
3725
|
/**
|
|
3683
|
-
*
|
|
3726
|
+
* Lookup503: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
3684
3727
|
**/
|
|
3685
3728
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
3686
3729
|
id: 'ArgonRuntimeRuntimeFreezeReason',
|
|
3687
3730
|
amount: 'u128',
|
|
3688
3731
|
},
|
|
3689
3732
|
/**
|
|
3690
|
-
*
|
|
3733
|
+
* Lookup504: argon_runtime::RuntimeFreezeReason
|
|
3691
3734
|
**/
|
|
3692
3735
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
3693
3736
|
_enum: {
|
|
@@ -3714,13 +3757,13 @@ export default {
|
|
|
3714
3757
|
},
|
|
3715
3758
|
},
|
|
3716
3759
|
/**
|
|
3717
|
-
*
|
|
3760
|
+
* Lookup505: pallet_block_rewards::pallet::FreezeReason
|
|
3718
3761
|
**/
|
|
3719
3762
|
PalletBlockRewardsFreezeReason: {
|
|
3720
3763
|
_enum: ['MaturationPeriod'],
|
|
3721
3764
|
},
|
|
3722
3765
|
/**
|
|
3723
|
-
*
|
|
3766
|
+
* Lookup507: pallet_balances::pallet::Error<T, I>
|
|
3724
3767
|
**/
|
|
3725
3768
|
PalletBalancesError: {
|
|
3726
3769
|
_enum: [
|
|
@@ -3739,69 +3782,82 @@ export default {
|
|
|
3739
3782
|
],
|
|
3740
3783
|
},
|
|
3741
3784
|
/**
|
|
3742
|
-
*
|
|
3785
|
+
* Lookup509: pallet_tx_pause::pallet::Error<T>
|
|
3743
3786
|
**/
|
|
3744
3787
|
PalletTxPauseError: {
|
|
3745
3788
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
|
|
3746
3789
|
},
|
|
3747
3790
|
/**
|
|
3748
|
-
*
|
|
3791
|
+
* Lookup510: pallet_transaction_payment::Releases
|
|
3749
3792
|
**/
|
|
3750
3793
|
PalletTransactionPaymentReleases: {
|
|
3751
3794
|
_enum: ['V1Ancient', 'V2'],
|
|
3752
3795
|
},
|
|
3753
3796
|
/**
|
|
3754
|
-
*
|
|
3797
|
+
* Lookup511: frame_support::traits::storage::NoDrop<frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>>
|
|
3755
3798
|
**/
|
|
3756
3799
|
FrameSupportStorageNoDrop: 'FrameSupportTokensFungibleImbalance',
|
|
3757
3800
|
/**
|
|
3758
|
-
*
|
|
3801
|
+
* Lookup512: frame_support::traits::tokens::fungible::imbalance::Imbalance<B, OnDrop, OppositeOnDrop>
|
|
3759
3802
|
**/
|
|
3760
3803
|
FrameSupportTokensFungibleImbalance: {
|
|
3761
3804
|
amount: 'u128',
|
|
3762
3805
|
},
|
|
3763
3806
|
/**
|
|
3764
|
-
*
|
|
3807
|
+
* Lookup513: pallet_utility::pallet::Error<T>
|
|
3765
3808
|
**/
|
|
3766
3809
|
PalletUtilityError: {
|
|
3767
3810
|
_enum: ['TooManyCalls'],
|
|
3768
3811
|
},
|
|
3769
3812
|
/**
|
|
3770
|
-
*
|
|
3813
|
+
* Lookup514: pallet_sudo::pallet::Error<T>
|
|
3771
3814
|
**/
|
|
3772
3815
|
PalletSudoError: {
|
|
3773
3816
|
_enum: ['RequireSudo'],
|
|
3774
3817
|
},
|
|
3775
3818
|
/**
|
|
3776
|
-
*
|
|
3819
|
+
* Lookup515: pallet_treasury::pallet::FrameVaultCapital<T>
|
|
3777
3820
|
**/
|
|
3778
3821
|
PalletTreasuryFrameVaultCapital: {
|
|
3779
3822
|
frameId: 'Compact<u64>',
|
|
3780
3823
|
vaults: 'BTreeMap<u32, PalletTreasuryVaultCapital>',
|
|
3781
3824
|
},
|
|
3782
3825
|
/**
|
|
3783
|
-
*
|
|
3826
|
+
* Lookup517: pallet_treasury::pallet::VaultCapital<T>
|
|
3784
3827
|
**/
|
|
3785
3828
|
PalletTreasuryVaultCapital: {
|
|
3786
3829
|
bondLotAllocations: 'Vec<PalletTreasuryBondLotAllocation>',
|
|
3787
3830
|
eligibleBonds: 'Compact<u32>',
|
|
3788
3831
|
},
|
|
3789
3832
|
/**
|
|
3790
|
-
*
|
|
3833
|
+
* Lookup519: pallet_treasury::pallet::BondLotAllocation
|
|
3791
3834
|
**/
|
|
3792
3835
|
PalletTreasuryBondLotAllocation: {
|
|
3793
3836
|
bondLotId: 'Compact<u64>',
|
|
3794
3837
|
prorata: 'u128',
|
|
3795
3838
|
},
|
|
3796
3839
|
/**
|
|
3797
|
-
*
|
|
3840
|
+
* Lookup524: pallet_treasury::pallet::FrameArgonotBondParticipants<T>
|
|
3841
|
+
**/
|
|
3842
|
+
PalletTreasuryFrameArgonotBondParticipants: {
|
|
3843
|
+
frameId: 'Compact<u64>',
|
|
3844
|
+
totalBonds: 'Compact<u32>',
|
|
3845
|
+
bondLots: 'Vec<PalletTreasuryBondLotSummary>',
|
|
3846
|
+
},
|
|
3847
|
+
/**
|
|
3848
|
+
* Lookup526: pallet_treasury::pallet::BondLotSummary
|
|
3849
|
+
**/
|
|
3850
|
+
PalletTreasuryBondLotSummary: {
|
|
3851
|
+
bondLotId: 'Compact<u64>',
|
|
3852
|
+
bonds: 'Compact<u32>',
|
|
3853
|
+
},
|
|
3854
|
+
/**
|
|
3855
|
+
* Lookup528: pallet_treasury::pallet::BondLot<T>
|
|
3798
3856
|
**/
|
|
3799
3857
|
PalletTreasuryBondLot: {
|
|
3800
3858
|
owner: 'AccountId32',
|
|
3801
|
-
|
|
3859
|
+
program: 'PalletTreasuryBondProgram',
|
|
3802
3860
|
bonds: 'Compact<u32>',
|
|
3803
|
-
sharingPercent: 'Compact<Permill>',
|
|
3804
|
-
bonusPercent: 'Compact<Permill>',
|
|
3805
3861
|
createdFrameId: 'Compact<u64>',
|
|
3806
3862
|
participatedFrames: 'Compact<u32>',
|
|
3807
3863
|
lastFrameEarningsFrameId: 'Option<u64>',
|
|
@@ -3811,14 +3867,20 @@ export default {
|
|
|
3811
3867
|
releaseReason: 'Option<PalletTreasuryBondReleaseReason>',
|
|
3812
3868
|
},
|
|
3813
3869
|
/**
|
|
3814
|
-
*
|
|
3870
|
+
* Lookup529: pallet_treasury::pallet::BondProgram
|
|
3815
3871
|
**/
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3872
|
+
PalletTreasuryBondProgram: {
|
|
3873
|
+
_enum: {
|
|
3874
|
+
Vault: {
|
|
3875
|
+
vaultId: 'Compact<u32>',
|
|
3876
|
+
sharingPercent: 'Compact<Permill>',
|
|
3877
|
+
bonusPercent: 'Compact<Permill>',
|
|
3878
|
+
},
|
|
3879
|
+
Argonot: 'Null',
|
|
3880
|
+
},
|
|
3819
3881
|
},
|
|
3820
3882
|
/**
|
|
3821
|
-
*
|
|
3883
|
+
* Lookup533: pallet_treasury::pallet::Error<T>
|
|
3822
3884
|
**/
|
|
3823
3885
|
PalletTreasuryError: {
|
|
3824
3886
|
_enum: [
|
|
@@ -3838,47 +3900,49 @@ export default {
|
|
|
3838
3900
|
'BonusApprovalExpired',
|
|
3839
3901
|
'BonusApprovalExistingBondLot',
|
|
3840
3902
|
'InvalidBonusApprovalSignature',
|
|
3903
|
+
'ArgonotBondPurchaseBelowCutoff',
|
|
3904
|
+
'ArgonotBondPurchaseAboveCap',
|
|
3841
3905
|
],
|
|
3842
3906
|
},
|
|
3843
3907
|
/**
|
|
3844
|
-
*
|
|
3908
|
+
* Lookup534: pallet_fee_control::pallet::Error<T>
|
|
3845
3909
|
**/
|
|
3846
3910
|
PalletFeeControlError: {
|
|
3847
3911
|
_enum: ['SponsoredFeeTooHigh'],
|
|
3848
3912
|
},
|
|
3849
3913
|
/**
|
|
3850
|
-
*
|
|
3914
|
+
* Lookup535: pallet_operational_accounts::pallet::OperationalAccount<T>
|
|
3851
3915
|
**/
|
|
3852
3916
|
PalletOperationalAccountsOperationalAccount: {
|
|
3853
3917
|
vaultAccount: 'AccountId32',
|
|
3854
|
-
|
|
3855
|
-
miningBotAccount: 'AccountId32',
|
|
3918
|
+
miningAccount: 'AccountId32',
|
|
3856
3919
|
encryptionPubkey: 'PalletOperationalAccountsOpaqueEncryptionPubkey',
|
|
3857
|
-
|
|
3858
|
-
|
|
3920
|
+
upstreamAccount: 'Option<AccountId32>',
|
|
3921
|
+
uniswapArgonTransfersInAmount: 'u128',
|
|
3922
|
+
accountBitcoinAmount: 'u128',
|
|
3923
|
+
accountVaultBondAmount: 'u128',
|
|
3859
3924
|
vaultCreated: 'bool',
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
hasTreasuryPoolParticipation: 'bool',
|
|
3925
|
+
vaultBitcoinAccrual: 'u128',
|
|
3926
|
+
vaultBitcoinAppliedTotal: 'u128',
|
|
3863
3927
|
miningSeatAccrual: 'Compact<u32>',
|
|
3864
3928
|
miningSeatAppliedTotal: 'Compact<u32>',
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3929
|
+
operationalCertificationsCount: 'Compact<u32>',
|
|
3930
|
+
accessCodePending: 'bool',
|
|
3931
|
+
availableAccessCodes: 'Compact<u32>',
|
|
3868
3932
|
rewardsEarnedCount: 'Compact<u32>',
|
|
3869
3933
|
rewardsEarnedAmount: 'u128',
|
|
3870
3934
|
rewardsCollectedAmount: 'u128',
|
|
3871
|
-
|
|
3935
|
+
isOperationallyCertified: 'bool',
|
|
3872
3936
|
},
|
|
3873
3937
|
/**
|
|
3874
|
-
*
|
|
3938
|
+
* Lookup536: pallet_operational_accounts::pallet::RewardsConfig<Balance>
|
|
3875
3939
|
**/
|
|
3876
3940
|
PalletOperationalAccountsRewardsConfig: {
|
|
3877
|
-
|
|
3878
|
-
|
|
3941
|
+
operationalCertificationReward: 'Compact<u128>',
|
|
3942
|
+
operationalCertificationBonusReward: 'Compact<u128>',
|
|
3879
3943
|
},
|
|
3880
3944
|
/**
|
|
3881
|
-
*
|
|
3945
|
+
* Lookup538: pallet_operational_accounts::pallet::Error<T>
|
|
3882
3946
|
**/
|
|
3883
3947
|
PalletOperationalAccountsError: {
|
|
3884
3948
|
_enum: [
|
|
@@ -3887,28 +3951,32 @@ export default {
|
|
|
3887
3951
|
'AccountAlreadyLinked',
|
|
3888
3952
|
'InvalidAccountProof',
|
|
3889
3953
|
'NotOperationalAccount',
|
|
3890
|
-
'
|
|
3891
|
-
'
|
|
3954
|
+
'RegistrationInviteRequired',
|
|
3955
|
+
'InvalidAccessProof',
|
|
3956
|
+
'UpstreamNotOperationalAccount',
|
|
3957
|
+
'MinimumsNotMet',
|
|
3958
|
+
'CannotGrantAccessToSelf',
|
|
3892
3959
|
'NoProgressUpdateProvided',
|
|
3893
3960
|
'EncryptedServerTooLong',
|
|
3894
|
-
'
|
|
3961
|
+
'NotUpstreamOfDownstream',
|
|
3895
3962
|
'NoPendingRewards',
|
|
3896
3963
|
'RewardClaimBelowMinimum',
|
|
3897
3964
|
'RewardClaimNotWholeArgon',
|
|
3898
3965
|
'RewardClaimExceedsPending',
|
|
3899
3966
|
'TreasuryInsufficientFunds',
|
|
3900
|
-
'
|
|
3967
|
+
'AlreadyOperationallyCertified',
|
|
3901
3968
|
'NotEligibleForActivation',
|
|
3969
|
+
'UpstreamHasNoAvailableAccessCodes',
|
|
3902
3970
|
],
|
|
3903
3971
|
},
|
|
3904
3972
|
/**
|
|
3905
|
-
*
|
|
3973
|
+
* Lookup539: pallet_ethereum_verifier::types::FinalizedBeaconHeaderState
|
|
3906
3974
|
**/
|
|
3907
3975
|
PalletEthereumVerifierFinalizedBeaconHeaderState: {
|
|
3908
3976
|
slot: 'Compact<u64>',
|
|
3909
3977
|
},
|
|
3910
3978
|
/**
|
|
3911
|
-
*
|
|
3979
|
+
* Lookup540: pallet_ethereum_verifier::types::ExecutionHeaderAnchor
|
|
3912
3980
|
**/
|
|
3913
3981
|
PalletEthereumVerifierExecutionHeaderAnchor: {
|
|
3914
3982
|
blockNumber: 'Compact<u64>',
|
|
@@ -3919,7 +3987,7 @@ export default {
|
|
|
3919
3987
|
receiptsRoot: 'H256',
|
|
3920
3988
|
},
|
|
3921
3989
|
/**
|
|
3922
|
-
*
|
|
3990
|
+
* Lookup541: pallet_ethereum_verifier::types::SyncCommitteePrepared
|
|
3923
3991
|
**/
|
|
3924
3992
|
PalletEthereumVerifierSyncCommitteePrepared: {
|
|
3925
3993
|
root: 'H256',
|
|
@@ -3927,13 +3995,13 @@ export default {
|
|
|
3927
3995
|
aggregatePubkey: 'SnowbridgeMilagroBlsKeysPublicKey',
|
|
3928
3996
|
},
|
|
3929
3997
|
/**
|
|
3930
|
-
*
|
|
3998
|
+
* Lookup543: snowbridge_milagro_bls::keys::PublicKey
|
|
3931
3999
|
**/
|
|
3932
4000
|
SnowbridgeMilagroBlsKeysPublicKey: {
|
|
3933
4001
|
point: 'SnowbridgeAmclBls381Ecp',
|
|
3934
4002
|
},
|
|
3935
4003
|
/**
|
|
3936
|
-
*
|
|
4004
|
+
* Lookup544: snowbridge_amcl::bls381::ecp::ECP
|
|
3937
4005
|
**/
|
|
3938
4006
|
SnowbridgeAmclBls381Ecp: {
|
|
3939
4007
|
x: 'SnowbridgeAmclBls381Fp',
|
|
@@ -3941,26 +4009,26 @@ export default {
|
|
|
3941
4009
|
z: 'SnowbridgeAmclBls381Fp',
|
|
3942
4010
|
},
|
|
3943
4011
|
/**
|
|
3944
|
-
*
|
|
4012
|
+
* Lookup545: snowbridge_amcl::bls381::fp::FP
|
|
3945
4013
|
**/
|
|
3946
4014
|
SnowbridgeAmclBls381Fp: {
|
|
3947
4015
|
x: 'SnowbridgeAmclBls381Big',
|
|
3948
4016
|
xes: 'i32',
|
|
3949
4017
|
},
|
|
3950
4018
|
/**
|
|
3951
|
-
*
|
|
4019
|
+
* Lookup546: snowbridge_amcl::bls381::big::Big
|
|
3952
4020
|
**/
|
|
3953
4021
|
SnowbridgeAmclBls381Big: {
|
|
3954
4022
|
w: '[i32;14]',
|
|
3955
4023
|
},
|
|
3956
4024
|
/**
|
|
3957
|
-
*
|
|
4025
|
+
* Lookup550: argon_primitives::ethereum::EthereumBeaconPreset
|
|
3958
4026
|
**/
|
|
3959
4027
|
ArgonPrimitivesEthereumEthereumBeaconPreset: {
|
|
3960
4028
|
_enum: ['Mainnet', 'Minimal'],
|
|
3961
4029
|
},
|
|
3962
4030
|
/**
|
|
3963
|
-
*
|
|
4031
|
+
* Lookup551: pallet_ethereum_verifier::pallet::Error<T>
|
|
3964
4032
|
**/
|
|
3965
4033
|
PalletEthereumVerifierError: {
|
|
3966
4034
|
_enum: [
|
|
@@ -3991,7 +4059,20 @@ export default {
|
|
|
3991
4059
|
],
|
|
3992
4060
|
},
|
|
3993
4061
|
/**
|
|
3994
|
-
*
|
|
4062
|
+
* Lookup552: pallet_crosschain_transfer::pallet::AccountTransferTotals<T>
|
|
4063
|
+
**/
|
|
4064
|
+
PalletCrosschainTransferAccountTransferTotals: {
|
|
4065
|
+
microgonsIn: 'u128',
|
|
4066
|
+
microgonsOut: 'u128',
|
|
4067
|
+
argonTransfersInCount: 'Compact<u32>',
|
|
4068
|
+
argonTransfersOutCount: 'Compact<u32>',
|
|
4069
|
+
micronotsIn: 'u128',
|
|
4070
|
+
micronotsOut: 'u128',
|
|
4071
|
+
argonotTransfersInCount: 'Compact<u32>',
|
|
4072
|
+
argonotTransfersOutCount: 'Compact<u32>',
|
|
4073
|
+
},
|
|
4074
|
+
/**
|
|
4075
|
+
* Lookup554: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncil<T>
|
|
3995
4076
|
**/
|
|
3996
4077
|
PalletCrosschainTransferGlobalIssuanceCouncil: {
|
|
3997
4078
|
epochMicrogonsPerArgonot: 'u128',
|
|
@@ -3999,7 +4080,7 @@ export default {
|
|
|
3999
4080
|
totalWeight: 'u128',
|
|
4000
4081
|
},
|
|
4001
4082
|
/**
|
|
4002
|
-
*
|
|
4083
|
+
* Lookup556: pallet_crosschain_transfer::pallet::GlobalIssuanceCouncilMember<T>
|
|
4003
4084
|
**/
|
|
4004
4085
|
PalletCrosschainTransferGlobalIssuanceCouncilMember: {
|
|
4005
4086
|
accountId: 'AccountId32',
|
|
@@ -4007,7 +4088,7 @@ export default {
|
|
|
4007
4088
|
weight: 'u128',
|
|
4008
4089
|
},
|
|
4009
4090
|
/**
|
|
4010
|
-
*
|
|
4091
|
+
* Lookup561: pallet_crosschain_transfer::pallet::CouncilApprovalQueueEntry<T>
|
|
4011
4092
|
**/
|
|
4012
4093
|
PalletCrosschainTransferCouncilApprovalQueueEntry: {
|
|
4013
4094
|
approvingCouncilHash: 'H256',
|
|
@@ -4020,7 +4101,7 @@ export default {
|
|
|
4020
4101
|
signatures: 'BTreeMap<H160, [u8;65]>',
|
|
4021
4102
|
},
|
|
4022
4103
|
/**
|
|
4023
|
-
*
|
|
4104
|
+
* Lookup566: pallet_crosschain_transfer::pallet::MintingAuthority<T>
|
|
4024
4105
|
**/
|
|
4025
4106
|
PalletCrosschainTransferMintingAuthority: {
|
|
4026
4107
|
accountId: 'AccountId32',
|
|
@@ -4038,13 +4119,13 @@ export default {
|
|
|
4038
4119
|
deactivationApprovalQueueNonce: 'Option<u64>',
|
|
4039
4120
|
},
|
|
4040
4121
|
/**
|
|
4041
|
-
*
|
|
4122
|
+
* Lookup567: pallet_crosschain_transfer::pallet::MintingAuthorityState
|
|
4042
4123
|
**/
|
|
4043
4124
|
PalletCrosschainTransferMintingAuthorityState: {
|
|
4044
4125
|
_enum: ['PendingActivation', 'Active', 'Deactivating'],
|
|
4045
4126
|
},
|
|
4046
4127
|
/**
|
|
4047
|
-
*
|
|
4128
|
+
* Lookup569: pallet_crosschain_transfer::transfer_out::TransferOutOfArgon<T>
|
|
4048
4129
|
**/
|
|
4049
4130
|
PalletCrosschainTransferTransferOutTransferOutOfArgon: {
|
|
4050
4131
|
argonAccountId: 'AccountId32',
|
|
@@ -4062,7 +4143,7 @@ export default {
|
|
|
4062
4143
|
state: 'PalletCrosschainTransferTransferOutTransferOutState',
|
|
4063
4144
|
},
|
|
4064
4145
|
/**
|
|
4065
|
-
*
|
|
4146
|
+
* Lookup571: pallet_crosschain_transfer::transfer_out::MintingAuthorityTransferReservation<T>
|
|
4066
4147
|
**/
|
|
4067
4148
|
PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation: {
|
|
4068
4149
|
microgonCollateral: 'u128',
|
|
@@ -4071,13 +4152,13 @@ export default {
|
|
|
4071
4152
|
signature: '[u8;65]',
|
|
4072
4153
|
},
|
|
4073
4154
|
/**
|
|
4074
|
-
*
|
|
4155
|
+
* Lookup575: pallet_crosschain_transfer::transfer_out::TransferOutState
|
|
4075
4156
|
**/
|
|
4076
4157
|
PalletCrosschainTransferTransferOutTransferOutState: {
|
|
4077
4158
|
_enum: ['Started', 'Ready'],
|
|
4078
4159
|
},
|
|
4079
4160
|
/**
|
|
4080
|
-
*
|
|
4161
|
+
* Lookup577: pallet_crosschain_transfer::transfer_out::PendingCollateralizationRequest<T>
|
|
4081
4162
|
**/
|
|
4082
4163
|
PalletCrosschainTransferTransferOutPendingCollateralizationRequest: {
|
|
4083
4164
|
transferId: 'H256',
|
|
@@ -4085,14 +4166,14 @@ export default {
|
|
|
4085
4166
|
remainingMintingAuthorityTip: 'u128',
|
|
4086
4167
|
},
|
|
4087
4168
|
/**
|
|
4088
|
-
*
|
|
4169
|
+
* Lookup579: pallet_crosschain_transfer::pallet::SourceChainCirculation<T>
|
|
4089
4170
|
**/
|
|
4090
4171
|
PalletCrosschainTransferSourceChainCirculation: {
|
|
4091
4172
|
argonCirculation: 'u128',
|
|
4092
4173
|
argonotCirculation: 'u128',
|
|
4093
4174
|
},
|
|
4094
4175
|
/**
|
|
4095
|
-
*
|
|
4176
|
+
* Lookup580: pallet_crosschain_transfer::pallet::Error<T>
|
|
4096
4177
|
**/
|
|
4097
4178
|
PalletCrosschainTransferError: {
|
|
4098
4179
|
_enum: [
|
|
@@ -4153,55 +4234,55 @@ export default {
|
|
|
4153
4234
|
],
|
|
4154
4235
|
},
|
|
4155
4236
|
/**
|
|
4156
|
-
*
|
|
4237
|
+
* Lookup583: frame_system::extensions::authorize_call::AuthorizeCall<T>
|
|
4157
4238
|
**/
|
|
4158
4239
|
FrameSystemExtensionsAuthorizeCall: 'Null',
|
|
4159
4240
|
/**
|
|
4160
|
-
*
|
|
4241
|
+
* Lookup584: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4161
4242
|
**/
|
|
4162
4243
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4163
4244
|
/**
|
|
4164
|
-
*
|
|
4245
|
+
* Lookup585: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4165
4246
|
**/
|
|
4166
4247
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4167
4248
|
/**
|
|
4168
|
-
*
|
|
4249
|
+
* Lookup586: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4169
4250
|
**/
|
|
4170
4251
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4171
4252
|
/**
|
|
4172
|
-
*
|
|
4253
|
+
* Lookup587: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4173
4254
|
**/
|
|
4174
4255
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4175
4256
|
/**
|
|
4176
|
-
*
|
|
4257
|
+
* Lookup590: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4177
4258
|
**/
|
|
4178
4259
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4179
4260
|
/**
|
|
4180
|
-
*
|
|
4261
|
+
* Lookup591: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4181
4262
|
**/
|
|
4182
4263
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4183
4264
|
/**
|
|
4184
|
-
*
|
|
4265
|
+
* Lookup592: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4185
4266
|
**/
|
|
4186
4267
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4187
4268
|
/**
|
|
4188
|
-
*
|
|
4269
|
+
* Lookup593: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4189
4270
|
**/
|
|
4190
4271
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4191
4272
|
mode: 'FrameMetadataHashExtensionMode',
|
|
4192
4273
|
},
|
|
4193
4274
|
/**
|
|
4194
|
-
*
|
|
4275
|
+
* Lookup594: frame_metadata_hash_extension::Mode
|
|
4195
4276
|
**/
|
|
4196
4277
|
FrameMetadataHashExtensionMode: {
|
|
4197
4278
|
_enum: ['Disabled', 'Enabled'],
|
|
4198
4279
|
},
|
|
4199
4280
|
/**
|
|
4200
|
-
*
|
|
4281
|
+
* Lookup595: frame_system::extensions::weight_reclaim::WeightReclaim<T>
|
|
4201
4282
|
**/
|
|
4202
4283
|
FrameSystemExtensionsWeightReclaim: 'Null',
|
|
4203
4284
|
/**
|
|
4204
|
-
*
|
|
4285
|
+
* Lookup597: argon_runtime::Runtime
|
|
4205
4286
|
**/
|
|
4206
4287
|
ArgonRuntimeRuntime: 'Null',
|
|
4207
4288
|
};
|