@argonprotocol/mainchain 1.4.3-dev.fbc5662c → 1.4.4-dev.abb08dac

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.
Files changed (49) hide show
  1. package/browser/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
  2. package/browser/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
  3. package/browser/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
  4. package/browser/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
  5. package/browser/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
  6. package/browser/index.d.ts +1884 -465
  7. package/browser/index.js +6670 -539
  8. package/browser/index.js.map +1 -1
  9. package/lib/artifacts/contracts/ArgonToken.sol/ArgonToken.json +671 -0
  10. package/lib/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +671 -0
  11. package/lib/artifacts/contracts/MintingGateway.sol/MintingGateway.json +1688 -0
  12. package/lib/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +135 -0
  13. package/lib/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +131 -0
  14. package/lib/index.cjs +6692 -551
  15. package/lib/index.cjs.map +1 -1
  16. package/lib/index.d.cts +1884 -465
  17. package/lib/index.d.ts +1884 -465
  18. package/lib/index.js +6683 -542
  19. package/lib/index.js.map +1 -1
  20. package/package.json +17 -19
  21. package/src/interfaces/augment-api-consts.ts +59 -6
  22. package/src/interfaces/augment-api-errors.ts +212 -11
  23. package/src/interfaces/augment-api-events.ts +295 -13
  24. package/src/interfaces/augment-api-query.ts +291 -27
  25. package/src/interfaces/augment-api-rpc.ts +1 -1
  26. package/src/interfaces/augment-api-runtime.ts +1 -27
  27. package/src/interfaces/augment-api-tx.ts +138 -24
  28. package/src/interfaces/augment-types.ts +7 -3
  29. package/src/interfaces/definitions.ts +11 -26
  30. package/src/interfaces/ethereum/types.ts +17 -5
  31. package/src/interfaces/lookup.ts +700 -301
  32. package/src/interfaces/registry.ts +56 -16
  33. package/src/interfaces/types-lookup.ts +845 -322
  34. package/lib/chunk-3KFMHNNJ.cjs +0 -706
  35. package/lib/chunk-3KFMHNNJ.cjs.map +0 -1
  36. package/lib/chunk-D3FCDADJ.cjs +0 -175
  37. package/lib/chunk-D3FCDADJ.cjs.map +0 -1
  38. package/lib/chunk-RF6NOJOR.js +0 -706
  39. package/lib/chunk-RF6NOJOR.js.map +0 -1
  40. package/lib/chunk-YPXWOFUS.js +0 -175
  41. package/lib/chunk-YPXWOFUS.js.map +0 -1
  42. package/lib/lib-CU2JUZW6.cjs +0 -403
  43. package/lib/lib-CU2JUZW6.cjs.map +0 -1
  44. package/lib/lib-P3PEMYOB.js +0 -403
  45. package/lib/lib-P3PEMYOB.js.map +0 -1
  46. package/lib/setPreset-NCTHSXWD.js +0 -15
  47. package/lib/setPreset-NCTHSXWD.js.map +0 -1
  48. package/lib/setPreset-XHOPATBO.cjs +0 -15
  49. package/lib/setPreset-XHOPATBO.cjs.map +0 -1
@@ -657,6 +657,12 @@ declare module '@polkadot/types/lookup' {
657
657
  readonly vaultEarnings: u128;
658
658
  readonly error: SpRuntimeDispatchError;
659
659
  } & Struct;
660
+ readonly isCommittedArgonotsSet: boolean;
661
+ readonly asCommittedArgonotsSet: {
662
+ readonly vaultId: u32;
663
+ readonly operatorAccountId: AccountId32;
664
+ readonly amount: u128;
665
+ } & Struct;
660
666
  readonly type:
661
667
  | 'VaultCreated'
662
668
  | 'VaultModified'
@@ -672,7 +678,8 @@ declare module '@polkadot/types/lookup' {
672
678
  | 'LostBitcoinCompensated'
673
679
  | 'FundsReleased'
674
680
  | 'FundsReleasedError'
675
- | 'TreasuryRecordingError';
681
+ | 'TreasuryRecordingError'
682
+ | 'CommittedArgonotsSet';
676
683
  }
677
684
 
678
685
  /** @name PalletBitcoinLocksEvent (57) */
@@ -683,7 +690,7 @@ declare module '@polkadot/types/lookup' {
683
690
  readonly vaultId: u32;
684
691
  readonly liquidityPromised: u128;
685
692
  readonly securitization: u128;
686
- readonly lockedMarketRate: u128;
693
+ readonly lockedTargetPrice: u128;
687
694
  readonly accountId: AccountId32;
688
695
  readonly securityFee: u128;
689
696
  } & Struct;
@@ -692,9 +699,9 @@ declare module '@polkadot/types/lookup' {
692
699
  readonly utxoId: u64;
693
700
  readonly vaultId: u32;
694
701
  readonly liquidityPromised: u128;
695
- readonly originalMarketRate: u128;
702
+ readonly oldTargetPrice: u128;
696
703
  readonly securityFee: u128;
697
- readonly newLockedMarketRate: u128;
704
+ readonly newTargetPrice: u128;
698
705
  readonly amountBurned: u128;
699
706
  readonly accountId: AccountId32;
700
707
  } & Struct;
@@ -1505,7 +1512,15 @@ declare module '@polkadot/types/lookup' {
1505
1512
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
1506
1513
  readonly isTreasury: boolean;
1507
1514
  readonly asTreasury: PalletTreasuryHoldReason;
1508
- readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards' | 'Treasury';
1515
+ readonly isCrosschainTransfer: boolean;
1516
+ readonly asCrosschainTransfer: PalletCrosschainTransferHoldReason;
1517
+ readonly type:
1518
+ | 'MiningSlot'
1519
+ | 'Vaults'
1520
+ | 'BitcoinLocks'
1521
+ | 'BlockRewards'
1522
+ | 'Treasury'
1523
+ | 'CrosschainTransfer';
1509
1524
  }
1510
1525
 
1511
1526
  /** @name PalletMiningSlotHoldReason (105) */
@@ -1540,14 +1555,21 @@ declare module '@polkadot/types/lookup' {
1540
1555
  readonly type: 'ContributedToTreasury';
1541
1556
  }
1542
1557
 
1543
- /** @name PalletBalancesUnexpectedKind (110) */
1558
+ /** @name PalletCrosschainTransferHoldReason (110) */
1559
+ interface PalletCrosschainTransferHoldReason extends Enum {
1560
+ readonly isTransferOutMintingAuthorityTip: boolean;
1561
+ readonly isMintingAuthorityActivationRepayment: boolean;
1562
+ readonly type: 'TransferOutMintingAuthorityTip' | 'MintingAuthorityActivationRepayment';
1563
+ }
1564
+
1565
+ /** @name PalletBalancesUnexpectedKind (111) */
1544
1566
  interface PalletBalancesUnexpectedKind extends Enum {
1545
1567
  readonly isBalanceUpdated: boolean;
1546
1568
  readonly isFailedToMutateAccount: boolean;
1547
1569
  readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
1548
1570
  }
1549
1571
 
1550
- /** @name PalletTxPauseEvent (112) */
1572
+ /** @name PalletTxPauseEvent (113) */
1551
1573
  interface PalletTxPauseEvent extends Enum {
1552
1574
  readonly isCallPaused: boolean;
1553
1575
  readonly asCallPaused: {
@@ -1560,7 +1582,7 @@ declare module '@polkadot/types/lookup' {
1560
1582
  readonly type: 'CallPaused' | 'CallUnpaused';
1561
1583
  }
1562
1584
 
1563
- /** @name PalletTransactionPaymentEvent (115) */
1585
+ /** @name PalletTransactionPaymentEvent (116) */
1564
1586
  interface PalletTransactionPaymentEvent extends Enum {
1565
1587
  readonly isTransactionFeePaid: boolean;
1566
1588
  readonly asTransactionFeePaid: {
@@ -1571,7 +1593,7 @@ declare module '@polkadot/types/lookup' {
1571
1593
  readonly type: 'TransactionFeePaid';
1572
1594
  }
1573
1595
 
1574
- /** @name PalletUtilityEvent (116) */
1596
+ /** @name PalletUtilityEvent (117) */
1575
1597
  interface PalletUtilityEvent extends Enum {
1576
1598
  readonly isBatchInterrupted: boolean;
1577
1599
  readonly asBatchInterrupted: {
@@ -1605,7 +1627,7 @@ declare module '@polkadot/types/lookup' {
1605
1627
  | 'IfElseFallbackCalled';
1606
1628
  }
1607
1629
 
1608
- /** @name PalletSudoEvent (117) */
1630
+ /** @name PalletSudoEvent (118) */
1609
1631
  interface PalletSudoEvent extends Enum {
1610
1632
  readonly isSudid: boolean;
1611
1633
  readonly asSudid: {
@@ -1624,7 +1646,7 @@ declare module '@polkadot/types/lookup' {
1624
1646
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1625
1647
  }
1626
1648
 
1627
- /** @name PalletTreasuryEvent (118) */
1649
+ /** @name PalletTreasuryEvent (119) */
1628
1650
  interface PalletTreasuryEvent extends Enum {
1629
1651
  readonly isCouldNotDistributeEarningsToBondLot: boolean;
1630
1652
  readonly asCouldNotDistributeEarningsToBondLot: {
@@ -1687,6 +1709,12 @@ declare module '@polkadot/types/lookup' {
1687
1709
  readonly accountId: AccountId32;
1688
1710
  readonly bonds: u32;
1689
1711
  } & Struct;
1712
+ readonly isEncumberedBondMicrogonsBurned: boolean;
1713
+ readonly asEncumberedBondMicrogonsBurned: {
1714
+ readonly accountId: AccountId32;
1715
+ readonly burnedAmount: u128;
1716
+ readonly releasedAmount: u128;
1717
+ } & Struct;
1690
1718
  readonly type:
1691
1719
  | 'CouldNotDistributeEarningsToBondLot'
1692
1720
  | 'CouldNotTransferToTreasuryReserves'
@@ -1695,10 +1723,11 @@ declare module '@polkadot/types/lookup' {
1695
1723
  | 'CouldNotReleaseBondLot'
1696
1724
  | 'BondLotPurchased'
1697
1725
  | 'BondLotReleaseScheduled'
1698
- | 'BondLotReleased';
1726
+ | 'BondLotReleased'
1727
+ | 'EncumberedBondMicrogonsBurned';
1699
1728
  }
1700
1729
 
1701
- /** @name PalletTreasuryBondReleaseReason (119) */
1730
+ /** @name PalletTreasuryBondReleaseReason (120) */
1702
1731
  interface PalletTreasuryBondReleaseReason extends Enum {
1703
1732
  readonly isUserLiquidation: boolean;
1704
1733
  readonly isBumped: boolean;
@@ -1706,7 +1735,7 @@ declare module '@polkadot/types/lookup' {
1706
1735
  readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
1707
1736
  }
1708
1737
 
1709
- /** @name PalletFeeControlEvent (120) */
1738
+ /** @name PalletFeeControlEvent (121) */
1710
1739
  interface PalletFeeControlEvent extends Enum {
1711
1740
  readonly isFeeSkipped: boolean;
1712
1741
  readonly asFeeSkipped: {
@@ -1721,14 +1750,14 @@ declare module '@polkadot/types/lookup' {
1721
1750
  readonly type: 'FeeSkipped' | 'FeeDelegated';
1722
1751
  }
1723
1752
 
1724
- /** @name ArgonRuntimeOriginCaller (121) */
1753
+ /** @name ArgonRuntimeOriginCaller (122) */
1725
1754
  interface ArgonRuntimeOriginCaller extends Enum {
1726
1755
  readonly isSystem: boolean;
1727
1756
  readonly asSystem: FrameSupportDispatchRawOrigin;
1728
1757
  readonly type: 'System';
1729
1758
  }
1730
1759
 
1731
- /** @name FrameSupportDispatchRawOrigin (122) */
1760
+ /** @name FrameSupportDispatchRawOrigin (123) */
1732
1761
  interface FrameSupportDispatchRawOrigin extends Enum {
1733
1762
  readonly isRoot: boolean;
1734
1763
  readonly isSigned: boolean;
@@ -1738,7 +1767,7 @@ declare module '@polkadot/types/lookup' {
1738
1767
  readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
1739
1768
  }
1740
1769
 
1741
- /** @name PalletOperationalAccountsEvent (123) */
1770
+ /** @name PalletOperationalAccountsEvent (124) */
1742
1771
  interface PalletOperationalAccountsEvent extends Enum {
1743
1772
  readonly isOperationalAccountRegistered: boolean;
1744
1773
  readonly asOperationalAccountRegistered: {
@@ -1795,14 +1824,14 @@ declare module '@polkadot/types/lookup' {
1795
1824
  | 'EncryptedServerUpdated';
1796
1825
  }
1797
1826
 
1798
- /** @name ArgonPrimitivesProvidersOperationalRewardKind (124) */
1827
+ /** @name ArgonPrimitivesProvidersOperationalRewardKind (125) */
1799
1828
  interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
1800
1829
  readonly isActivation: boolean;
1801
1830
  readonly isReferralBonus: boolean;
1802
1831
  readonly type: 'Activation' | 'ReferralBonus';
1803
1832
  }
1804
1833
 
1805
- /** @name PalletEthereumVerifierEvent (125) */
1834
+ /** @name PalletEthereumVerifierEvent (126) */
1806
1835
  interface PalletEthereumVerifierEvent extends Enum {
1807
1836
  readonly isBeaconHeaderImported: boolean;
1808
1837
  readonly asBeaconHeaderImported: {
@@ -1829,46 +1858,239 @@ declare module '@polkadot/types/lookup' {
1829
1858
  | 'OperatingModeChanged';
1830
1859
  }
1831
1860
 
1832
- /** @name PalletEthereumVerifierBasicOperatingMode (126) */
1861
+ /** @name PalletEthereumVerifierBasicOperatingMode (127) */
1833
1862
  interface PalletEthereumVerifierBasicOperatingMode extends Enum {
1834
1863
  readonly isNormal: boolean;
1835
1864
  readonly isHalted: boolean;
1836
1865
  readonly type: 'Normal' | 'Halted';
1837
1866
  }
1838
1867
 
1839
- /** @name PalletCrosschainTransferEvent (127) */
1868
+ /** @name PalletCrosschainTransferEvent (128) */
1840
1869
  interface PalletCrosschainTransferEvent extends Enum {
1841
- readonly isBurnNoticeAccepted: boolean;
1842
- readonly asBurnNoticeAccepted: {
1870
+ readonly isTransferToArgonSettled: boolean;
1871
+ readonly asTransferToArgonSettled: {
1843
1872
  readonly sourceChain: PalletCrosschainTransferSourceChain;
1844
- readonly notice: PalletCrosschainTransferBurnNotice;
1873
+ readonly transfer: PalletCrosschainTransferTransferToArgonActivity;
1845
1874
  } & Struct;
1846
- readonly type: 'BurnNoticeAccepted';
1847
- }
1848
-
1849
- /** @name PalletCrosschainTransferSourceChain (128) */
1875
+ readonly isGlobalIssuanceCouncilForced: boolean;
1876
+ readonly asGlobalIssuanceCouncilForced: {
1877
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1878
+ readonly councilHash: H256;
1879
+ } & Struct;
1880
+ readonly isCouncilSignerRegistered: boolean;
1881
+ readonly asCouncilSignerRegistered: {
1882
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1883
+ readonly accountId: AccountId32;
1884
+ readonly signer: H160;
1885
+ } & Struct;
1886
+ readonly isCouncilSignerRotationQueued: boolean;
1887
+ readonly asCouncilSignerRotationQueued: {
1888
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1889
+ readonly accountId: AccountId32;
1890
+ readonly signer: H160;
1891
+ } & Struct;
1892
+ readonly isMintingAuthorityRegistered: boolean;
1893
+ readonly asMintingAuthorityRegistered: {
1894
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1895
+ readonly destinationSigningKey: H160;
1896
+ readonly accountId: AccountId32;
1897
+ readonly approvalQueueNonce: u64;
1898
+ } & Struct;
1899
+ readonly isMintingAuthorityDeactivationQueued: boolean;
1900
+ readonly asMintingAuthorityDeactivationQueued: {
1901
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1902
+ readonly destinationSigningKey: H160;
1903
+ readonly approvalQueueNonce: u64;
1904
+ } & Struct;
1905
+ readonly isMinimumMintingAuthorityValueSet: boolean;
1906
+ readonly asMinimumMintingAuthorityValueSet: {
1907
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1908
+ readonly minimumValue: u128;
1909
+ } & Struct;
1910
+ readonly isMintingAuthorityActivationRepaymentPricingSet: boolean;
1911
+ readonly asMintingAuthorityActivationRepaymentPricingSet: {
1912
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1913
+ } & Struct;
1914
+ readonly isQueueEntryApprovalRecorded: boolean;
1915
+ readonly asQueueEntryApprovalRecorded: {
1916
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1917
+ readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
1918
+ readonly approvalQueueNonce: u64;
1919
+ } & Struct;
1920
+ readonly isQueueEntryApprovalReady: boolean;
1921
+ readonly asQueueEntryApprovalReady: {
1922
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1923
+ readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
1924
+ readonly approvalQueueNonce: u64;
1925
+ } & Struct;
1926
+ readonly isMintingAuthorityActivationFinalized: boolean;
1927
+ readonly asMintingAuthorityActivationFinalized: {
1928
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1929
+ readonly destinationSigningKey: H160;
1930
+ } & Struct;
1931
+ readonly isMintingAuthorityActivationCompleted: boolean;
1932
+ readonly asMintingAuthorityActivationCompleted: {
1933
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1934
+ readonly destinationSigningKey: H160;
1935
+ readonly relayerArgonAccountId: AccountId32;
1936
+ readonly repaymentAmount: u128;
1937
+ } & Struct;
1938
+ readonly isMintingAuthorityDeactivationFinalized: boolean;
1939
+ readonly asMintingAuthorityDeactivationFinalized: {
1940
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1941
+ readonly destinationSigningKey: H160;
1942
+ } & Struct;
1943
+ readonly isGatewaySyncPaused: boolean;
1944
+ readonly asGatewaySyncPaused: {
1945
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1946
+ readonly pause: PalletCrosschainTransferGatewaySyncPause;
1947
+ } & Struct;
1948
+ readonly isGatewayUnpaused: boolean;
1949
+ readonly asGatewayUnpaused: {
1950
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1951
+ } & Struct;
1952
+ readonly isGatewayStateAdvanced: boolean;
1953
+ readonly asGatewayStateAdvanced: {
1954
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1955
+ readonly gatewayState: PalletCrosschainTransferGatewayState;
1956
+ } & Struct;
1957
+ readonly isTransferOutStarted: boolean;
1958
+ readonly asTransferOutStarted: {
1959
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1960
+ readonly transferId: H256;
1961
+ readonly accountId: AccountId32;
1962
+ readonly asset: PalletCrosschainTransferAssetKind;
1963
+ readonly amount: u128;
1964
+ readonly mintingAuthorityTip: u128;
1965
+ } & Struct;
1966
+ readonly isTransferCollateralized: boolean;
1967
+ readonly asTransferCollateralized: {
1968
+ readonly transferId: H256;
1969
+ readonly destinationSigningKey: H160;
1970
+ readonly microgonCollateral: u128;
1971
+ readonly micronotCollateral: u128;
1972
+ } & Struct;
1973
+ readonly isTransferOutReady: boolean;
1974
+ readonly asTransferOutReady: {
1975
+ readonly transferId: H256;
1976
+ } & Struct;
1977
+ readonly isTransferOutFinalized: boolean;
1978
+ readonly asTransferOutFinalized: {
1979
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1980
+ readonly transferId: H256;
1981
+ } & Struct;
1982
+ readonly isTransferOutCanceled: boolean;
1983
+ readonly asTransferOutCanceled: {
1984
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1985
+ readonly transferId: H256;
1986
+ } & Struct;
1987
+ readonly isTransferCollateralInvalidated: boolean;
1988
+ readonly asTransferCollateralInvalidated: {
1989
+ readonly transferId: H256;
1990
+ readonly destinationSigningKey: H160;
1991
+ } & Struct;
1992
+ readonly type:
1993
+ | 'TransferToArgonSettled'
1994
+ | 'GlobalIssuanceCouncilForced'
1995
+ | 'CouncilSignerRegistered'
1996
+ | 'CouncilSignerRotationQueued'
1997
+ | 'MintingAuthorityRegistered'
1998
+ | 'MintingAuthorityDeactivationQueued'
1999
+ | 'MinimumMintingAuthorityValueSet'
2000
+ | 'MintingAuthorityActivationRepaymentPricingSet'
2001
+ | 'QueueEntryApprovalRecorded'
2002
+ | 'QueueEntryApprovalReady'
2003
+ | 'MintingAuthorityActivationFinalized'
2004
+ | 'MintingAuthorityActivationCompleted'
2005
+ | 'MintingAuthorityDeactivationFinalized'
2006
+ | 'GatewaySyncPaused'
2007
+ | 'GatewayUnpaused'
2008
+ | 'GatewayStateAdvanced'
2009
+ | 'TransferOutStarted'
2010
+ | 'TransferCollateralized'
2011
+ | 'TransferOutReady'
2012
+ | 'TransferOutFinalized'
2013
+ | 'TransferOutCanceled'
2014
+ | 'TransferCollateralInvalidated';
2015
+ }
2016
+
2017
+ /** @name PalletCrosschainTransferSourceChain (129) */
1850
2018
  interface PalletCrosschainTransferSourceChain extends Enum {
1851
2019
  readonly isEthereum: boolean;
1852
2020
  readonly type: 'Ethereum';
1853
2021
  }
1854
2022
 
1855
- /** @name PalletCrosschainTransferBurnNotice (129) */
1856
- interface PalletCrosschainTransferBurnNotice extends Struct {
2023
+ /** @name PalletCrosschainTransferTransferToArgonActivity (130) */
2024
+ interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
2025
+ readonly gatewayActivityNonce: Compact<u64>;
1857
2026
  readonly from: H160;
2027
+ readonly asset: PalletCrosschainTransferAssetKind;
1858
2028
  readonly to: AccountId32;
1859
- readonly assetKind: PalletCrosschainTransferAssetKind;
1860
- readonly amount: u128;
1861
- readonly accountNonce: Compact<u64>;
2029
+ readonly amount: Compact<u128>;
1862
2030
  }
1863
2031
 
1864
- /** @name PalletCrosschainTransferAssetKind (132) */
2032
+ /** @name PalletCrosschainTransferAssetKind (133) */
1865
2033
  interface PalletCrosschainTransferAssetKind extends Enum {
1866
2034
  readonly isArgon: boolean;
1867
2035
  readonly isArgonot: boolean;
1868
2036
  readonly type: 'Argon' | 'Argonot';
1869
2037
  }
1870
2038
 
1871
- /** @name FrameSystemPhase (133) */
2039
+ /** @name PalletCrosschainTransferCouncilApprovalTargetId (134) */
2040
+ interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
2041
+ readonly isMintingAuthorityActivation: boolean;
2042
+ readonly asMintingAuthorityActivation: H160;
2043
+ readonly isMintingAuthorityDeactivation: boolean;
2044
+ readonly asMintingAuthorityDeactivation: H160;
2045
+ readonly isGlobalIssuanceCouncilRotation: boolean;
2046
+ readonly asGlobalIssuanceCouncilRotation: H256;
2047
+ readonly type:
2048
+ | 'MintingAuthorityActivation'
2049
+ | 'MintingAuthorityDeactivation'
2050
+ | 'GlobalIssuanceCouncilRotation';
2051
+ }
2052
+
2053
+ /** @name PalletCrosschainTransferGatewaySyncPause (135) */
2054
+ interface PalletCrosschainTransferGatewaySyncPause extends Struct {
2055
+ readonly lastGoodGatewayActivityNonce: Compact<u64>;
2056
+ readonly failedGatewayActivityNonce: Compact<u64>;
2057
+ readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
2058
+ }
2059
+
2060
+ /** @name PalletCrosschainTransferGatewaySyncPauseReason (136) */
2061
+ interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
2062
+ readonly isManual: boolean;
2063
+ readonly isMalformedGatewayActivity: boolean;
2064
+ readonly isUnsupportedToken: boolean;
2065
+ readonly isMintingAuthorityNotFound: boolean;
2066
+ readonly isUnexpectedMintingAuthorityState: boolean;
2067
+ readonly isMintingAuthorityMismatch: boolean;
2068
+ readonly isMissingMintingAuthorityActivationRepaymentPricing: boolean;
2069
+ readonly isMintingAuthorityActivationRepaymentMismatch: boolean;
2070
+ readonly isGlobalIssuanceCouncilNotFound: boolean;
2071
+ readonly isGatewayStateDrift: boolean;
2072
+ readonly type:
2073
+ | 'Manual'
2074
+ | 'MalformedGatewayActivity'
2075
+ | 'UnsupportedToken'
2076
+ | 'MintingAuthorityNotFound'
2077
+ | 'UnexpectedMintingAuthorityState'
2078
+ | 'MintingAuthorityMismatch'
2079
+ | 'MissingMintingAuthorityActivationRepaymentPricing'
2080
+ | 'MintingAuthorityActivationRepaymentMismatch'
2081
+ | 'GlobalIssuanceCouncilNotFound'
2082
+ | 'GatewayStateDrift';
2083
+ }
2084
+
2085
+ /** @name PalletCrosschainTransferGatewayState (137) */
2086
+ interface PalletCrosschainTransferGatewayState extends Struct {
2087
+ readonly gatewayActivityNonce: Compact<u64>;
2088
+ readonly argonApprovalsNonce: Compact<u64>;
2089
+ readonly argonCirculation: u128;
2090
+ readonly argonotCirculation: u128;
2091
+ }
2092
+
2093
+ /** @name FrameSystemPhase (138) */
1872
2094
  interface FrameSystemPhase extends Enum {
1873
2095
  readonly isApplyExtrinsic: boolean;
1874
2096
  readonly asApplyExtrinsic: u32;
@@ -1877,19 +2099,19 @@ declare module '@polkadot/types/lookup' {
1877
2099
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1878
2100
  }
1879
2101
 
1880
- /** @name FrameSystemLastRuntimeUpgradeInfo (137) */
2102
+ /** @name FrameSystemLastRuntimeUpgradeInfo (142) */
1881
2103
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1882
2104
  readonly specVersion: Compact<u32>;
1883
2105
  readonly specName: Text;
1884
2106
  }
1885
2107
 
1886
- /** @name FrameSystemCodeUpgradeAuthorization (140) */
2108
+ /** @name FrameSystemCodeUpgradeAuthorization (145) */
1887
2109
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1888
2110
  readonly codeHash: H256;
1889
2111
  readonly checkVersion: bool;
1890
2112
  }
1891
2113
 
1892
- /** @name FrameSystemCall (141) */
2114
+ /** @name FrameSystemCall (146) */
1893
2115
  interface FrameSystemCall extends Enum {
1894
2116
  readonly isRemark: boolean;
1895
2117
  readonly asRemark: {
@@ -1950,21 +2172,21 @@ declare module '@polkadot/types/lookup' {
1950
2172
  | 'ApplyAuthorizedUpgrade';
1951
2173
  }
1952
2174
 
1953
- /** @name FrameSystemLimitsBlockWeights (145) */
2175
+ /** @name FrameSystemLimitsBlockWeights (150) */
1954
2176
  interface FrameSystemLimitsBlockWeights extends Struct {
1955
2177
  readonly baseBlock: SpWeightsWeightV2Weight;
1956
2178
  readonly maxBlock: SpWeightsWeightV2Weight;
1957
2179
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1958
2180
  }
1959
2181
 
1960
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (146) */
2182
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (151) */
1961
2183
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1962
2184
  readonly normal: FrameSystemLimitsWeightsPerClass;
1963
2185
  readonly operational: FrameSystemLimitsWeightsPerClass;
1964
2186
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1965
2187
  }
1966
2188
 
1967
- /** @name FrameSystemLimitsWeightsPerClass (147) */
2189
+ /** @name FrameSystemLimitsWeightsPerClass (152) */
1968
2190
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1969
2191
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1970
2192
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1972,26 +2194,26 @@ declare module '@polkadot/types/lookup' {
1972
2194
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1973
2195
  }
1974
2196
 
1975
- /** @name FrameSystemLimitsBlockLength (149) */
2197
+ /** @name FrameSystemLimitsBlockLength (154) */
1976
2198
  interface FrameSystemLimitsBlockLength extends Struct {
1977
2199
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1978
2200
  readonly maxHeaderSize: Option<u32>;
1979
2201
  }
1980
2202
 
1981
- /** @name FrameSupportDispatchPerDispatchClassU32 (150) */
2203
+ /** @name FrameSupportDispatchPerDispatchClassU32 (155) */
1982
2204
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1983
2205
  readonly normal: u32;
1984
2206
  readonly operational: u32;
1985
2207
  readonly mandatory: u32;
1986
2208
  }
1987
2209
 
1988
- /** @name SpWeightsRuntimeDbWeight (152) */
2210
+ /** @name SpWeightsRuntimeDbWeight (157) */
1989
2211
  interface SpWeightsRuntimeDbWeight extends Struct {
1990
2212
  readonly read: u64;
1991
2213
  readonly write: u64;
1992
2214
  }
1993
2215
 
1994
- /** @name SpVersionRuntimeVersion (153) */
2216
+ /** @name SpVersionRuntimeVersion (158) */
1995
2217
  interface SpVersionRuntimeVersion extends Struct {
1996
2218
  readonly specName: Text;
1997
2219
  readonly implName: Text;
@@ -2003,7 +2225,7 @@ declare module '@polkadot/types/lookup' {
2003
2225
  readonly systemVersion: u8;
2004
2226
  }
2005
2227
 
2006
- /** @name FrameSystemError (158) */
2228
+ /** @name FrameSystemError (163) */
2007
2229
  interface FrameSystemError extends Enum {
2008
2230
  readonly isInvalidSpecName: boolean;
2009
2231
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2026,7 +2248,7 @@ declare module '@polkadot/types/lookup' {
2026
2248
  | 'Unauthorized';
2027
2249
  }
2028
2250
 
2029
- /** @name ArgonPrimitivesDigestsDigestset (159) */
2251
+ /** @name ArgonPrimitivesDigestsDigestset (164) */
2030
2252
  interface ArgonPrimitivesDigestsDigestset extends Struct {
2031
2253
  readonly author: AccountId32;
2032
2254
  readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
@@ -2037,18 +2259,18 @@ declare module '@polkadot/types/lookup' {
2037
2259
  readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
2038
2260
  }
2039
2261
 
2040
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (160) */
2262
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (165) */
2041
2263
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2042
2264
  readonly votingPower: Compact<u128>;
2043
2265
  readonly votesCount: Compact<u32>;
2044
2266
  }
2045
2267
 
2046
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (162) */
2268
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (167) */
2047
2269
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2048
2270
  readonly parentVotingKey: Option<H256>;
2049
2271
  }
2050
2272
 
2051
- /** @name ArgonPrimitivesForkPower (165) */
2273
+ /** @name ArgonPrimitivesForkPower (170) */
2052
2274
  interface ArgonPrimitivesForkPower extends Struct {
2053
2275
  readonly isLatestVote: bool;
2054
2276
  readonly notebooks: Compact<u64>;
@@ -2059,19 +2281,19 @@ declare module '@polkadot/types/lookup' {
2059
2281
  readonly minerNonceScore: Option<U256>;
2060
2282
  }
2061
2283
 
2062
- /** @name ArgonPrimitivesDigestsFrameInfo (170) */
2284
+ /** @name ArgonPrimitivesDigestsFrameInfo (175) */
2063
2285
  interface ArgonPrimitivesDigestsFrameInfo extends Struct {
2064
2286
  readonly frameId: Compact<u64>;
2065
2287
  readonly frameRewardTicksRemaining: Compact<u32>;
2066
2288
  readonly isNewFrame: bool;
2067
2289
  }
2068
2290
 
2069
- /** @name ArgonPrimitivesDigestsNotebookDigest (172) */
2291
+ /** @name ArgonPrimitivesDigestsNotebookDigest (177) */
2070
2292
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2071
2293
  readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
2072
2294
  }
2073
2295
 
2074
- /** @name ArgonPrimitivesNotebookNotebookAuditResult (174) */
2296
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (179) */
2075
2297
  interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
2076
2298
  readonly notaryId: Compact<u32>;
2077
2299
  readonly notebookNumber: Compact<u32>;
@@ -2079,7 +2301,7 @@ declare module '@polkadot/types/lookup' {
2079
2301
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2080
2302
  }
2081
2303
 
2082
- /** @name PalletDigestsError (177) */
2304
+ /** @name PalletDigestsError (182) */
2083
2305
  interface PalletDigestsError extends Enum {
2084
2306
  readonly isDuplicateBlockVoteDigest: boolean;
2085
2307
  readonly isDuplicateAuthorDigest: boolean;
@@ -2110,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
2110
2332
  | 'DuplicateFrameInfoDigest';
2111
2333
  }
2112
2334
 
2113
- /** @name PalletTimestampCall (178) */
2335
+ /** @name PalletTimestampCall (183) */
2114
2336
  interface PalletTimestampCall extends Enum {
2115
2337
  readonly isSet: boolean;
2116
2338
  readonly asSet: {
@@ -2119,7 +2341,7 @@ declare module '@polkadot/types/lookup' {
2119
2341
  readonly type: 'Set';
2120
2342
  }
2121
2343
 
2122
- /** @name PalletMultisigMultisig (180) */
2344
+ /** @name PalletMultisigMultisig (185) */
2123
2345
  interface PalletMultisigMultisig extends Struct {
2124
2346
  readonly when: PalletMultisigTimepoint;
2125
2347
  readonly deposit: u128;
@@ -2127,7 +2349,7 @@ declare module '@polkadot/types/lookup' {
2127
2349
  readonly approvals: Vec<AccountId32>;
2128
2350
  }
2129
2351
 
2130
- /** @name PalletMultisigCall (183) */
2352
+ /** @name PalletMultisigCall (188) */
2131
2353
  interface PalletMultisigCall extends Enum {
2132
2354
  readonly isAsMultiThreshold1: boolean;
2133
2355
  readonly asAsMultiThreshold1: {
@@ -2171,7 +2393,7 @@ declare module '@polkadot/types/lookup' {
2171
2393
  | 'PokeDeposit';
2172
2394
  }
2173
2395
 
2174
- /** @name PalletProxyCall (185) */
2396
+ /** @name PalletProxyCall (190) */
2175
2397
  interface PalletProxyCall extends Enum {
2176
2398
  readonly isProxy: boolean;
2177
2399
  readonly asProxy: {
@@ -2243,10 +2465,10 @@ declare module '@polkadot/types/lookup' {
2243
2465
  | 'PokeDeposit';
2244
2466
  }
2245
2467
 
2246
- /** @name PalletTicksCall (189) */
2468
+ /** @name PalletTicksCall (194) */
2247
2469
  type PalletTicksCall = Null;
2248
2470
 
2249
- /** @name PalletMiningSlotCall (190) */
2471
+ /** @name PalletMiningSlotCall (195) */
2250
2472
  interface PalletMiningSlotCall extends Enum {
2251
2473
  readonly isBid: boolean;
2252
2474
  readonly asBid: {
@@ -2262,7 +2484,7 @@ declare module '@polkadot/types/lookup' {
2262
2484
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
2263
2485
  }
2264
2486
 
2265
- /** @name PalletBitcoinUtxosCall (191) */
2487
+ /** @name PalletBitcoinUtxosCall (196) */
2266
2488
  interface PalletBitcoinUtxosCall extends Enum {
2267
2489
  readonly isSync: boolean;
2268
2490
  readonly asSync: {
@@ -2295,21 +2517,21 @@ declare module '@polkadot/types/lookup' {
2295
2517
  | 'RejectUtxoCandidate';
2296
2518
  }
2297
2519
 
2298
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (192) */
2520
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (197) */
2299
2521
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
2300
2522
  readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
2301
2523
  readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
2302
2524
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
2303
2525
  }
2304
2526
 
2305
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (194) */
2527
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (199) */
2306
2528
  interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
2307
2529
  readonly utxoId: Compact<u64>;
2308
2530
  readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
2309
2531
  readonly bitcoinHeight: Compact<u64>;
2310
2532
  }
2311
2533
 
2312
- /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (197) */
2534
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (202) */
2313
2535
  interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
2314
2536
  readonly utxoId: Compact<u64>;
2315
2537
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
@@ -2318,13 +2540,13 @@ declare module '@polkadot/types/lookup' {
2318
2540
  readonly bitcoinHeight: Compact<u64>;
2319
2541
  }
2320
2542
 
2321
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (198) */
2543
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (203) */
2322
2544
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
2323
2545
  readonly blockHeight: Compact<u64>;
2324
2546
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
2325
2547
  }
2326
2548
 
2327
- /** @name PalletVaultsCall (199) */
2549
+ /** @name PalletVaultsCall (204) */
2328
2550
  interface PalletVaultsCall extends Enum {
2329
2551
  readonly isCreate: boolean;
2330
2552
  readonly asCreate: {
@@ -2362,6 +2584,10 @@ declare module '@polkadot/types/lookup' {
2362
2584
  readonly asSetName: {
2363
2585
  readonly name: Option<Bytes>;
2364
2586
  } & Struct;
2587
+ readonly isSetCommittedArgonots: boolean;
2588
+ readonly asSetCommittedArgonots: {
2589
+ readonly amount: Compact<u128>;
2590
+ } & Struct;
2365
2591
  readonly type:
2366
2592
  | 'Create'
2367
2593
  | 'ModifyFunding'
@@ -2370,10 +2596,11 @@ declare module '@polkadot/types/lookup' {
2370
2596
  | 'ReplaceBitcoinXpub'
2371
2597
  | 'Collect'
2372
2598
  | 'SetBitcoinLockDelegate'
2373
- | 'SetName';
2599
+ | 'SetName'
2600
+ | 'SetCommittedArgonots';
2374
2601
  }
2375
2602
 
2376
- /** @name PalletVaultsVaultConfig (200) */
2603
+ /** @name PalletVaultsVaultConfig (205) */
2377
2604
  interface PalletVaultsVaultConfig extends Struct {
2378
2605
  readonly terms: ArgonPrimitivesVaultVaultTerms;
2379
2606
  readonly name: Option<Bytes>;
@@ -2382,17 +2609,17 @@ declare module '@polkadot/types/lookup' {
2382
2609
  readonly securitizationRatio: Compact<u128>;
2383
2610
  }
2384
2611
 
2385
- /** @name ArgonPrimitivesVaultVaultTerms (201) */
2612
+ /** @name ArgonPrimitivesVaultVaultTerms (206) */
2386
2613
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
2387
2614
  readonly bitcoinAnnualPercentRate: Compact<u128>;
2388
2615
  readonly bitcoinBaseFee: Compact<u128>;
2389
2616
  readonly treasuryProfitSharing: Compact<Permill>;
2390
2617
  }
2391
2618
 
2392
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (207) */
2619
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (212) */
2393
2620
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2394
2621
 
2395
- /** @name PalletBitcoinLocksCall (209) */
2622
+ /** @name PalletBitcoinLocksCall (214) */
2396
2623
  interface PalletBitcoinLocksCall extends Enum {
2397
2624
  readonly isInitialize: boolean;
2398
2625
  readonly asInitialize: {
@@ -2458,19 +2685,19 @@ declare module '@polkadot/types/lookup' {
2458
2685
  | 'IncreaseSecuritization';
2459
2686
  }
2460
2687
 
2461
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (210) */
2688
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (215) */
2462
2689
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2463
2690
 
2464
- /** @name PalletBitcoinLocksLockOptions (213) */
2691
+ /** @name PalletBitcoinLocksLockOptions (218) */
2465
2692
  interface PalletBitcoinLocksLockOptions extends Enum {
2466
2693
  readonly isV1: boolean;
2467
2694
  readonly asV1: {
2468
- readonly microgonsPerBtc: Option<u128>;
2695
+ readonly microgonsAtTargetPerBtc: Option<u128>;
2469
2696
  } & Struct;
2470
2697
  readonly type: 'V1';
2471
2698
  }
2472
2699
 
2473
- /** @name PalletNotariesCall (216) */
2700
+ /** @name PalletNotariesCall (221) */
2474
2701
  interface PalletNotariesCall extends Enum {
2475
2702
  readonly isPropose: boolean;
2476
2703
  readonly asPropose: {
@@ -2489,7 +2716,7 @@ declare module '@polkadot/types/lookup' {
2489
2716
  readonly type: 'Propose' | 'Activate' | 'Update';
2490
2717
  }
2491
2718
 
2492
- /** @name PalletNotebookCall (217) */
2719
+ /** @name PalletNotebookCall (222) */
2493
2720
  interface PalletNotebookCall extends Enum {
2494
2721
  readonly isSubmit: boolean;
2495
2722
  readonly asSubmit: {
@@ -2502,13 +2729,13 @@ declare module '@polkadot/types/lookup' {
2502
2729
  readonly type: 'Submit' | 'Unlock';
2503
2730
  }
2504
2731
 
2505
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (219) */
2732
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (224) */
2506
2733
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2507
2734
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2508
2735
  readonly signature: U8aFixed;
2509
2736
  }
2510
2737
 
2511
- /** @name ArgonPrimitivesNotebookNotebookHeader (220) */
2738
+ /** @name ArgonPrimitivesNotebookNotebookHeader (225) */
2512
2739
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2513
2740
  readonly version: Compact<u16>;
2514
2741
  readonly notebookNumber: Compact<u32>;
@@ -2527,7 +2754,7 @@ declare module '@polkadot/types/lookup' {
2527
2754
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2528
2755
  }
2529
2756
 
2530
- /** @name ArgonPrimitivesNotebookChainTransfer (223) */
2757
+ /** @name ArgonPrimitivesNotebookChainTransfer (228) */
2531
2758
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2532
2759
  readonly isToMainchain: boolean;
2533
2760
  readonly asToMainchain: {
@@ -2541,13 +2768,13 @@ declare module '@polkadot/types/lookup' {
2541
2768
  readonly type: 'ToMainchain' | 'ToLocalchain';
2542
2769
  }
2543
2770
 
2544
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (226) */
2771
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (231) */
2545
2772
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2546
2773
  readonly notebookNumber: Compact<u32>;
2547
2774
  readonly accountUid: Compact<u32>;
2548
2775
  }
2549
2776
 
2550
- /** @name PalletLocalchainTransferCall (233) */
2777
+ /** @name PalletLocalchainTransferCall (238) */
2551
2778
  interface PalletLocalchainTransferCall extends Enum {
2552
2779
  readonly isSendToLocalchain: boolean;
2553
2780
  readonly asSendToLocalchain: {
@@ -2557,7 +2784,7 @@ declare module '@polkadot/types/lookup' {
2557
2784
  readonly type: 'SendToLocalchain';
2558
2785
  }
2559
2786
 
2560
- /** @name PalletBlockSealSpecCall (234) */
2787
+ /** @name PalletBlockSealSpecCall (239) */
2561
2788
  interface PalletBlockSealSpecCall extends Enum {
2562
2789
  readonly isConfigure: boolean;
2563
2790
  readonly asConfigure: {
@@ -2567,7 +2794,7 @@ declare module '@polkadot/types/lookup' {
2567
2794
  readonly type: 'Configure';
2568
2795
  }
2569
2796
 
2570
- /** @name PalletDomainsCall (235) */
2797
+ /** @name PalletDomainsCall (240) */
2571
2798
  interface PalletDomainsCall extends Enum {
2572
2799
  readonly isSetZoneRecord: boolean;
2573
2800
  readonly asSetZoneRecord: {
@@ -2577,7 +2804,7 @@ declare module '@polkadot/types/lookup' {
2577
2804
  readonly type: 'SetZoneRecord';
2578
2805
  }
2579
2806
 
2580
- /** @name PalletPriceIndexCall (236) */
2807
+ /** @name PalletPriceIndexCall (241) */
2581
2808
  interface PalletPriceIndexCall extends Enum {
2582
2809
  readonly isSubmit: boolean;
2583
2810
  readonly asSubmit: {
@@ -2590,7 +2817,7 @@ declare module '@polkadot/types/lookup' {
2590
2817
  readonly type: 'Submit' | 'SetOperator';
2591
2818
  }
2592
2819
 
2593
- /** @name PalletPriceIndexPriceIndex (237) */
2820
+ /** @name PalletPriceIndexPriceIndex (242) */
2594
2821
  interface PalletPriceIndexPriceIndex extends Struct {
2595
2822
  readonly btcUsdPrice: Compact<u128>;
2596
2823
  readonly argonotUsdPrice: u128;
@@ -2600,7 +2827,7 @@ declare module '@polkadot/types/lookup' {
2600
2827
  readonly tick: Compact<u64>;
2601
2828
  }
2602
2829
 
2603
- /** @name PalletGrandpaCall (238) */
2830
+ /** @name PalletGrandpaCall (243) */
2604
2831
  interface PalletGrandpaCall extends Enum {
2605
2832
  readonly isReportEquivocation: boolean;
2606
2833
  readonly asReportEquivocation: {
@@ -2620,13 +2847,13 @@ declare module '@polkadot/types/lookup' {
2620
2847
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2621
2848
  }
2622
2849
 
2623
- /** @name SpConsensusGrandpaEquivocationProof (239) */
2850
+ /** @name SpConsensusGrandpaEquivocationProof (244) */
2624
2851
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2625
2852
  readonly setId: u64;
2626
2853
  readonly equivocation: SpConsensusGrandpaEquivocation;
2627
2854
  }
2628
2855
 
2629
- /** @name SpConsensusGrandpaEquivocation (240) */
2856
+ /** @name SpConsensusGrandpaEquivocation (245) */
2630
2857
  interface SpConsensusGrandpaEquivocation extends Enum {
2631
2858
  readonly isPrevote: boolean;
2632
2859
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2635,7 +2862,7 @@ declare module '@polkadot/types/lookup' {
2635
2862
  readonly type: 'Prevote' | 'Precommit';
2636
2863
  }
2637
2864
 
2638
- /** @name FinalityGrandpaEquivocationPrevote (241) */
2865
+ /** @name FinalityGrandpaEquivocationPrevote (246) */
2639
2866
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2640
2867
  readonly roundNumber: u64;
2641
2868
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2643,16 +2870,16 @@ declare module '@polkadot/types/lookup' {
2643
2870
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2644
2871
  }
2645
2872
 
2646
- /** @name FinalityGrandpaPrevote (242) */
2873
+ /** @name FinalityGrandpaPrevote (247) */
2647
2874
  interface FinalityGrandpaPrevote extends Struct {
2648
2875
  readonly targetHash: H256;
2649
2876
  readonly targetNumber: u32;
2650
2877
  }
2651
2878
 
2652
- /** @name SpConsensusGrandpaAppSignature (243) */
2879
+ /** @name SpConsensusGrandpaAppSignature (248) */
2653
2880
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2654
2881
 
2655
- /** @name FinalityGrandpaEquivocationPrecommit (245) */
2882
+ /** @name FinalityGrandpaEquivocationPrecommit (250) */
2656
2883
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2657
2884
  readonly roundNumber: u64;
2658
2885
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2660,16 +2887,16 @@ declare module '@polkadot/types/lookup' {
2660
2887
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2661
2888
  }
2662
2889
 
2663
- /** @name FinalityGrandpaPrecommit (246) */
2890
+ /** @name FinalityGrandpaPrecommit (251) */
2664
2891
  interface FinalityGrandpaPrecommit extends Struct {
2665
2892
  readonly targetHash: H256;
2666
2893
  readonly targetNumber: u32;
2667
2894
  }
2668
2895
 
2669
- /** @name SpCoreVoid (248) */
2896
+ /** @name SpCoreVoid (253) */
2670
2897
  type SpCoreVoid = Null;
2671
2898
 
2672
- /** @name PalletBlockSealCall (249) */
2899
+ /** @name PalletBlockSealCall (254) */
2673
2900
  interface PalletBlockSealCall extends Enum {
2674
2901
  readonly isApply: boolean;
2675
2902
  readonly asApply: {
@@ -2678,7 +2905,7 @@ declare module '@polkadot/types/lookup' {
2678
2905
  readonly type: 'Apply';
2679
2906
  }
2680
2907
 
2681
- /** @name ArgonPrimitivesInherentsBlockSealInherent (250) */
2908
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (255) */
2682
2909
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
2683
2910
  readonly isVote: boolean;
2684
2911
  readonly asVote: {
@@ -2693,14 +2920,14 @@ declare module '@polkadot/types/lookup' {
2693
2920
  readonly type: 'Vote' | 'Compute';
2694
2921
  }
2695
2922
 
2696
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (251) */
2923
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (256) */
2697
2924
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
2698
2925
  readonly proof: Vec<H256>;
2699
2926
  readonly numberOfLeaves: Compact<u32>;
2700
2927
  readonly leafIndex: Compact<u32>;
2701
2928
  }
2702
2929
 
2703
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (253) */
2930
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (258) */
2704
2931
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
2705
2932
  readonly accountId: AccountId32;
2706
2933
  readonly blockHash: H256;
@@ -2711,7 +2938,7 @@ declare module '@polkadot/types/lookup' {
2711
2938
  readonly tick: Compact<u64>;
2712
2939
  }
2713
2940
 
2714
- /** @name SpRuntimeMultiSignature (254) */
2941
+ /** @name SpRuntimeMultiSignature (259) */
2715
2942
  interface SpRuntimeMultiSignature extends Enum {
2716
2943
  readonly isEd25519: boolean;
2717
2944
  readonly asEd25519: U8aFixed;
@@ -2724,7 +2951,7 @@ declare module '@polkadot/types/lookup' {
2724
2951
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2725
2952
  }
2726
2953
 
2727
- /** @name PalletBlockRewardsCall (256) */
2954
+ /** @name PalletBlockRewardsCall (261) */
2728
2955
  interface PalletBlockRewardsCall extends Enum {
2729
2956
  readonly isSetBlockRewardsPaused: boolean;
2730
2957
  readonly asSetBlockRewardsPaused: {
@@ -2733,10 +2960,10 @@ declare module '@polkadot/types/lookup' {
2733
2960
  readonly type: 'SetBlockRewardsPaused';
2734
2961
  }
2735
2962
 
2736
- /** @name PalletMintCall (257) */
2963
+ /** @name PalletMintCall (262) */
2737
2964
  type PalletMintCall = Null;
2738
2965
 
2739
- /** @name PalletBalancesCall (258) */
2966
+ /** @name PalletBalancesCall (263) */
2740
2967
  interface PalletBalancesCall extends Enum {
2741
2968
  readonly isTransferAllowDeath: boolean;
2742
2969
  readonly asTransferAllowDeath: {
@@ -2795,14 +3022,14 @@ declare module '@polkadot/types/lookup' {
2795
3022
  | 'Burn';
2796
3023
  }
2797
3024
 
2798
- /** @name PalletBalancesAdjustmentDirection (259) */
3025
+ /** @name PalletBalancesAdjustmentDirection (264) */
2799
3026
  interface PalletBalancesAdjustmentDirection extends Enum {
2800
3027
  readonly isIncrease: boolean;
2801
3028
  readonly isDecrease: boolean;
2802
3029
  readonly type: 'Increase' | 'Decrease';
2803
3030
  }
2804
3031
 
2805
- /** @name PalletTxPauseCall (261) */
3032
+ /** @name PalletTxPauseCall (266) */
2806
3033
  interface PalletTxPauseCall extends Enum {
2807
3034
  readonly isPause: boolean;
2808
3035
  readonly asPause: {
@@ -2815,7 +3042,7 @@ declare module '@polkadot/types/lookup' {
2815
3042
  readonly type: 'Pause' | 'Unpause';
2816
3043
  }
2817
3044
 
2818
- /** @name PalletUtilityCall (262) */
3045
+ /** @name PalletUtilityCall (267) */
2819
3046
  interface PalletUtilityCall extends Enum {
2820
3047
  readonly isBatch: boolean;
2821
3048
  readonly asBatch: {
@@ -2865,7 +3092,7 @@ declare module '@polkadot/types/lookup' {
2865
3092
  | 'DispatchAsFallible';
2866
3093
  }
2867
3094
 
2868
- /** @name PalletSudoCall (264) */
3095
+ /** @name PalletSudoCall (269) */
2869
3096
  interface PalletSudoCall extends Enum {
2870
3097
  readonly isSudo: boolean;
2871
3098
  readonly asSudo: {
@@ -2889,7 +3116,7 @@ declare module '@polkadot/types/lookup' {
2889
3116
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
2890
3117
  }
2891
3118
 
2892
- /** @name PalletTreasuryCall (265) */
3119
+ /** @name PalletTreasuryCall (270) */
2893
3120
  interface PalletTreasuryCall extends Enum {
2894
3121
  readonly isBuyBonds: boolean;
2895
3122
  readonly asBuyBonds: {
@@ -2903,7 +3130,7 @@ declare module '@polkadot/types/lookup' {
2903
3130
  readonly type: 'BuyBonds' | 'LiquidateBondLot';
2904
3131
  }
2905
3132
 
2906
- /** @name PalletOperationalAccountsCall (266) */
3133
+ /** @name PalletOperationalAccountsCall (271) */
2907
3134
  interface PalletOperationalAccountsCall extends Enum {
2908
3135
  readonly isRegister: boolean;
2909
3136
  readonly asRegister: {
@@ -2939,14 +3166,14 @@ declare module '@polkadot/types/lookup' {
2939
3166
  | 'ClaimRewards';
2940
3167
  }
2941
3168
 
2942
- /** @name PalletOperationalAccountsRegistration (267) */
3169
+ /** @name PalletOperationalAccountsRegistration (272) */
2943
3170
  interface PalletOperationalAccountsRegistration extends Enum {
2944
3171
  readonly isV1: boolean;
2945
3172
  readonly asV1: PalletOperationalAccountsRegistrationV1;
2946
3173
  readonly type: 'V1';
2947
3174
  }
2948
3175
 
2949
- /** @name PalletOperationalAccountsRegistrationV1 (268) */
3176
+ /** @name PalletOperationalAccountsRegistrationV1 (273) */
2950
3177
  interface PalletOperationalAccountsRegistrationV1 extends Struct {
2951
3178
  readonly operationalAccount: AccountId32;
2952
3179
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
@@ -2960,15 +3187,15 @@ declare module '@polkadot/types/lookup' {
2960
3187
  readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
2961
3188
  }
2962
3189
 
2963
- /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (269) */
3190
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (274) */
2964
3191
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
2965
3192
 
2966
- /** @name PalletOperationalAccountsAccountOwnershipProof (270) */
3193
+ /** @name PalletOperationalAccountsAccountOwnershipProof (275) */
2967
3194
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
2968
3195
  readonly signature: SpRuntimeMultiSignature;
2969
3196
  }
2970
3197
 
2971
- /** @name PalletOperationalAccountsReferralProof (272) */
3198
+ /** @name PalletOperationalAccountsReferralProof (277) */
2972
3199
  interface PalletOperationalAccountsReferralProof extends Struct {
2973
3200
  readonly referralCode: U8aFixed;
2974
3201
  readonly referralSignature: U8aFixed;
@@ -2977,7 +3204,7 @@ declare module '@polkadot/types/lookup' {
2977
3204
  readonly sponsorSignature: SpRuntimeMultiSignature;
2978
3205
  }
2979
3206
 
2980
- /** @name PalletOperationalAccountsOperationalProgressPatch (273) */
3207
+ /** @name PalletOperationalAccountsOperationalProgressPatch (278) */
2981
3208
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
2982
3209
  readonly hasUniswapTransfer: Option<bool>;
2983
3210
  readonly vaultCreated: Option<bool>;
@@ -2986,7 +3213,7 @@ declare module '@polkadot/types/lookup' {
2986
3213
  readonly observedMiningSeatTotal: Option<u32>;
2987
3214
  }
2988
3215
 
2989
- /** @name PalletEthereumVerifierCall (275) */
3216
+ /** @name PalletEthereumVerifierCall (280) */
2990
3217
  interface PalletEthereumVerifierCall extends Enum {
2991
3218
  readonly isForceCheckpoint: boolean;
2992
3219
  readonly asForceCheckpoint: {
@@ -2997,30 +3224,23 @@ declare module '@polkadot/types/lookup' {
2997
3224
  readonly asSubmit: {
2998
3225
  readonly update: PalletEthereumVerifierUpdate;
2999
3226
  } & Struct;
3000
- readonly isImportExecutionHeaderAnchor: boolean;
3001
- readonly asImportExecutionHeaderAnchor: {
3002
- readonly executionProof: PalletEthereumVerifierExecutionProof;
3003
- } & Struct;
3004
3227
  readonly isSetOperatingMode: boolean;
3005
3228
  readonly asSetOperatingMode: {
3006
3229
  readonly mode: PalletEthereumVerifierBasicOperatingMode;
3007
3230
  } & Struct;
3008
- readonly type:
3009
- | 'ForceCheckpoint'
3010
- | 'Submit'
3011
- | 'ImportExecutionHeaderAnchor'
3012
- | 'SetOperatingMode';
3231
+ readonly type: 'ForceCheckpoint' | 'Submit' | 'SetOperatingMode';
3013
3232
  }
3014
3233
 
3015
- /** @name PalletEthereumVerifierCheckpointUpdate (276) */
3234
+ /** @name PalletEthereumVerifierCheckpointUpdate (281) */
3016
3235
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3017
3236
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3018
- readonly currentSyncCommittee: SnowbridgeBeaconPrimitivesSyncCommittee;
3237
+ readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
3019
3238
  readonly currentSyncCommitteeBranch: Vec<H256>;
3020
3239
  readonly validatorsRoot: H256;
3240
+ readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3021
3241
  }
3022
3242
 
3023
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (277) */
3243
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (282) */
3024
3244
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3025
3245
  readonly slot: u64;
3026
3246
  readonly proposerIndex: u64;
@@ -3029,65 +3249,22 @@ declare module '@polkadot/types/lookup' {
3029
3249
  readonly bodyRoot: H256;
3030
3250
  }
3031
3251
 
3032
- /** @name SnowbridgeBeaconPrimitivesSyncCommittee (278) */
3033
- interface SnowbridgeBeaconPrimitivesSyncCommittee extends Struct {
3252
+ /** @name PalletEthereumVerifierSyncCommittee (283) */
3253
+ interface PalletEthereumVerifierSyncCommittee extends Struct {
3034
3254
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3035
3255
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3036
3256
  }
3037
3257
 
3038
- /** @name SnowbridgeBeaconPrimitivesPublicKey (280) */
3258
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (285) */
3039
3259
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3040
3260
 
3041
- /** @name PalletEthereumVerifierForkVersions (282) */
3042
- interface PalletEthereumVerifierForkVersions extends Struct {
3043
- readonly genesis: PalletEthereumVerifierFork;
3044
- readonly altair: PalletEthereumVerifierFork;
3045
- readonly bellatrix: PalletEthereumVerifierFork;
3046
- readonly capella: PalletEthereumVerifierFork;
3047
- readonly deneb: PalletEthereumVerifierFork;
3048
- readonly electra: PalletEthereumVerifierFork;
3049
- readonly fulu: PalletEthereumVerifierFork;
3050
- }
3051
-
3052
- /** @name PalletEthereumVerifierFork (283) */
3053
- interface PalletEthereumVerifierFork extends Struct {
3054
- readonly version: U8aFixed;
3055
- readonly epoch: Compact<u64>;
3056
- }
3057
-
3058
- /** @name PalletEthereumVerifierUpdate (284) */
3059
- interface PalletEthereumVerifierUpdate extends Struct {
3060
- readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3061
- readonly syncAggregate: SnowbridgeBeaconPrimitivesSyncAggregate;
3062
- readonly signatureSlot: Compact<u64>;
3063
- readonly nextSyncCommitteeUpdate: Option<PalletEthereumVerifierNextSyncCommitteeUpdate>;
3064
- readonly finalizedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3065
- readonly finalityBranch: Vec<H256>;
3066
- }
3067
-
3068
- /** @name SnowbridgeBeaconPrimitivesSyncAggregate (285) */
3069
- interface SnowbridgeBeaconPrimitivesSyncAggregate extends Struct {
3070
- readonly syncCommitteeBits: U8aFixed;
3071
- readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3072
- }
3073
-
3074
- /** @name SnowbridgeBeaconPrimitivesSignature (286) */
3075
- interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3076
-
3077
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (289) */
3078
- interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3079
- readonly nextSyncCommittee: SnowbridgeBeaconPrimitivesSyncCommittee;
3080
- readonly nextSyncCommitteeBranch: Vec<H256>;
3081
- }
3082
-
3083
- /** @name PalletEthereumVerifierExecutionProof (290) */
3084
- interface PalletEthereumVerifierExecutionProof extends Struct {
3085
- readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3261
+ /** @name PalletEthereumVerifierExecutionHeaderProof (289) */
3262
+ interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3086
3263
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3087
3264
  readonly executionBranch: Vec<H256>;
3088
3265
  }
3089
3266
 
3090
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
3267
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (290) */
3091
3268
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3092
3269
  readonly isCapella: boolean;
3093
3270
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3096,7 +3273,7 @@ declare module '@polkadot/types/lookup' {
3096
3273
  readonly type: 'Capella' | 'Deneb';
3097
3274
  }
3098
3275
 
3099
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
3276
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (291) */
3100
3277
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3101
3278
  readonly parentHash: H256;
3102
3279
  readonly feeRecipient: H160;
@@ -3115,7 +3292,7 @@ declare module '@polkadot/types/lookup' {
3115
3292
  readonly withdrawalsRoot: H256;
3116
3293
  }
3117
3294
 
3118
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
3295
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (292) */
3119
3296
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3120
3297
  readonly parentHash: H256;
3121
3298
  readonly feeRecipient: H160;
@@ -3136,74 +3313,210 @@ declare module '@polkadot/types/lookup' {
3136
3313
  readonly excessBlobGas: u64;
3137
3314
  }
3138
3315
 
3139
- /** @name PalletCrosschainTransferCall (294) */
3316
+ /** @name PalletEthereumVerifierForkVersions (293) */
3317
+ interface PalletEthereumVerifierForkVersions extends Struct {
3318
+ readonly genesis: PalletEthereumVerifierFork;
3319
+ readonly altair: PalletEthereumVerifierFork;
3320
+ readonly bellatrix: PalletEthereumVerifierFork;
3321
+ readonly capella: PalletEthereumVerifierFork;
3322
+ readonly deneb: PalletEthereumVerifierFork;
3323
+ readonly electra: PalletEthereumVerifierFork;
3324
+ readonly fulu: PalletEthereumVerifierFork;
3325
+ }
3326
+
3327
+ /** @name PalletEthereumVerifierFork (294) */
3328
+ interface PalletEthereumVerifierFork extends Struct {
3329
+ readonly version: U8aFixed;
3330
+ readonly epoch: Compact<u64>;
3331
+ }
3332
+
3333
+ /** @name PalletEthereumVerifierUpdate (295) */
3334
+ interface PalletEthereumVerifierUpdate extends Struct {
3335
+ readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3336
+ readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
3337
+ readonly signatureSlot: Compact<u64>;
3338
+ readonly nextSyncCommitteeUpdate: Option<PalletEthereumVerifierNextSyncCommitteeUpdate>;
3339
+ readonly finalizedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3340
+ readonly finalityBranch: Vec<H256>;
3341
+ readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3342
+ }
3343
+
3344
+ /** @name PalletEthereumVerifierSyncAggregate (296) */
3345
+ interface PalletEthereumVerifierSyncAggregate extends Struct {
3346
+ readonly syncCommitteeBits: Bytes;
3347
+ readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3348
+ }
3349
+
3350
+ /** @name SnowbridgeBeaconPrimitivesSignature (298) */
3351
+ interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3352
+
3353
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (301) */
3354
+ interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3355
+ readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3356
+ readonly nextSyncCommitteeBranch: Vec<H256>;
3357
+ }
3358
+
3359
+ /** @name PalletCrosschainTransferCall (302) */
3140
3360
  interface PalletCrosschainTransferCall extends Enum {
3141
3361
  readonly isSetChainConfig: boolean;
3142
3362
  readonly asSetChainConfig: {
3363
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
3143
3364
  readonly config: PalletCrosschainTransferChainConfig;
3144
3365
  } & Struct;
3145
- readonly isProveTransfer: boolean;
3146
- readonly asProveTransfer: {
3147
- readonly proof: PalletCrosschainTransferTransferProof;
3366
+ readonly isForceSetGlobalIssuanceCouncil: boolean;
3367
+ readonly asForceSetGlobalIssuanceCouncil: {
3368
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3369
+ readonly afterNonce: Compact<u64>;
3370
+ readonly memberAccountIds: Vec<AccountId32>;
3148
3371
  } & Struct;
3149
- readonly type: 'SetChainConfig' | 'ProveTransfer';
3150
- }
3151
-
3152
- /** @name PalletCrosschainTransferChainConfig (295) */
3372
+ readonly isPauseGateway: boolean;
3373
+ readonly asPauseGateway: {
3374
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
3375
+ } & Struct;
3376
+ readonly isUnpauseGateway: boolean;
3377
+ readonly asUnpauseGateway: {
3378
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
3379
+ } & Struct;
3380
+ readonly isSetMinimumMintingAuthorityValue: boolean;
3381
+ readonly asSetMinimumMintingAuthorityValue: {
3382
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3383
+ readonly minimumValue: Compact<u128>;
3384
+ } & Struct;
3385
+ readonly isSetMintingAuthorityActivationRepaymentPricing: boolean;
3386
+ readonly asSetMintingAuthorityActivationRepaymentPricing: {
3387
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3388
+ readonly pricing: PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing;
3389
+ } & Struct;
3390
+ readonly isRegisterCouncilSigner: boolean;
3391
+ readonly asRegisterCouncilSigner: {
3392
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3393
+ readonly signingKey: H160;
3394
+ readonly signature: U8aFixed;
3395
+ } & Struct;
3396
+ readonly isApproveQueueEntries: boolean;
3397
+ readonly asApproveQueueEntries: {
3398
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3399
+ readonly signatures: Vec<U8aFixed>;
3400
+ } & Struct;
3401
+ readonly isProveGatewayActivity: boolean;
3402
+ readonly asProveGatewayActivity: {
3403
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
3404
+ readonly previousGatewayActivityNonce: Compact<u64>;
3405
+ readonly proofBatch: ArgonPrimitivesEthereumEthereumReceiptLogProofBatch;
3406
+ } & Struct;
3407
+ readonly isRegisterMintingAuthority: boolean;
3408
+ readonly asRegisterMintingAuthority: {
3409
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3410
+ readonly destinationSigningKey: H160;
3411
+ readonly signature: U8aFixed;
3412
+ readonly microgonCollateral: Compact<u128>;
3413
+ readonly micronotCollateral: Compact<u128>;
3414
+ } & Struct;
3415
+ readonly isDeactivateMintingAuthority: boolean;
3416
+ readonly asDeactivateMintingAuthority: {
3417
+ readonly destinationSigningKey: H160;
3418
+ readonly signature: U8aFixed;
3419
+ } & Struct;
3420
+ readonly isTransferOut: boolean;
3421
+ readonly asTransferOut: {
3422
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
3423
+ readonly asset: PalletCrosschainTransferAssetKind;
3424
+ readonly destinationAccount: H160;
3425
+ readonly amount: Compact<u128>;
3426
+ } & Struct;
3427
+ readonly isCollateralizeTransfer: boolean;
3428
+ readonly asCollateralizeTransfer: {
3429
+ readonly transferId: H256;
3430
+ readonly signature: U8aFixed;
3431
+ readonly microgonCollateral: Compact<u128>;
3432
+ readonly micronotCollateral: Compact<u128>;
3433
+ } & Struct;
3434
+ readonly type:
3435
+ | 'SetChainConfig'
3436
+ | 'ForceSetGlobalIssuanceCouncil'
3437
+ | 'PauseGateway'
3438
+ | 'UnpauseGateway'
3439
+ | 'SetMinimumMintingAuthorityValue'
3440
+ | 'SetMintingAuthorityActivationRepaymentPricing'
3441
+ | 'RegisterCouncilSigner'
3442
+ | 'ApproveQueueEntries'
3443
+ | 'ProveGatewayActivity'
3444
+ | 'RegisterMintingAuthority'
3445
+ | 'DeactivateMintingAuthority'
3446
+ | 'TransferOut'
3447
+ | 'CollateralizeTransfer';
3448
+ }
3449
+
3450
+ /** @name PalletCrosschainTransferChainConfig (303) */
3153
3451
  interface PalletCrosschainTransferChainConfig extends Enum {
3154
- readonly isEthereum: boolean;
3155
- readonly asEthereum: {
3452
+ readonly isEvm: boolean;
3453
+ readonly asEvm: {
3454
+ readonly chainId: Compact<u64>;
3156
3455
  readonly gateway: H160;
3157
3456
  readonly argonToken: H160;
3158
3457
  readonly argonotToken: H160;
3159
- readonly previousGateway: Option<H160>;
3160
- readonly previousReleaseExpiration: Option<u64>;
3161
- } & Struct;
3162
- readonly type: 'Ethereum';
3163
- }
3164
-
3165
- /** @name PalletCrosschainTransferTransferProof (297) */
3166
- interface PalletCrosschainTransferTransferProof extends Enum {
3167
- readonly isEthereum: boolean;
3168
- readonly asEthereum: {
3169
- readonly sourceChain: PalletCrosschainTransferSourceChain;
3170
- readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3171
- readonly proof: ArgonPrimitivesEthereumEthereumProof;
3172
3458
  } & Struct;
3173
- readonly type: 'Ethereum';
3459
+ readonly type: 'Evm';
3174
3460
  }
3175
3461
 
3176
- /** @name ArgonPrimitivesEthereumEthereumLog (298) */
3177
- interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3178
- readonly address: H160;
3179
- readonly topics: Vec<H256>;
3180
- readonly data: Bytes;
3462
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (305) */
3463
+ interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3464
+ readonly activationGasCost: Compact<u128>;
3465
+ readonly signatureGasCost: Compact<u128>;
3466
+ readonly estimatedWeiPerGas: Compact<u128>;
3467
+ readonly estimatedMicrogonsPerEth: u128;
3181
3468
  }
3182
3469
 
3183
- /** @name ArgonPrimitivesEthereumEthereumProof (299) */
3184
- interface ArgonPrimitivesEthereumEthereumProof extends Struct {
3470
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (308) */
3471
+ interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3185
3472
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3186
- readonly receiptProof: ArgonPrimitivesEthereumEthereumReceiptProof;
3473
+ readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3187
3474
  }
3188
3475
 
3189
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (300) */
3476
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (309) */
3190
3477
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3191
3478
  readonly anchorBlockHash: H256;
3192
3479
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3193
3480
  }
3194
3481
 
3195
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (302) */
3482
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (311) */
3196
3483
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3197
3484
  readonly rlp: Bytes;
3198
3485
  }
3199
3486
 
3200
- /** @name ArgonPrimitivesEthereumEthereumReceiptProof (303) */
3201
- interface ArgonPrimitivesEthereumEthereumReceiptProof extends Struct {
3202
- readonly transactionIndex: Compact<u64>;
3487
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (315) */
3488
+ interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3489
+ readonly targetBlockNumber: Compact<u64>;
3490
+ readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3491
+ readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3492
+ }
3493
+
3494
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (316) */
3495
+ interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3203
3496
  readonly nodes: Vec<Bytes>;
3497
+ readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3498
+ }
3499
+
3500
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (320) */
3501
+ interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3502
+ readonly transactionIndex: Compact<u64>;
3503
+ readonly nodeIndexes: Vec<u16>;
3204
3504
  }
3205
3505
 
3206
- /** @name PalletMultisigError (305) */
3506
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (325) */
3507
+ interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3508
+ readonly transactionIndex: Compact<u64>;
3509
+ readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3510
+ }
3511
+
3512
+ /** @name ArgonPrimitivesEthereumEthereumLog (326) */
3513
+ interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3514
+ readonly address: H160;
3515
+ readonly topics: Vec<H256>;
3516
+ readonly data: Bytes;
3517
+ }
3518
+
3519
+ /** @name PalletMultisigError (332) */
3207
3520
  interface PalletMultisigError extends Enum {
3208
3521
  readonly isMinimumThreshold: boolean;
3209
3522
  readonly isAlreadyApproved: boolean;
@@ -3236,21 +3549,21 @@ declare module '@polkadot/types/lookup' {
3236
3549
  | 'AlreadyStored';
3237
3550
  }
3238
3551
 
3239
- /** @name PalletProxyProxyDefinition (308) */
3552
+ /** @name PalletProxyProxyDefinition (335) */
3240
3553
  interface PalletProxyProxyDefinition extends Struct {
3241
3554
  readonly delegate: AccountId32;
3242
3555
  readonly proxyType: ArgonRuntimeProxyType;
3243
3556
  readonly delay: u32;
3244
3557
  }
3245
3558
 
3246
- /** @name PalletProxyAnnouncement (312) */
3559
+ /** @name PalletProxyAnnouncement (339) */
3247
3560
  interface PalletProxyAnnouncement extends Struct {
3248
3561
  readonly real: AccountId32;
3249
3562
  readonly callHash: H256;
3250
3563
  readonly height: u32;
3251
3564
  }
3252
3565
 
3253
- /** @name PalletProxyError (314) */
3566
+ /** @name PalletProxyError (341) */
3254
3567
  interface PalletProxyError extends Enum {
3255
3568
  readonly isTooMany: boolean;
3256
3569
  readonly isNotFound: boolean;
@@ -3271,16 +3584,16 @@ declare module '@polkadot/types/lookup' {
3271
3584
  | 'NoSelfProxy';
3272
3585
  }
3273
3586
 
3274
- /** @name ArgonPrimitivesTickTicker (315) */
3587
+ /** @name ArgonPrimitivesTickTicker (342) */
3275
3588
  interface ArgonPrimitivesTickTicker extends Struct {
3276
3589
  readonly tickDurationMillis: Compact<u64>;
3277
3590
  readonly channelHoldExpirationTicks: Compact<u64>;
3278
3591
  }
3279
3592
 
3280
- /** @name PalletTicksError (317) */
3593
+ /** @name PalletTicksError (344) */
3281
3594
  type PalletTicksError = Null;
3282
3595
 
3283
- /** @name PalletMiningSlotMinerNonceScoring (320) */
3596
+ /** @name PalletMiningSlotMinerNonceScoring (347) */
3284
3597
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3285
3598
  readonly nonce: U256;
3286
3599
  readonly lastWinBlock: Option<u32>;
@@ -3288,7 +3601,7 @@ declare module '@polkadot/types/lookup' {
3288
3601
  readonly frameStartBlocksWonSurplus: i16;
3289
3602
  }
3290
3603
 
3291
- /** @name ArgonPrimitivesBlockSealMiningBidStats (332) */
3604
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (359) */
3292
3605
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3293
3606
  readonly bidsCount: u32;
3294
3607
  readonly bidAmountMin: u128;
@@ -3296,14 +3609,14 @@ declare module '@polkadot/types/lookup' {
3296
3609
  readonly bidAmountSum: u128;
3297
3610
  }
3298
3611
 
3299
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (336) */
3612
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (363) */
3300
3613
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3301
3614
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3302
3615
  readonly ticksBetweenSlots: Compact<u64>;
3303
3616
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3304
3617
  }
3305
3618
 
3306
- /** @name PalletMiningSlotError (347) */
3619
+ /** @name PalletMiningSlotError (374) */
3307
3620
  interface PalletMiningSlotError extends Enum {
3308
3621
  readonly isSlotNotTakingBids: boolean;
3309
3622
  readonly isTooManyBlockRegistrants: boolean;
@@ -3328,7 +3641,7 @@ declare module '@polkadot/types/lookup' {
3328
3641
  | 'UnrecoverableHold';
3329
3642
  }
3330
3643
 
3331
- /** @name ArgonPrimitivesBitcoinUtxoValue (348) */
3644
+ /** @name ArgonPrimitivesBitcoinUtxoValue (375) */
3332
3645
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3333
3646
  readonly utxoId: u64;
3334
3647
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3337,7 +3650,7 @@ declare module '@polkadot/types/lookup' {
3337
3650
  readonly watchForSpentUntilHeight: Compact<u64>;
3338
3651
  }
3339
3652
 
3340
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (349) */
3653
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
3341
3654
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3342
3655
  readonly isP2wsh: boolean;
3343
3656
  readonly asP2wsh: {
@@ -3346,7 +3659,7 @@ declare module '@polkadot/types/lookup' {
3346
3659
  readonly type: 'P2wsh';
3347
3660
  }
3348
3661
 
3349
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (358) */
3662
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
3350
3663
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3351
3664
  readonly isBitcoin: boolean;
3352
3665
  readonly isTestnet: boolean;
@@ -3355,7 +3668,7 @@ declare module '@polkadot/types/lookup' {
3355
3668
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3356
3669
  }
3357
3670
 
3358
- /** @name PalletBitcoinUtxosError (359) */
3671
+ /** @name PalletBitcoinUtxosError (386) */
3359
3672
  interface PalletBitcoinUtxosError extends Enum {
3360
3673
  readonly isNoPermissions: boolean;
3361
3674
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3390,7 +3703,7 @@ declare module '@polkadot/types/lookup' {
3390
3703
  | 'LockAlreadyFunded';
3391
3704
  }
3392
3705
 
3393
- /** @name ArgonPrimitivesVault (360) */
3706
+ /** @name ArgonPrimitivesVault (387) */
3394
3707
  interface ArgonPrimitivesVault extends Struct {
3395
3708
  readonly operatorAccountId: AccountId32;
3396
3709
  readonly bitcoinLockDelegateAccount: Option<AccountId32>;
@@ -3411,7 +3724,13 @@ declare module '@polkadot/types/lookup' {
3411
3724
  readonly operationalMinimumReleaseTick: Option<u64>;
3412
3725
  }
3413
3726
 
3414
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (368) */
3727
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
3728
+ interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3729
+ readonly committedMicronots: Compact<u128>;
3730
+ readonly encumberedMicronots: Compact<u128>;
3731
+ }
3732
+
3733
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
3415
3734
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3416
3735
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3417
3736
  readonly depth: Compact<u8>;
@@ -3421,14 +3740,14 @@ declare module '@polkadot/types/lookup' {
3421
3740
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3422
3741
  }
3423
3742
 
3424
- /** @name ArgonPrimitivesBitcoinNetworkKind (370) */
3743
+ /** @name ArgonPrimitivesBitcoinNetworkKind (398) */
3425
3744
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3426
3745
  readonly isMain: boolean;
3427
3746
  readonly isTest: boolean;
3428
3747
  readonly type: 'Main' | 'Test';
3429
3748
  }
3430
3749
 
3431
- /** @name PalletVaultsVaultFrameRevenue (379) */
3750
+ /** @name PalletVaultsVaultFrameRevenue (407) */
3432
3751
  interface PalletVaultsVaultFrameRevenue extends Struct {
3433
3752
  readonly frameId: Compact<u64>;
3434
3753
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3448,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
3448
3767
  readonly uncollectedRevenue: Compact<u128>;
3449
3768
  }
3450
3769
 
3451
- /** @name PalletVaultsRecentCapacityDrop (382) */
3770
+ /** @name PalletVaultsRecentCapacityDrop (410) */
3452
3771
  interface PalletVaultsRecentCapacityDrop extends Struct {
3453
3772
  readonly blockNumber: Compact<u32>;
3454
3773
  readonly availableBeforeDrop: Compact<u128>;
@@ -3456,7 +3775,7 @@ declare module '@polkadot/types/lookup' {
3456
3775
  readonly noFeeFailuresUsed: Compact<u32>;
3457
3776
  }
3458
3777
 
3459
- /** @name PalletVaultsError (384) */
3778
+ /** @name PalletVaultsError (412) */
3460
3779
  interface PalletVaultsError extends Enum {
3461
3780
  readonly isNoMoreVaultIds: boolean;
3462
3781
  readonly isInsufficientFunds: boolean;
@@ -3487,7 +3806,9 @@ declare module '@polkadot/types/lookup' {
3487
3806
  readonly isInvalidVaultName: boolean;
3488
3807
  readonly isPendingCosignsBeforeCollect: boolean;
3489
3808
  readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
3809
+ readonly isOverdueCollectBlockersBeforeCollect: boolean;
3490
3810
  readonly isAccountAlreadyHasVault: boolean;
3811
+ readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
3491
3812
  readonly type:
3492
3813
  | 'NoMoreVaultIds'
3493
3814
  | 'InsufficientFunds'
@@ -3518,14 +3839,16 @@ declare module '@polkadot/types/lookup' {
3518
3839
  | 'InvalidVaultName'
3519
3840
  | 'PendingCosignsBeforeCollect'
3520
3841
  | 'PendingOrphanedUtxoCosignsBeforeCollect'
3521
- | 'AccountAlreadyHasVault';
3842
+ | 'OverdueCollectBlockersBeforeCollect'
3843
+ | 'AccountAlreadyHasVault'
3844
+ | 'CommittedArgonotsBelowEncumberedBacking';
3522
3845
  }
3523
3846
 
3524
- /** @name PalletBitcoinLocksLockedBitcoin (385) */
3847
+ /** @name PalletBitcoinLocksLockedBitcoin (413) */
3525
3848
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
3526
3849
  readonly vaultId: Compact<u32>;
3527
3850
  readonly liquidityPromised: Compact<u128>;
3528
- readonly lockedMarketRate: Compact<u128>;
3851
+ readonly lockedTargetPrice: Compact<u128>;
3529
3852
  readonly ownerAccount: AccountId32;
3530
3853
  readonly securitizationRatio: u128;
3531
3854
  readonly securityFees: Compact<u128>;
@@ -3545,17 +3868,17 @@ declare module '@polkadot/types/lookup' {
3545
3868
  readonly createdAtArgonBlock: Compact<u32>;
3546
3869
  }
3547
3870
 
3548
- /** @name PalletBitcoinLocksLockReleaseRequest (388) */
3871
+ /** @name PalletBitcoinLocksLockReleaseRequest (416) */
3549
3872
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3550
3873
  readonly utxoId: Compact<u64>;
3551
3874
  readonly vaultId: Compact<u32>;
3552
3875
  readonly bitcoinNetworkFee: Compact<u64>;
3553
3876
  readonly cosignDueFrame: Compact<u64>;
3554
3877
  readonly toScriptPubkey: Bytes;
3555
- readonly redemptionPrice: Compact<u128>;
3878
+ readonly redemptionAmount: Compact<u128>;
3556
3879
  }
3557
3880
 
3558
- /** @name PalletBitcoinLocksOrphanedUtxo (390) */
3881
+ /** @name PalletBitcoinLocksOrphanedUtxo (418) */
3559
3882
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3560
3883
  readonly utxoId: Compact<u64>;
3561
3884
  readonly vaultId: Compact<u32>;
@@ -3564,14 +3887,14 @@ declare module '@polkadot/types/lookup' {
3564
3887
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3565
3888
  }
3566
3889
 
3567
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (392) */
3890
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (420) */
3568
3891
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3569
3892
  readonly bitcoinNetworkFee: u64;
3570
3893
  readonly toScriptPubkey: Bytes;
3571
3894
  readonly createdAtArgonBlockNumber: u32;
3572
3895
  }
3573
3896
 
3574
- /** @name PalletBitcoinLocksError (399) */
3897
+ /** @name PalletBitcoinLocksError (427) */
3575
3898
  interface PalletBitcoinLocksError extends Enum {
3576
3899
  readonly isInsufficientFunds: boolean;
3577
3900
  readonly isInsufficientVaultFunds: boolean;
@@ -3647,7 +3970,7 @@ declare module '@polkadot/types/lookup' {
3647
3970
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
3648
3971
  }
3649
3972
 
3650
- /** @name ArgonPrimitivesVaultVaultError (400) */
3973
+ /** @name ArgonPrimitivesVaultVaultError (428) */
3651
3974
  interface ArgonPrimitivesVaultVaultError extends Enum {
3652
3975
  readonly isVaultClosed: boolean;
3653
3976
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -3661,6 +3984,7 @@ declare module '@polkadot/types/lookup' {
3661
3984
  readonly isInvalidBitcoinScript: boolean;
3662
3985
  readonly isInternalError: boolean;
3663
3986
  readonly isVaultNotYetActive: boolean;
3987
+ readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
3664
3988
  readonly type:
3665
3989
  | 'VaultClosed'
3666
3990
  | 'AccountWouldBeBelowMinimum'
@@ -3673,10 +3997,11 @@ declare module '@polkadot/types/lookup' {
3673
3997
  | 'UnableToGenerateVaultBitcoinPubkey'
3674
3998
  | 'InvalidBitcoinScript'
3675
3999
  | 'InternalError'
3676
- | 'VaultNotYetActive';
4000
+ | 'VaultNotYetActive'
4001
+ | 'CommittedArgonotsBelowEncumberedBacking';
3677
4002
  }
3678
4003
 
3679
- /** @name PalletNotariesError (412) */
4004
+ /** @name PalletNotariesError (440) */
3680
4005
  interface PalletNotariesError extends Enum {
3681
4006
  readonly isProposalNotFound: boolean;
3682
4007
  readonly isMaxNotariesExceeded: boolean;
@@ -3699,7 +4024,7 @@ declare module '@polkadot/types/lookup' {
3699
4024
  | 'InvalidNotary';
3700
4025
  }
3701
4026
 
3702
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (416) */
4027
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (444) */
3703
4028
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
3704
4029
  readonly notebookNumber: Compact<u32>;
3705
4030
  readonly tick: Compact<u64>;
@@ -3708,7 +4033,7 @@ declare module '@polkadot/types/lookup' {
3708
4033
  readonly parentSecret: Option<H256>;
3709
4034
  }
3710
4035
 
3711
- /** @name PalletNotebookError (419) */
4036
+ /** @name PalletNotebookError (447) */
3712
4037
  interface PalletNotebookError extends Enum {
3713
4038
  readonly isDuplicateNotebookNumber: boolean;
3714
4039
  readonly isMissingNotebookNumber: boolean;
@@ -3743,7 +4068,7 @@ declare module '@polkadot/types/lookup' {
3743
4068
  | 'InvalidNotebookSubmissionTick';
3744
4069
  }
3745
4070
 
3746
- /** @name PalletLocalchainTransferQueuedTransferOut (420) */
4071
+ /** @name PalletLocalchainTransferQueuedTransferOut (448) */
3747
4072
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
3748
4073
  readonly accountId: AccountId32;
3749
4074
  readonly amount: u128;
@@ -3751,10 +4076,10 @@ declare module '@polkadot/types/lookup' {
3751
4076
  readonly notaryId: u32;
3752
4077
  }
3753
4078
 
3754
- /** @name FrameSupportPalletId (422) */
4079
+ /** @name FrameSupportPalletId (450) */
3755
4080
  interface FrameSupportPalletId extends U8aFixed {}
3756
4081
 
3757
- /** @name PalletLocalchainTransferError (423) */
4082
+ /** @name PalletLocalchainTransferError (451) */
3758
4083
  interface PalletLocalchainTransferError extends Enum {
3759
4084
  readonly isMaxBlockTransfersExceeded: boolean;
3760
4085
  readonly isInsufficientFunds: boolean;
@@ -3775,7 +4100,7 @@ declare module '@polkadot/types/lookup' {
3775
4100
  | 'NoAvailableTransferId';
3776
4101
  }
3777
4102
 
3778
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (427) */
4103
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (455) */
3779
4104
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
3780
4105
  readonly notaryId: Compact<u32>;
3781
4106
  readonly notebookNumber: Compact<u32>;
@@ -3784,13 +4109,13 @@ declare module '@polkadot/types/lookup' {
3784
4109
  readonly blockVotingPower: Compact<u128>;
3785
4110
  }
3786
4111
 
3787
- /** @name PalletBlockSealSpecError (432) */
4112
+ /** @name PalletBlockSealSpecError (460) */
3788
4113
  interface PalletBlockSealSpecError extends Enum {
3789
4114
  readonly isMaxNotebooksAtTickExceeded: boolean;
3790
4115
  readonly type: 'MaxNotebooksAtTickExceeded';
3791
4116
  }
3792
4117
 
3793
- /** @name PalletDomainsError (434) */
4118
+ /** @name PalletDomainsError (462) */
3794
4119
  interface PalletDomainsError extends Enum {
3795
4120
  readonly isDomainNotRegistered: boolean;
3796
4121
  readonly isNotDomainOwner: boolean;
@@ -3805,14 +4130,14 @@ declare module '@polkadot/types/lookup' {
3805
4130
  | 'AccountDecodingError';
3806
4131
  }
3807
4132
 
3808
- /** @name PalletPriceIndexCpiMeasurementBucket (436) */
4133
+ /** @name PalletPriceIndexCpiMeasurementBucket (464) */
3809
4134
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
3810
4135
  readonly tickRange: ITuple<[u64, u64]>;
3811
4136
  readonly totalCpi: i128;
3812
4137
  readonly measurementsCount: u32;
3813
4138
  }
3814
4139
 
3815
- /** @name PalletPriceIndexError (438) */
4140
+ /** @name PalletPriceIndexError (467) */
3816
4141
  interface PalletPriceIndexError extends Enum {
3817
4142
  readonly isNotAuthorizedOperator: boolean;
3818
4143
  readonly isMissingValue: boolean;
@@ -3825,7 +4150,7 @@ declare module '@polkadot/types/lookup' {
3825
4150
  | 'MaxPriceChangePerTickExceeded';
3826
4151
  }
3827
4152
 
3828
- /** @name PalletGrandpaStoredState (439) */
4153
+ /** @name PalletGrandpaStoredState (468) */
3829
4154
  interface PalletGrandpaStoredState extends Enum {
3830
4155
  readonly isLive: boolean;
3831
4156
  readonly isPendingPause: boolean;
@@ -3842,7 +4167,7 @@ declare module '@polkadot/types/lookup' {
3842
4167
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
3843
4168
  }
3844
4169
 
3845
- /** @name PalletGrandpaStoredPendingChange (440) */
4170
+ /** @name PalletGrandpaStoredPendingChange (469) */
3846
4171
  interface PalletGrandpaStoredPendingChange extends Struct {
3847
4172
  readonly scheduledAt: u32;
3848
4173
  readonly delay: u32;
@@ -3850,7 +4175,7 @@ declare module '@polkadot/types/lookup' {
3850
4175
  readonly forced: Option<u32>;
3851
4176
  }
3852
4177
 
3853
- /** @name PalletGrandpaError (442) */
4178
+ /** @name PalletGrandpaError (471) */
3854
4179
  interface PalletGrandpaError extends Enum {
3855
4180
  readonly isPauseFailed: boolean;
3856
4181
  readonly isResumeFailed: boolean;
@@ -3869,14 +4194,14 @@ declare module '@polkadot/types/lookup' {
3869
4194
  | 'DuplicateOffenceReport';
3870
4195
  }
3871
4196
 
3872
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (443) */
4197
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (472) */
3873
4198
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
3874
4199
  readonly blockAuthorAccountId: AccountId32;
3875
4200
  readonly blockVoteRewardsAccount: Option<AccountId32>;
3876
4201
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
3877
4202
  }
3878
4203
 
3879
- /** @name PalletBlockSealError (445) */
4204
+ /** @name PalletBlockSealError (474) */
3880
4205
  interface PalletBlockSealError extends Enum {
3881
4206
  readonly isInvalidVoteSealStrength: boolean;
3882
4207
  readonly isInvalidSubmitter: boolean;
@@ -3923,30 +4248,30 @@ declare module '@polkadot/types/lookup' {
3923
4248
  | 'DuplicateVoteBlockAtTick';
3924
4249
  }
3925
4250
 
3926
- /** @name PalletBlockRewardsError (449) */
4251
+ /** @name PalletBlockRewardsError (478) */
3927
4252
  type PalletBlockRewardsError = Null;
3928
4253
 
3929
- /** @name PalletMintMintAction (455) */
4254
+ /** @name PalletMintMintAction (484) */
3930
4255
  interface PalletMintMintAction extends Struct {
3931
4256
  readonly argonBurned: u128;
3932
4257
  readonly argonMinted: u128;
3933
4258
  readonly bitcoinMinted: u128;
3934
4259
  }
3935
4260
 
3936
- /** @name PalletMintError (456) */
4261
+ /** @name PalletMintError (485) */
3937
4262
  interface PalletMintError extends Enum {
3938
4263
  readonly isTooManyPendingMints: boolean;
3939
4264
  readonly type: 'TooManyPendingMints';
3940
4265
  }
3941
4266
 
3942
- /** @name PalletBalancesBalanceLock (458) */
4267
+ /** @name PalletBalancesBalanceLock (487) */
3943
4268
  interface PalletBalancesBalanceLock extends Struct {
3944
4269
  readonly id: U8aFixed;
3945
4270
  readonly amount: u128;
3946
4271
  readonly reasons: PalletBalancesReasons;
3947
4272
  }
3948
4273
 
3949
- /** @name PalletBalancesReasons (459) */
4274
+ /** @name PalletBalancesReasons (488) */
3950
4275
  interface PalletBalancesReasons extends Enum {
3951
4276
  readonly isFee: boolean;
3952
4277
  readonly isMisc: boolean;
@@ -3954,38 +4279,38 @@ declare module '@polkadot/types/lookup' {
3954
4279
  readonly type: 'Fee' | 'Misc' | 'All';
3955
4280
  }
3956
4281
 
3957
- /** @name PalletBalancesReserveData (462) */
4282
+ /** @name PalletBalancesReserveData (491) */
3958
4283
  interface PalletBalancesReserveData extends Struct {
3959
4284
  readonly id: U8aFixed;
3960
4285
  readonly amount: u128;
3961
4286
  }
3962
4287
 
3963
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (465) */
4288
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (494) */
3964
4289
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
3965
4290
  readonly id: ArgonRuntimeRuntimeHoldReason;
3966
4291
  readonly amount: u128;
3967
4292
  }
3968
4293
 
3969
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (468) */
4294
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (497) */
3970
4295
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
3971
4296
  readonly id: ArgonRuntimeRuntimeFreezeReason;
3972
4297
  readonly amount: u128;
3973
4298
  }
3974
4299
 
3975
- /** @name ArgonRuntimeRuntimeFreezeReason (469) */
4300
+ /** @name ArgonRuntimeRuntimeFreezeReason (498) */
3976
4301
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
3977
4302
  readonly isBlockRewards: boolean;
3978
4303
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
3979
4304
  readonly type: 'BlockRewards';
3980
4305
  }
3981
4306
 
3982
- /** @name PalletBlockRewardsFreezeReason (470) */
4307
+ /** @name PalletBlockRewardsFreezeReason (499) */
3983
4308
  interface PalletBlockRewardsFreezeReason extends Enum {
3984
4309
  readonly isMaturationPeriod: boolean;
3985
4310
  readonly type: 'MaturationPeriod';
3986
4311
  }
3987
4312
 
3988
- /** @name PalletBalancesError (472) */
4313
+ /** @name PalletBalancesError (501) */
3989
4314
  interface PalletBalancesError extends Enum {
3990
4315
  readonly isVestingBalance: boolean;
3991
4316
  readonly isLiquidityRestrictions: boolean;
@@ -4014,7 +4339,7 @@ declare module '@polkadot/types/lookup' {
4014
4339
  | 'DeltaZero';
4015
4340
  }
4016
4341
 
4017
- /** @name PalletTxPauseError (474) */
4342
+ /** @name PalletTxPauseError (503) */
4018
4343
  interface PalletTxPauseError extends Enum {
4019
4344
  readonly isIsPaused: boolean;
4020
4345
  readonly isIsUnpaused: boolean;
@@ -4023,53 +4348,53 @@ declare module '@polkadot/types/lookup' {
4023
4348
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4024
4349
  }
4025
4350
 
4026
- /** @name PalletTransactionPaymentReleases (475) */
4351
+ /** @name PalletTransactionPaymentReleases (504) */
4027
4352
  interface PalletTransactionPaymentReleases extends Enum {
4028
4353
  readonly isV1Ancient: boolean;
4029
4354
  readonly isV2: boolean;
4030
4355
  readonly type: 'V1Ancient' | 'V2';
4031
4356
  }
4032
4357
 
4033
- /** @name FrameSupportStorageNoDrop (476) */
4358
+ /** @name FrameSupportStorageNoDrop (505) */
4034
4359
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4035
4360
 
4036
- /** @name FrameSupportTokensFungibleImbalance (477) */
4361
+ /** @name FrameSupportTokensFungibleImbalance (506) */
4037
4362
  interface FrameSupportTokensFungibleImbalance extends Struct {
4038
4363
  readonly amount: u128;
4039
4364
  }
4040
4365
 
4041
- /** @name PalletUtilityError (478) */
4366
+ /** @name PalletUtilityError (507) */
4042
4367
  interface PalletUtilityError extends Enum {
4043
4368
  readonly isTooManyCalls: boolean;
4044
4369
  readonly type: 'TooManyCalls';
4045
4370
  }
4046
4371
 
4047
- /** @name PalletSudoError (479) */
4372
+ /** @name PalletSudoError (508) */
4048
4373
  interface PalletSudoError extends Enum {
4049
4374
  readonly isRequireSudo: boolean;
4050
4375
  readonly type: 'RequireSudo';
4051
4376
  }
4052
4377
 
4053
- /** @name PalletTreasuryFrameVaultCapital (480) */
4378
+ /** @name PalletTreasuryFrameVaultCapital (509) */
4054
4379
  interface PalletTreasuryFrameVaultCapital extends Struct {
4055
4380
  readonly frameId: Compact<u64>;
4056
4381
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4057
4382
  }
4058
4383
 
4059
- /** @name PalletTreasuryVaultCapital (482) */
4384
+ /** @name PalletTreasuryVaultCapital (511) */
4060
4385
  interface PalletTreasuryVaultCapital extends Struct {
4061
4386
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4062
4387
  readonly eligibleBonds: Compact<u32>;
4063
4388
  readonly vaultSharingPercent: Compact<Permill>;
4064
4389
  }
4065
4390
 
4066
- /** @name PalletTreasuryBondLotAllocation (484) */
4391
+ /** @name PalletTreasuryBondLotAllocation (513) */
4067
4392
  interface PalletTreasuryBondLotAllocation extends Struct {
4068
4393
  readonly bondLotId: Compact<u64>;
4069
4394
  readonly prorata: u128;
4070
4395
  }
4071
4396
 
4072
- /** @name PalletTreasuryBondLot (489) */
4397
+ /** @name PalletTreasuryBondLot (518) */
4073
4398
  interface PalletTreasuryBondLot extends Struct {
4074
4399
  readonly owner: AccountId32;
4075
4400
  readonly vaultId: Compact<u32>;
@@ -4083,13 +4408,13 @@ declare module '@polkadot/types/lookup' {
4083
4408
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4084
4409
  }
4085
4410
 
4086
- /** @name PalletTreasuryBondLotSummary (494) */
4411
+ /** @name PalletTreasuryBondLotSummary (523) */
4087
4412
  interface PalletTreasuryBondLotSummary extends Struct {
4088
4413
  readonly bondLotId: Compact<u64>;
4089
4414
  readonly bonds: Compact<u32>;
4090
4415
  }
4091
4416
 
4092
- /** @name PalletTreasuryError (496) */
4417
+ /** @name PalletTreasuryError (525) */
4093
4418
  interface PalletTreasuryError extends Enum {
4094
4419
  readonly isBondPurchaseRejected: boolean;
4095
4420
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4101,6 +4426,7 @@ declare module '@polkadot/types/lookup' {
4101
4426
  readonly isNotBondLotOwner: boolean;
4102
4427
  readonly isBondLotAlreadyReleasing: boolean;
4103
4428
  readonly isBondPurchaseAboveSecurity: boolean;
4429
+ readonly isActiveBondAmountBelowEncumberedBacking: boolean;
4104
4430
  readonly type:
4105
4431
  | 'BondPurchaseRejected'
4106
4432
  | 'VaultNotAcceptingBondPurchases'
@@ -4111,16 +4437,17 @@ declare module '@polkadot/types/lookup' {
4111
4437
  | 'BondLotNotFound'
4112
4438
  | 'NotBondLotOwner'
4113
4439
  | 'BondLotAlreadyReleasing'
4114
- | 'BondPurchaseAboveSecurity';
4440
+ | 'BondPurchaseAboveSecurity'
4441
+ | 'ActiveBondAmountBelowEncumberedBacking';
4115
4442
  }
4116
4443
 
4117
- /** @name PalletFeeControlError (497) */
4444
+ /** @name PalletFeeControlError (526) */
4118
4445
  interface PalletFeeControlError extends Enum {
4119
4446
  readonly isSponsoredFeeTooHigh: boolean;
4120
4447
  readonly type: 'SponsoredFeeTooHigh';
4121
4448
  }
4122
4449
 
4123
- /** @name PalletOperationalAccountsOperationalAccount (498) */
4450
+ /** @name PalletOperationalAccountsOperationalAccount (527) */
4124
4451
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4125
4452
  readonly vaultAccount: AccountId32;
4126
4453
  readonly miningFundingAccount: AccountId32;
@@ -4143,13 +4470,13 @@ declare module '@polkadot/types/lookup' {
4143
4470
  readonly isOperational: bool;
4144
4471
  }
4145
4472
 
4146
- /** @name PalletOperationalAccountsRewardsConfig (500) */
4473
+ /** @name PalletOperationalAccountsRewardsConfig (529) */
4147
4474
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4148
4475
  readonly operationalReferralReward: Compact<u128>;
4149
4476
  readonly referralBonusReward: Compact<u128>;
4150
4477
  }
4151
4478
 
4152
- /** @name PalletOperationalAccountsError (502) */
4479
+ /** @name PalletOperationalAccountsError (531) */
4153
4480
  interface PalletOperationalAccountsError extends Enum {
4154
4481
  readonly isAlreadyRegistered: boolean;
4155
4482
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4188,50 +4515,58 @@ declare module '@polkadot/types/lookup' {
4188
4515
  | 'NotEligibleForActivation';
4189
4516
  }
4190
4517
 
4191
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (503) */
4518
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (532) */
4192
4519
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4193
4520
  readonly slot: Compact<u64>;
4194
4521
  }
4195
4522
 
4196
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (504) */
4523
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (533) */
4197
4524
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4198
4525
  readonly blockNumber: Compact<u64>;
4526
+ readonly timestampMillis: Compact<u64>;
4199
4527
  readonly blockHash: H256;
4200
4528
  readonly parentHash: H256;
4201
4529
  readonly receiptsRoot: H256;
4202
4530
  }
4203
4531
 
4204
- /** @name SnowbridgeBeaconPrimitivesSyncCommitteePrepared (505) */
4205
- interface SnowbridgeBeaconPrimitivesSyncCommitteePrepared extends Struct {
4532
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (534) */
4533
+ interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4206
4534
  readonly root: H256;
4207
4535
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4208
4536
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4209
4537
  }
4210
4538
 
4211
- /** @name SnowbridgeMilagroBlsKeysPublicKey (507) */
4539
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (536) */
4212
4540
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4213
4541
  readonly point: SnowbridgeAmclBls381Ecp;
4214
4542
  }
4215
4543
 
4216
- /** @name SnowbridgeAmclBls381Ecp (508) */
4544
+ /** @name SnowbridgeAmclBls381Ecp (537) */
4217
4545
  interface SnowbridgeAmclBls381Ecp extends Struct {
4218
4546
  readonly x: SnowbridgeAmclBls381Fp;
4219
4547
  readonly y: SnowbridgeAmclBls381Fp;
4220
4548
  readonly z: SnowbridgeAmclBls381Fp;
4221
4549
  }
4222
4550
 
4223
- /** @name SnowbridgeAmclBls381Fp (509) */
4551
+ /** @name SnowbridgeAmclBls381Fp (538) */
4224
4552
  interface SnowbridgeAmclBls381Fp extends Struct {
4225
4553
  readonly x: SnowbridgeAmclBls381Big;
4226
4554
  readonly xes: i32;
4227
4555
  }
4228
4556
 
4229
- /** @name SnowbridgeAmclBls381Big (510) */
4557
+ /** @name SnowbridgeAmclBls381Big (539) */
4230
4558
  interface SnowbridgeAmclBls381Big extends Struct {
4231
4559
  readonly w: Vec<i32>;
4232
4560
  }
4233
4561
 
4234
- /** @name PalletEthereumVerifierError (513) */
4562
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (543) */
4563
+ interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4564
+ readonly isMainnet: boolean;
4565
+ readonly isMinimal: boolean;
4566
+ readonly type: 'Mainnet' | 'Minimal';
4567
+ }
4568
+
4569
+ /** @name PalletEthereumVerifierError (544) */
4235
4570
  interface PalletEthereumVerifierError extends Enum {
4236
4571
  readonly isSkippedSyncCommitteePeriod: boolean;
4237
4572
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4250,6 +4585,7 @@ declare module '@polkadot/types/lookup' {
4250
4585
  readonly isExpectedFinalizedHeaderNotStored: boolean;
4251
4586
  readonly isBlsPreparePublicKeysFailed: boolean;
4252
4587
  readonly isBlsVerificationFailed: boolean;
4588
+ readonly isUnexpectedBeaconPreset: boolean;
4253
4589
  readonly isInvalidUpdateSlot: boolean;
4254
4590
  readonly isInvalidSyncCommitteeUpdate: boolean;
4255
4591
  readonly isHalted: boolean;
@@ -4271,75 +4607,262 @@ declare module '@polkadot/types/lookup' {
4271
4607
  | 'ExpectedFinalizedHeaderNotStored'
4272
4608
  | 'BlsPreparePublicKeysFailed'
4273
4609
  | 'BlsVerificationFailed'
4610
+ | 'UnexpectedBeaconPreset'
4274
4611
  | 'InvalidUpdateSlot'
4275
4612
  | 'InvalidSyncCommitteeUpdate'
4276
4613
  | 'Halted';
4277
4614
  }
4278
4615
 
4279
- /** @name PalletCrosschainTransferError (515) */
4616
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (546) */
4617
+ interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
4618
+ readonly epochMicrogonsPerArgonot: u128;
4619
+ readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
4620
+ readonly totalWeight: u128;
4621
+ }
4622
+
4623
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (548) */
4624
+ interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
4625
+ readonly accountId: AccountId32;
4626
+ readonly signer: H160;
4627
+ readonly weight: u128;
4628
+ }
4629
+
4630
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (553) */
4631
+ interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
4632
+ readonly approvingCouncilHash: H256;
4633
+ readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
4634
+ readonly targetPayloadHash: H256;
4635
+ readonly dueFrameId: Compact<u64>;
4636
+ readonly previousApprovalHash: H256;
4637
+ readonly approvalHash: H256;
4638
+ readonly approvedTotalWeight: u128;
4639
+ readonly signatures: BTreeMap<H160, U8aFixed>;
4640
+ }
4641
+
4642
+ /** @name PalletCrosschainTransferMintingAuthority (558) */
4643
+ interface PalletCrosschainTransferMintingAuthority extends Struct {
4644
+ readonly accountId: AccountId32;
4645
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
4646
+ readonly destinationSigningKey: H160;
4647
+ readonly state: PalletCrosschainTransferMintingAuthorityState;
4648
+ readonly gatewayRemainingMicrogonCollateral: u128;
4649
+ readonly gatewayRemainingMicronotCollateral: u128;
4650
+ readonly pendingReservedMicrogonCollateral: u128;
4651
+ readonly pendingReservedMicronotCollateral: u128;
4652
+ readonly activePendingTransferIds: Vec<H256>;
4653
+ readonly activationApprovalQueueNonce: u64;
4654
+ readonly activationBaseRepaymentQuote: Compact<u128>;
4655
+ readonly activationSignatureRepaymentQuote: Compact<u128>;
4656
+ readonly deactivationApprovalQueueNonce: Option<u64>;
4657
+ }
4658
+
4659
+ /** @name PalletCrosschainTransferMintingAuthorityState (559) */
4660
+ interface PalletCrosschainTransferMintingAuthorityState extends Enum {
4661
+ readonly isPendingActivation: boolean;
4662
+ readonly isActive: boolean;
4663
+ readonly isDeactivating: boolean;
4664
+ readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
4665
+ }
4666
+
4667
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (561) */
4668
+ interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
4669
+ readonly argonAccountId: AccountId32;
4670
+ readonly argonTransferNonce: Compact<u64>;
4671
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
4672
+ readonly microgonsPerArgonot: Compact<u128>;
4673
+ readonly destinationAccount: H160;
4674
+ readonly validUntilEthereumBlock: Compact<u64>;
4675
+ readonly asset: PalletCrosschainTransferAssetKind;
4676
+ readonly amount: u128;
4677
+ readonly mintingAuthorityTip: u128;
4678
+ readonly totalAttachedCollateral: u128;
4679
+ readonly mintingAuthorityCollateralBySigner: BTreeMap<
4680
+ H160,
4681
+ PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation
4682
+ >;
4683
+ readonly state: PalletCrosschainTransferTransferOutTransferOutState;
4684
+ }
4685
+
4686
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (563) */
4687
+ interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
4688
+ readonly microgonCollateral: u128;
4689
+ readonly micronotCollateral: u128;
4690
+ readonly collateralShare: u128;
4691
+ readonly signature: U8aFixed;
4692
+ }
4693
+
4694
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (567) */
4695
+ interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
4696
+ readonly isStarted: boolean;
4697
+ readonly isReady: boolean;
4698
+ readonly type: 'Started' | 'Ready';
4699
+ }
4700
+
4701
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (569) */
4702
+ interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
4703
+ readonly transferId: H256;
4704
+ readonly remainingCollateral: u128;
4705
+ readonly remainingMintingAuthorityTip: u128;
4706
+ }
4707
+
4708
+ /** @name PalletCrosschainTransferSourceChainCirculation (571) */
4709
+ interface PalletCrosschainTransferSourceChainCirculation extends Struct {
4710
+ readonly argonCirculation: u128;
4711
+ readonly argonotCirculation: u128;
4712
+ }
4713
+
4714
+ /** @name PalletCrosschainTransferError (572) */
4280
4715
  interface PalletCrosschainTransferError extends Enum {
4281
- readonly isInvalidEthereumEvent: boolean;
4716
+ readonly isInvalidTransferToArgonActivity: boolean;
4717
+ readonly isNoGatewayProofBlocksProvided: boolean;
4718
+ readonly isNoGatewayActivitiesProvided: boolean;
4282
4719
  readonly isInvalidProof: boolean;
4283
- readonly isInvalidRecipient: boolean;
4284
- readonly isInvalidAmount: boolean;
4285
4720
  readonly isUnsupportedSource: boolean;
4286
4721
  readonly isUnsupportedGateway: boolean;
4287
4722
  readonly isUnsupportedToken: boolean;
4288
- readonly isUnexpectedNonce: boolean;
4723
+ readonly isUnexpectedPreviousGatewayActivityNonce: boolean;
4724
+ readonly isUnexpectedGatewayActivityNonce: boolean;
4289
4725
  readonly isInvalidChainConfig: boolean;
4290
4726
  readonly isInsufficientLiquidity: boolean;
4727
+ readonly isMintingAuthorityNotFound: boolean;
4728
+ readonly isMintingAuthorityMismatch: boolean;
4729
+ readonly isUnexpectedMintingAuthorityState: boolean;
4730
+ readonly isUnknownOwnerVault: boolean;
4731
+ readonly isInvalidMintingAuthoritySigningKey: boolean;
4732
+ readonly isMintingAuthorityAlreadyRegistered: boolean;
4733
+ readonly isInvalidMintingAuthoritySigningKeyProof: boolean;
4734
+ readonly isInvalidMintingAuthorityCollateral: boolean;
4735
+ readonly isGlobalIssuanceCouncilNotFound: boolean;
4736
+ readonly isInvalidGlobalIssuanceCouncil: boolean;
4737
+ readonly isDuplicateGlobalIssuanceCouncilSigner: boolean;
4738
+ readonly isDuplicateGlobalIssuanceCouncilAccount: boolean;
4739
+ readonly isInvalidCouncilSignerProof: boolean;
4740
+ readonly isGlobalIssuanceCouncilMemberNotFound: boolean;
4741
+ readonly isCouncilSignerNotRegistered: boolean;
4742
+ readonly isCouncilApprovalQueueEntryNotFound: boolean;
4743
+ readonly isCouncilApprovalAlreadyRecorded: boolean;
4744
+ readonly isInvalidForceSetAfterNonce: boolean;
4745
+ readonly isCannotForceSetQuorumApprovedQueueEntry: boolean;
4746
+ readonly isInvalidCouncilApprovalSignature: boolean;
4747
+ readonly isNoCouncilApprovalSignaturesProvided: boolean;
4748
+ readonly isInsufficientCommittedMicrogonCollateral: boolean;
4749
+ readonly isInsufficientCommittedArgonotCollateral: boolean;
4750
+ readonly isInvalidMintingAuthorityDeactivationSignature: boolean;
4751
+ readonly isInvalidMicrogonsPerArgonot: boolean;
4752
+ readonly isMintingAuthorityCollateralBelowMinimum: boolean;
4753
+ readonly isInvalidMintingAuthorityActivationRepaymentPricing: boolean;
4754
+ readonly isMissingMintingAuthorityActivationRepaymentPricing: boolean;
4755
+ readonly isInvalidGatewayActivity: boolean;
4756
+ readonly isGatewaySyncPaused: boolean;
4757
+ readonly isInvalidTransferOutAmount: boolean;
4758
+ readonly isInvalidTransferOutRecipient: boolean;
4759
+ readonly isMissingVerifiedExecutionBlock: boolean;
4760
+ readonly isStaleVerifiedExecutionBlock: boolean;
4761
+ readonly isTransferOutNotFound: boolean;
4762
+ readonly isTransferOutAlreadyReady: boolean;
4763
+ readonly isTransferOutExpired: boolean;
4764
+ readonly isInvalidTransferCollateral: boolean;
4765
+ readonly isInvalidTransferCollateralUpdate: boolean;
4766
+ readonly isInvalidTransferCollateralSignature: boolean;
4767
+ readonly isInsufficientMintingAuthorityCollateral: boolean;
4768
+ readonly isTransferCollateralIncrementTooSmall: boolean;
4769
+ readonly isTooManyPendingTransferOuts: boolean;
4291
4770
  readonly type:
4292
- | 'InvalidEthereumEvent'
4771
+ | 'InvalidTransferToArgonActivity'
4772
+ | 'NoGatewayProofBlocksProvided'
4773
+ | 'NoGatewayActivitiesProvided'
4293
4774
  | 'InvalidProof'
4294
- | 'InvalidRecipient'
4295
- | 'InvalidAmount'
4296
4775
  | 'UnsupportedSource'
4297
4776
  | 'UnsupportedGateway'
4298
4777
  | 'UnsupportedToken'
4299
- | 'UnexpectedNonce'
4778
+ | 'UnexpectedPreviousGatewayActivityNonce'
4779
+ | 'UnexpectedGatewayActivityNonce'
4300
4780
  | 'InvalidChainConfig'
4301
- | 'InsufficientLiquidity';
4302
- }
4303
-
4304
- /** @name FrameSystemExtensionsAuthorizeCall (518) */
4781
+ | 'InsufficientLiquidity'
4782
+ | 'MintingAuthorityNotFound'
4783
+ | 'MintingAuthorityMismatch'
4784
+ | 'UnexpectedMintingAuthorityState'
4785
+ | 'UnknownOwnerVault'
4786
+ | 'InvalidMintingAuthoritySigningKey'
4787
+ | 'MintingAuthorityAlreadyRegistered'
4788
+ | 'InvalidMintingAuthoritySigningKeyProof'
4789
+ | 'InvalidMintingAuthorityCollateral'
4790
+ | 'GlobalIssuanceCouncilNotFound'
4791
+ | 'InvalidGlobalIssuanceCouncil'
4792
+ | 'DuplicateGlobalIssuanceCouncilSigner'
4793
+ | 'DuplicateGlobalIssuanceCouncilAccount'
4794
+ | 'InvalidCouncilSignerProof'
4795
+ | 'GlobalIssuanceCouncilMemberNotFound'
4796
+ | 'CouncilSignerNotRegistered'
4797
+ | 'CouncilApprovalQueueEntryNotFound'
4798
+ | 'CouncilApprovalAlreadyRecorded'
4799
+ | 'InvalidForceSetAfterNonce'
4800
+ | 'CannotForceSetQuorumApprovedQueueEntry'
4801
+ | 'InvalidCouncilApprovalSignature'
4802
+ | 'NoCouncilApprovalSignaturesProvided'
4803
+ | 'InsufficientCommittedMicrogonCollateral'
4804
+ | 'InsufficientCommittedArgonotCollateral'
4805
+ | 'InvalidMintingAuthorityDeactivationSignature'
4806
+ | 'InvalidMicrogonsPerArgonot'
4807
+ | 'MintingAuthorityCollateralBelowMinimum'
4808
+ | 'InvalidMintingAuthorityActivationRepaymentPricing'
4809
+ | 'MissingMintingAuthorityActivationRepaymentPricing'
4810
+ | 'InvalidGatewayActivity'
4811
+ | 'GatewaySyncPaused'
4812
+ | 'InvalidTransferOutAmount'
4813
+ | 'InvalidTransferOutRecipient'
4814
+ | 'MissingVerifiedExecutionBlock'
4815
+ | 'StaleVerifiedExecutionBlock'
4816
+ | 'TransferOutNotFound'
4817
+ | 'TransferOutAlreadyReady'
4818
+ | 'TransferOutExpired'
4819
+ | 'InvalidTransferCollateral'
4820
+ | 'InvalidTransferCollateralUpdate'
4821
+ | 'InvalidTransferCollateralSignature'
4822
+ | 'InsufficientMintingAuthorityCollateral'
4823
+ | 'TransferCollateralIncrementTooSmall'
4824
+ | 'TooManyPendingTransferOuts';
4825
+ }
4826
+
4827
+ /** @name FrameSystemExtensionsAuthorizeCall (575) */
4305
4828
  type FrameSystemExtensionsAuthorizeCall = Null;
4306
4829
 
4307
- /** @name FrameSystemExtensionsCheckNonZeroSender (519) */
4830
+ /** @name FrameSystemExtensionsCheckNonZeroSender (576) */
4308
4831
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4309
4832
 
4310
- /** @name FrameSystemExtensionsCheckSpecVersion (520) */
4833
+ /** @name FrameSystemExtensionsCheckSpecVersion (577) */
4311
4834
  type FrameSystemExtensionsCheckSpecVersion = Null;
4312
4835
 
4313
- /** @name FrameSystemExtensionsCheckTxVersion (521) */
4836
+ /** @name FrameSystemExtensionsCheckTxVersion (578) */
4314
4837
  type FrameSystemExtensionsCheckTxVersion = Null;
4315
4838
 
4316
- /** @name FrameSystemExtensionsCheckGenesis (522) */
4839
+ /** @name FrameSystemExtensionsCheckGenesis (579) */
4317
4840
  type FrameSystemExtensionsCheckGenesis = Null;
4318
4841
 
4319
- /** @name FrameSystemExtensionsCheckNonce (525) */
4842
+ /** @name FrameSystemExtensionsCheckNonce (582) */
4320
4843
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
4321
4844
 
4322
- /** @name FrameSystemExtensionsCheckWeight (526) */
4845
+ /** @name FrameSystemExtensionsCheckWeight (583) */
4323
4846
  type FrameSystemExtensionsCheckWeight = Null;
4324
4847
 
4325
- /** @name PalletTransactionPaymentChargeTransactionPayment (527) */
4848
+ /** @name PalletTransactionPaymentChargeTransactionPayment (584) */
4326
4849
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
4327
4850
 
4328
- /** @name FrameMetadataHashExtensionCheckMetadataHash (528) */
4851
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (585) */
4329
4852
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
4330
4853
  readonly mode: FrameMetadataHashExtensionMode;
4331
4854
  }
4332
4855
 
4333
- /** @name FrameMetadataHashExtensionMode (529) */
4856
+ /** @name FrameMetadataHashExtensionMode (586) */
4334
4857
  interface FrameMetadataHashExtensionMode extends Enum {
4335
4858
  readonly isDisabled: boolean;
4336
4859
  readonly isEnabled: boolean;
4337
4860
  readonly type: 'Disabled' | 'Enabled';
4338
4861
  }
4339
4862
 
4340
- /** @name FrameSystemExtensionsWeightReclaim (530) */
4863
+ /** @name FrameSystemExtensionsWeightReclaim (587) */
4341
4864
  type FrameSystemExtensionsWeightReclaim = Null;
4342
4865
 
4343
- /** @name ArgonRuntimeRuntime (532) */
4866
+ /** @name ArgonRuntimeRuntime (589) */
4344
4867
  type ArgonRuntimeRuntime = Null;
4345
4868
  } // declare module