@argonprotocol/mainchain 1.3.22 → 1.3.23

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.
@@ -85,7 +85,7 @@ import { KeyringPair } from '@polkadot/keyring/types';
85
85
  export { KeyringPair, KeyringPair$Json } from '@polkadot/keyring/types';
86
86
  import { ApiPromise } from '@polkadot/api';
87
87
  export { Keyring } from '@polkadot/api';
88
- export { decodeAddress, mnemonicGenerate } from '@polkadot/util-crypto';
88
+ export { decodeAddress, encodeAddress, isAddress, mnemonicGenerate } from '@polkadot/util-crypto';
89
89
  export { InterfaceTypes as interfaces } from '@polkadot/types/types/registry';
90
90
  export { KeypairType } from '@polkadot/util-crypto/types';
91
91
  import * as _polkadot_api_types from '@polkadot/api/types';
@@ -180,7 +180,7 @@ declare module '@polkadot/api-base/types/consts' {
180
180
  /**
181
181
  * The tick number at which the halving begins for ownership tokens
182
182
  **/
183
- halvingBeginTick: u64 & AugmentedConst<ApiType>;
183
+ halvingBeginTicks: u64 & AugmentedConst<ApiType>;
184
184
  /**
185
185
  * Number of ticks for halving of ownership share rewards
186
186
  **/
@@ -288,10 +288,10 @@ declare module '@polkadot/api-base/types/consts' {
288
288
  **/
289
289
  pricePerSeatAdjustmentDamper: u128 & AugmentedConst<ApiType>;
290
290
  /**
291
- * The target number of bids per slot. This will adjust the argonots per seat up or
292
- * down to ensure mining slots are filled.
291
+ * The target percent of bids per auction relative to the max number of seats. This will
292
+ * adjust the argonots per seat up or down to ensure mining slots are filled.
293
293
  **/
294
- targetBidsPerSlot: u32 & AugmentedConst<ApiType>;
294
+ targetBidsPerSeatPercent: u128 & AugmentedConst<ApiType>;
295
295
  /**
296
296
  * The target price per seat.
297
297
  **/
@@ -1580,21 +1580,30 @@ declare module '@polkadot/api-base/types/events' {
1580
1580
  /**
1581
1581
  * A balance was set by root.
1582
1582
  **/
1583
- BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
1583
+ BalanceSet: AugmentedEvent<ApiType, [
1584
+ who: AccountId32,
1585
+ free: u128
1586
+ ], {
1584
1587
  who: AccountId32;
1585
1588
  free: u128;
1586
1589
  }>;
1587
1590
  /**
1588
1591
  * Some amount was burned from an account.
1589
1592
  **/
1590
- Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1593
+ Burned: AugmentedEvent<ApiType, [
1594
+ who: AccountId32,
1595
+ amount: u128
1596
+ ], {
1591
1597
  who: AccountId32;
1592
1598
  amount: u128;
1593
1599
  }>;
1594
1600
  /**
1595
1601
  * Some amount was deposited (e.g. for transaction fees).
1596
1602
  **/
1597
- Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1603
+ Deposit: AugmentedEvent<ApiType, [
1604
+ who: AccountId32,
1605
+ amount: u128
1606
+ ], {
1598
1607
  who: AccountId32;
1599
1608
  amount: u128;
1600
1609
  }>;
@@ -1602,21 +1611,30 @@ declare module '@polkadot/api-base/types/events' {
1602
1611
  * An account was removed whose balance was non-zero but below ExistentialDeposit,
1603
1612
  * resulting in an outright loss.
1604
1613
  **/
1605
- DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
1614
+ DustLost: AugmentedEvent<ApiType, [
1615
+ account: AccountId32,
1616
+ amount: u128
1617
+ ], {
1606
1618
  account: AccountId32;
1607
1619
  amount: u128;
1608
1620
  }>;
1609
1621
  /**
1610
1622
  * An account was created with some free balance.
1611
1623
  **/
1612
- Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
1624
+ Endowed: AugmentedEvent<ApiType, [
1625
+ account: AccountId32,
1626
+ freeBalance: u128
1627
+ ], {
1613
1628
  account: AccountId32;
1614
1629
  freeBalance: u128;
1615
1630
  }>;
1616
1631
  /**
1617
1632
  * Some balance was frozen.
1618
1633
  **/
1619
- Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1634
+ Frozen: AugmentedEvent<ApiType, [
1635
+ who: AccountId32,
1636
+ amount: u128
1637
+ ], {
1620
1638
  who: AccountId32;
1621
1639
  amount: u128;
1622
1640
  }>;
@@ -1629,14 +1647,20 @@ declare module '@polkadot/api-base/types/events' {
1629
1647
  /**
1630
1648
  * Some balance was locked.
1631
1649
  **/
1632
- Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1650
+ Locked: AugmentedEvent<ApiType, [
1651
+ who: AccountId32,
1652
+ amount: u128
1653
+ ], {
1633
1654
  who: AccountId32;
1634
1655
  amount: u128;
1635
1656
  }>;
1636
1657
  /**
1637
1658
  * Some amount was minted into an account.
1638
1659
  **/
1639
- Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1660
+ Minted: AugmentedEvent<ApiType, [
1661
+ who: AccountId32,
1662
+ amount: u128
1663
+ ], {
1640
1664
  who: AccountId32;
1641
1665
  amount: u128;
1642
1666
  }>;
@@ -1649,7 +1673,10 @@ declare module '@polkadot/api-base/types/events' {
1649
1673
  /**
1650
1674
  * Some balance was reserved (moved from free to reserved).
1651
1675
  **/
1652
- Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1676
+ Reserved: AugmentedEvent<ApiType, [
1677
+ who: AccountId32,
1678
+ amount: u128
1679
+ ], {
1653
1680
  who: AccountId32;
1654
1681
  amount: u128;
1655
1682
  }>;
@@ -1657,7 +1684,12 @@ declare module '@polkadot/api-base/types/events' {
1657
1684
  * Some balance was moved from the reserve of the first account to the second account.
1658
1685
  * Final argument indicates the destination balance type.
1659
1686
  **/
1660
- ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
1687
+ ReserveRepatriated: AugmentedEvent<ApiType, [
1688
+ from: AccountId32,
1689
+ to: AccountId32,
1690
+ amount: u128,
1691
+ destinationStatus: FrameSupportTokensMiscBalanceStatus
1692
+ ], {
1661
1693
  from: AccountId32;
1662
1694
  to: AccountId32;
1663
1695
  amount: u128;
@@ -1666,42 +1698,61 @@ declare module '@polkadot/api-base/types/events' {
1666
1698
  /**
1667
1699
  * Some amount was restored into an account.
1668
1700
  **/
1669
- Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1701
+ Restored: AugmentedEvent<ApiType, [
1702
+ who: AccountId32,
1703
+ amount: u128
1704
+ ], {
1670
1705
  who: AccountId32;
1671
1706
  amount: u128;
1672
1707
  }>;
1673
1708
  /**
1674
1709
  * Some amount was removed from the account (e.g. for misbehavior).
1675
1710
  **/
1676
- Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1711
+ Slashed: AugmentedEvent<ApiType, [
1712
+ who: AccountId32,
1713
+ amount: u128
1714
+ ], {
1677
1715
  who: AccountId32;
1678
1716
  amount: u128;
1679
1717
  }>;
1680
1718
  /**
1681
1719
  * Some amount was suspended from an account (it can be restored later).
1682
1720
  **/
1683
- Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1721
+ Suspended: AugmentedEvent<ApiType, [
1722
+ who: AccountId32,
1723
+ amount: u128
1724
+ ], {
1684
1725
  who: AccountId32;
1685
1726
  amount: u128;
1686
1727
  }>;
1687
1728
  /**
1688
1729
  * Some balance was thawed.
1689
1730
  **/
1690
- Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1731
+ Thawed: AugmentedEvent<ApiType, [
1732
+ who: AccountId32,
1733
+ amount: u128
1734
+ ], {
1691
1735
  who: AccountId32;
1692
1736
  amount: u128;
1693
1737
  }>;
1694
1738
  /**
1695
1739
  * The `TotalIssuance` was forcefully changed.
1696
1740
  **/
1697
- TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
1741
+ TotalIssuanceForced: AugmentedEvent<ApiType, [
1742
+ old: u128,
1743
+ new_: u128
1744
+ ], {
1698
1745
  old: u128;
1699
1746
  new_: u128;
1700
1747
  }>;
1701
1748
  /**
1702
1749
  * Transfer succeeded.
1703
1750
  **/
1704
- Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
1751
+ Transfer: AugmentedEvent<ApiType, [
1752
+ from: AccountId32,
1753
+ to: AccountId32,
1754
+ amount: u128
1755
+ ], {
1705
1756
  from: AccountId32;
1706
1757
  to: AccountId32;
1707
1758
  amount: u128;
@@ -1709,14 +1760,20 @@ declare module '@polkadot/api-base/types/events' {
1709
1760
  /**
1710
1761
  * Some balance was unlocked.
1711
1762
  **/
1712
- Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1763
+ Unlocked: AugmentedEvent<ApiType, [
1764
+ who: AccountId32,
1765
+ amount: u128
1766
+ ], {
1713
1767
  who: AccountId32;
1714
1768
  amount: u128;
1715
1769
  }>;
1716
1770
  /**
1717
1771
  * Some balance was unreserved (moved from reserved to free).
1718
1772
  **/
1719
- Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1773
+ Unreserved: AugmentedEvent<ApiType, [
1774
+ who: AccountId32,
1775
+ amount: u128
1776
+ ], {
1720
1777
  who: AccountId32;
1721
1778
  amount: u128;
1722
1779
  }>;
@@ -1729,24 +1786,43 @@ declare module '@polkadot/api-base/types/events' {
1729
1786
  /**
1730
1787
  * Some amount was withdrawn from the account (e.g. for transaction fees).
1731
1788
  **/
1732
- Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1789
+ Withdraw: AugmentedEvent<ApiType, [
1790
+ who: AccountId32,
1791
+ amount: u128
1792
+ ], {
1733
1793
  who: AccountId32;
1734
1794
  amount: u128;
1735
1795
  }>;
1736
1796
  };
1737
1797
  bitcoinLocks: {
1738
- BitcoinCosignPastDue: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, compensationAmount: u128, compensatedAccountId: AccountId32], {
1798
+ BitcoinCosignPastDue: AugmentedEvent<ApiType, [
1799
+ utxoId: u64,
1800
+ vaultId: u32,
1801
+ compensationAmount: u128,
1802
+ compensatedAccountId: AccountId32
1803
+ ], {
1739
1804
  utxoId: u64;
1740
1805
  vaultId: u32;
1741
1806
  compensationAmount: u128;
1742
1807
  compensatedAccountId: AccountId32;
1743
1808
  }>;
1744
- BitcoinLockBurned: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, wasUtxoSpent: bool], {
1809
+ BitcoinLockBurned: AugmentedEvent<ApiType, [
1810
+ utxoId: u64,
1811
+ vaultId: u32,
1812
+ wasUtxoSpent: bool
1813
+ ], {
1745
1814
  utxoId: u64;
1746
1815
  vaultId: u32;
1747
1816
  wasUtxoSpent: bool;
1748
1817
  }>;
1749
- BitcoinLockCreated: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, liquidityPromised: u128, peggedPrice: u128, accountId: AccountId32, securityFee: u128], {
1818
+ BitcoinLockCreated: AugmentedEvent<ApiType, [
1819
+ utxoId: u64,
1820
+ vaultId: u32,
1821
+ liquidityPromised: u128,
1822
+ peggedPrice: u128,
1823
+ accountId: AccountId32,
1824
+ securityFee: u128
1825
+ ], {
1750
1826
  utxoId: u64;
1751
1827
  vaultId: u32;
1752
1828
  liquidityPromised: u128;
@@ -1754,7 +1830,16 @@ declare module '@polkadot/api-base/types/events' {
1754
1830
  accountId: AccountId32;
1755
1831
  securityFee: u128;
1756
1832
  }>;
1757
- BitcoinLockRatcheted: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, liquidityPromised: u128, originalPeggedPrice: u128, securityFee: u128, newPeggedPrice: u128, amountBurned: u128, accountId: AccountId32], {
1833
+ BitcoinLockRatcheted: AugmentedEvent<ApiType, [
1834
+ utxoId: u64,
1835
+ vaultId: u32,
1836
+ liquidityPromised: u128,
1837
+ originalPeggedPrice: u128,
1838
+ securityFee: u128,
1839
+ newPeggedPrice: u128,
1840
+ amountBurned: u128,
1841
+ accountId: AccountId32
1842
+ ], {
1758
1843
  utxoId: u64;
1759
1844
  vaultId: u32;
1760
1845
  liquidityPromised: u128;
@@ -1764,48 +1849,76 @@ declare module '@polkadot/api-base/types/events' {
1764
1849
  amountBurned: u128;
1765
1850
  accountId: AccountId32;
1766
1851
  }>;
1767
- BitcoinUtxoCosigned: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, signature: Bytes], {
1852
+ BitcoinUtxoCosigned: AugmentedEvent<ApiType, [
1853
+ utxoId: u64,
1854
+ vaultId: u32,
1855
+ signature: Bytes
1856
+ ], {
1768
1857
  utxoId: u64;
1769
1858
  vaultId: u32;
1770
1859
  signature: Bytes;
1771
1860
  }>;
1772
- BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32], {
1861
+ BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [
1862
+ utxoId: u64,
1863
+ vaultId: u32
1864
+ ], {
1773
1865
  utxoId: u64;
1774
1866
  vaultId: u32;
1775
1867
  }>;
1776
1868
  /**
1777
1869
  * An error occurred while refunding an overdue cosigned bitcoin lock
1778
1870
  **/
1779
- CosignOverdueError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
1871
+ CosignOverdueError: AugmentedEvent<ApiType, [
1872
+ utxoId: u64,
1873
+ error: SpRuntimeDispatchError
1874
+ ], {
1780
1875
  utxoId: u64;
1781
1876
  error: SpRuntimeDispatchError;
1782
1877
  }>;
1783
1878
  /**
1784
1879
  * An error occurred while completing a lock
1785
1880
  **/
1786
- LockExpirationError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
1881
+ LockExpirationError: AugmentedEvent<ApiType, [
1882
+ utxoId: u64,
1883
+ error: SpRuntimeDispatchError
1884
+ ], {
1787
1885
  utxoId: u64;
1788
1886
  error: SpRuntimeDispatchError;
1789
1887
  }>;
1790
1888
  };
1791
1889
  bitcoinUtxos: {
1792
- UtxoExpiredError: AugmentedEvent<ApiType, [utxoRef: ArgonPrimitivesBitcoinUtxoRef, error: SpRuntimeDispatchError], {
1890
+ UtxoExpiredError: AugmentedEvent<ApiType, [
1891
+ utxoRef: ArgonPrimitivesBitcoinUtxoRef,
1892
+ error: SpRuntimeDispatchError
1893
+ ], {
1793
1894
  utxoRef: ArgonPrimitivesBitcoinUtxoRef;
1794
1895
  error: SpRuntimeDispatchError;
1795
1896
  }>;
1796
- UtxoRejected: AugmentedEvent<ApiType, [utxoId: u64, rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason], {
1897
+ UtxoRejected: AugmentedEvent<ApiType, [
1898
+ utxoId: u64,
1899
+ rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason
1900
+ ], {
1797
1901
  utxoId: u64;
1798
1902
  rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
1799
1903
  }>;
1800
- UtxoRejectedError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
1904
+ UtxoRejectedError: AugmentedEvent<ApiType, [
1905
+ utxoId: u64,
1906
+ error: SpRuntimeDispatchError
1907
+ ], {
1801
1908
  utxoId: u64;
1802
1909
  error: SpRuntimeDispatchError;
1803
1910
  }>;
1804
- UtxoSpent: AugmentedEvent<ApiType, [utxoId: u64, blockHeight: u64], {
1911
+ UtxoSpent: AugmentedEvent<ApiType, [
1912
+ utxoId: u64,
1913
+ blockHeight: u64
1914
+ ], {
1805
1915
  utxoId: u64;
1806
1916
  blockHeight: u64;
1807
1917
  }>;
1808
- UtxoSpentError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
1918
+ UtxoSpentError: AugmentedEvent<ApiType, [
1919
+ utxoId: u64,
1920
+ error: SpRuntimeDispatchError
1921
+ ], {
1809
1922
  utxoId: u64;
1810
1923
  error: SpRuntimeDispatchError;
1811
1924
  }>;
@@ -1815,16 +1928,26 @@ declare module '@polkadot/api-base/types/events' {
1815
1928
  UtxoVerified: AugmentedEvent<ApiType, [utxoId: u64], {
1816
1929
  utxoId: u64;
1817
1930
  }>;
1818
- UtxoVerifiedError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
1931
+ UtxoVerifiedError: AugmentedEvent<ApiType, [
1932
+ utxoId: u64,
1933
+ error: SpRuntimeDispatchError
1934
+ ], {
1819
1935
  utxoId: u64;
1820
1936
  error: SpRuntimeDispatchError;
1821
1937
  }>;
1822
1938
  };
1823
1939
  blockRewards: {
1824
- RewardCreated: AugmentedEvent<ApiType, [rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>], {
1940
+ RewardCreated: AugmentedEvent<ApiType, [
1941
+ rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>
1942
+ ], {
1825
1943
  rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
1826
1944
  }>;
1827
- RewardCreateError: AugmentedEvent<ApiType, [accountId: AccountId32, argons: Option<u128>, ownership: Option<u128>, error: SpRuntimeDispatchError], {
1945
+ RewardCreateError: AugmentedEvent<ApiType, [
1946
+ accountId: AccountId32,
1947
+ argons: Option<u128>,
1948
+ ownership: Option<u128>,
1949
+ error: SpRuntimeDispatchError
1950
+ ], {
1828
1951
  accountId: AccountId32;
1829
1952
  argons: Option<u128>;
1830
1953
  ownership: Option<u128>;
@@ -1832,13 +1955,23 @@ declare module '@polkadot/api-base/types/events' {
1832
1955
  }>;
1833
1956
  };
1834
1957
  blockSealSpec: {
1835
- ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [expectedBlockTime: u64, actualBlockTime: u64, startDifficulty: u128, newDifficulty: u128], {
1958
+ ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [
1959
+ expectedBlockTime: u64,
1960
+ actualBlockTime: u64,
1961
+ startDifficulty: u128,
1962
+ newDifficulty: u128
1963
+ ], {
1836
1964
  expectedBlockTime: u64;
1837
1965
  actualBlockTime: u64;
1838
1966
  startDifficulty: u128;
1839
1967
  newDifficulty: u128;
1840
1968
  }>;
1841
- VoteMinimumAdjusted: AugmentedEvent<ApiType, [expectedBlockVotes: u128, actualBlockVotes: u128, startVoteMinimum: u128, newVoteMinimum: u128], {
1969
+ VoteMinimumAdjusted: AugmentedEvent<ApiType, [
1970
+ expectedBlockVotes: u128,
1971
+ actualBlockVotes: u128,
1972
+ startVoteMinimum: u128,
1973
+ newVoteMinimum: u128
1974
+ ], {
1842
1975
  expectedBlockVotes: u128;
1843
1976
  actualBlockVotes: u128;
1844
1977
  startVoteMinimum: u128;
@@ -1850,7 +1983,11 @@ declare module '@polkadot/api-base/types/events' {
1850
1983
  * A localchain transfer could not be cleaned up properly. Possible invalid transfer
1851
1984
  * needing investigation.
1852
1985
  **/
1853
- PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [transferId: u32, notaryId: u32, notebookNumber: u32], {
1986
+ PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [
1987
+ transferId: u32,
1988
+ notaryId: u32,
1989
+ notebookNumber: u32
1990
+ ], {
1854
1991
  transferId: u32;
1855
1992
  notaryId: u32;
1856
1993
  notebookNumber: u32;
@@ -1858,7 +1995,12 @@ declare module '@polkadot/api-base/types/events' {
1858
1995
  /**
1859
1996
  * Taxation failed
1860
1997
  **/
1861
- TaxationError: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, tax: u128, error: SpRuntimeDispatchError], {
1998
+ TaxationError: AugmentedEvent<ApiType, [
1999
+ notaryId: u32,
2000
+ notebookNumber: u32,
2001
+ tax: u128,
2002
+ error: SpRuntimeDispatchError
2003
+ ], {
1862
2004
  notaryId: u32;
1863
2005
  notebookNumber: u32;
1864
2006
  tax: u128;
@@ -1867,7 +2009,11 @@ declare module '@polkadot/api-base/types/events' {
1867
2009
  /**
1868
2010
  * Transfer from Localchain to Mainchain
1869
2011
  **/
1870
- TransferFromLocalchain: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, notaryId: u32], {
2012
+ TransferFromLocalchain: AugmentedEvent<ApiType, [
2013
+ accountId: AccountId32,
2014
+ amount: u128,
2015
+ notaryId: u32
2016
+ ], {
1871
2017
  accountId: AccountId32;
1872
2018
  amount: u128;
1873
2019
  notaryId: u32;
@@ -1875,7 +2021,13 @@ declare module '@polkadot/api-base/types/events' {
1875
2021
  /**
1876
2022
  * A transfer into the mainchain failed
1877
2023
  **/
1878
- TransferFromLocalchainError: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, notaryId: u32, notebookNumber: u32, error: SpRuntimeDispatchError], {
2024
+ TransferFromLocalchainError: AugmentedEvent<ApiType, [
2025
+ accountId: AccountId32,
2026
+ amount: u128,
2027
+ notaryId: u32,
2028
+ notebookNumber: u32,
2029
+ error: SpRuntimeDispatchError
2030
+ ], {
1879
2031
  accountId: AccountId32;
1880
2032
  amount: u128;
1881
2033
  notaryId: u32;
@@ -1885,7 +2037,13 @@ declare module '@polkadot/api-base/types/events' {
1885
2037
  /**
1886
2038
  * Funds sent to a localchain
1887
2039
  **/
1888
- TransferToLocalchain: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, transferId: u32, notaryId: u32, expirationTick: u64], {
2040
+ TransferToLocalchain: AugmentedEvent<ApiType, [
2041
+ accountId: AccountId32,
2042
+ amount: u128,
2043
+ transferId: u32,
2044
+ notaryId: u32,
2045
+ expirationTick: u64
2046
+ ], {
1889
2047
  accountId: AccountId32;
1890
2048
  amount: u128;
1891
2049
  transferId: u32;
@@ -1895,7 +2053,11 @@ declare module '@polkadot/api-base/types/events' {
1895
2053
  /**
1896
2054
  * Transfer to localchain expired and rolled back
1897
2055
  **/
1898
- TransferToLocalchainExpired: AugmentedEvent<ApiType, [accountId: AccountId32, transferId: u32, notaryId: u32], {
2056
+ TransferToLocalchainExpired: AugmentedEvent<ApiType, [
2057
+ accountId: AccountId32,
2058
+ transferId: u32,
2059
+ notaryId: u32
2060
+ ], {
1899
2061
  accountId: AccountId32;
1900
2062
  transferId: u32;
1901
2063
  notaryId: u32;
@@ -1903,7 +2065,13 @@ declare module '@polkadot/api-base/types/events' {
1903
2065
  /**
1904
2066
  * An expired transfer to localchain failed to be refunded
1905
2067
  **/
1906
- TransferToLocalchainRefundError: AugmentedEvent<ApiType, [accountId: AccountId32, transferId: u32, notaryId: u32, notebookNumber: u32, error: SpRuntimeDispatchError], {
2068
+ TransferToLocalchainRefundError: AugmentedEvent<ApiType, [
2069
+ accountId: AccountId32,
2070
+ transferId: u32,
2071
+ notaryId: u32,
2072
+ notebookNumber: u32,
2073
+ error: SpRuntimeDispatchError
2074
+ ], {
1907
2075
  accountId: AccountId32;
1908
2076
  transferId: u32;
1909
2077
  notaryId: u32;
@@ -1922,7 +2090,10 @@ declare module '@polkadot/api-base/types/events' {
1922
2090
  /**
1923
2091
  * A domain was registered
1924
2092
  **/
1925
- DomainRegistered: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
2093
+ DomainRegistered: AugmentedEvent<ApiType, [
2094
+ domainHash: H256,
2095
+ registration: PalletDomainsDomainRegistration
2096
+ ], {
1926
2097
  domainHash: H256;
1927
2098
  registration: PalletDomainsDomainRegistration;
1928
2099
  }>;
@@ -1930,14 +2101,21 @@ declare module '@polkadot/api-base/types/events' {
1930
2101
  * A domain registration was canceled due to a conflicting registration in the same
1931
2102
  * tick
1932
2103
  **/
1933
- DomainRegistrationCanceled: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
2104
+ DomainRegistrationCanceled: AugmentedEvent<ApiType, [
2105
+ domainHash: H256,
2106
+ registration: PalletDomainsDomainRegistration
2107
+ ], {
1934
2108
  domainHash: H256;
1935
2109
  registration: PalletDomainsDomainRegistration;
1936
2110
  }>;
1937
2111
  /**
1938
2112
  * A domain registration failed due to an error
1939
2113
  **/
1940
- DomainRegistrationError: AugmentedEvent<ApiType, [domainHash: H256, accountId: AccountId32, error: SpRuntimeDispatchError], {
2114
+ DomainRegistrationError: AugmentedEvent<ApiType, [
2115
+ domainHash: H256,
2116
+ accountId: AccountId32,
2117
+ error: SpRuntimeDispatchError
2118
+ ], {
1941
2119
  domainHash: H256;
1942
2120
  accountId: AccountId32;
1943
2121
  error: SpRuntimeDispatchError;
@@ -1951,7 +2129,10 @@ declare module '@polkadot/api-base/types/events' {
1951
2129
  /**
1952
2130
  * A domain zone record was updated
1953
2131
  **/
1954
- ZoneRecordUpdated: AugmentedEvent<ApiType, [domainHash: H256, zoneRecord: ArgonPrimitivesDomainZoneRecord], {
2132
+ ZoneRecordUpdated: AugmentedEvent<ApiType, [
2133
+ domainHash: H256,
2134
+ zoneRecord: ArgonPrimitivesDomainZoneRecord
2135
+ ], {
1955
2136
  domainHash: H256;
1956
2137
  zoneRecord: ArgonPrimitivesDomainZoneRecord;
1957
2138
  }>;
@@ -1960,7 +2141,9 @@ declare module '@polkadot/api-base/types/events' {
1960
2141
  /**
1961
2142
  * A transaction fee was skipped.
1962
2143
  **/
1963
- FeeSkipped: AugmentedEvent<ApiType, [origin: ArgonRuntimeOriginCaller], {
2144
+ FeeSkipped: AugmentedEvent<ApiType, [
2145
+ origin: ArgonRuntimeOriginCaller
2146
+ ], {
1964
2147
  origin: ArgonRuntimeOriginCaller;
1965
2148
  }>;
1966
2149
  };
@@ -1968,7 +2151,9 @@ declare module '@polkadot/api-base/types/events' {
1968
2151
  /**
1969
2152
  * New authority set has been applied.
1970
2153
  **/
1971
- NewAuthorities: AugmentedEvent<ApiType, [authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>], {
2154
+ NewAuthorities: AugmentedEvent<ApiType, [
2155
+ authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>
2156
+ ], {
1972
2157
  authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
1973
2158
  }>;
1974
2159
  /**
@@ -1984,14 +2169,20 @@ declare module '@polkadot/api-base/types/events' {
1984
2169
  /**
1985
2170
  * Hyperbridge governance has now updated it's host params on this chain.
1986
2171
  **/
1987
- HostParamsUpdated: AugmentedEvent<ApiType, [old: PalletHyperbridgeVersionedHostParams, new_: PalletHyperbridgeVersionedHostParams], {
2172
+ HostParamsUpdated: AugmentedEvent<ApiType, [
2173
+ old: PalletHyperbridgeVersionedHostParams,
2174
+ new_: PalletHyperbridgeVersionedHostParams
2175
+ ], {
1988
2176
  old: PalletHyperbridgeVersionedHostParams;
1989
2177
  new_: PalletHyperbridgeVersionedHostParams;
1990
2178
  }>;
1991
2179
  /**
1992
2180
  * A relayer has withdrawn some fees
1993
2181
  **/
1994
- RelayerFeeWithdrawn: AugmentedEvent<ApiType, [amount: u128, account: AccountId32], {
2182
+ RelayerFeeWithdrawn: AugmentedEvent<ApiType, [
2183
+ amount: u128,
2184
+ account: AccountId32
2185
+ ], {
1995
2186
  amount: u128;
1996
2187
  account: AccountId32;
1997
2188
  }>;
@@ -2000,19 +2191,25 @@ declare module '@polkadot/api-base/types/events' {
2000
2191
  /**
2001
2192
  * Indicates that a consensus client has been created
2002
2193
  **/
2003
- ConsensusClientCreated: AugmentedEvent<ApiType, [consensusClientId: U8aFixed], {
2194
+ ConsensusClientCreated: AugmentedEvent<ApiType, [
2195
+ consensusClientId: U8aFixed
2196
+ ], {
2004
2197
  consensusClientId: U8aFixed;
2005
2198
  }>;
2006
2199
  /**
2007
2200
  * Indicates that a consensus client has been created
2008
2201
  **/
2009
- ConsensusClientFrozen: AugmentedEvent<ApiType, [consensusClientId: U8aFixed], {
2202
+ ConsensusClientFrozen: AugmentedEvent<ApiType, [
2203
+ consensusClientId: U8aFixed
2204
+ ], {
2010
2205
  consensusClientId: U8aFixed;
2011
2206
  }>;
2012
2207
  /**
2013
2208
  * Some errors handling some ismp messages
2014
2209
  **/
2015
- Errors: AugmentedEvent<ApiType, [errors: Vec<PalletIsmpErrorsHandlingError>], {
2210
+ Errors: AugmentedEvent<ApiType, [
2211
+ errors: Vec<PalletIsmpErrorsHandlingError>
2212
+ ], {
2016
2213
  errors: Vec<PalletIsmpErrorsHandlingError>;
2017
2214
  }>;
2018
2215
  /**
@@ -2042,7 +2239,12 @@ declare module '@polkadot/api-base/types/events' {
2042
2239
  /**
2043
2240
  * An Outgoing Request has been deposited
2044
2241
  **/
2045
- Request: AugmentedEvent<ApiType, [destChain: IsmpHostStateMachine, sourceChain: IsmpHostStateMachine, requestNonce: u64, commitment: H256], {
2242
+ Request: AugmentedEvent<ApiType, [
2243
+ destChain: IsmpHostStateMachine,
2244
+ sourceChain: IsmpHostStateMachine,
2245
+ requestNonce: u64,
2246
+ commitment: H256
2247
+ ], {
2046
2248
  destChain: IsmpHostStateMachine;
2047
2249
  sourceChain: IsmpHostStateMachine;
2048
2250
  requestNonce: u64;
@@ -2051,7 +2253,13 @@ declare module '@polkadot/api-base/types/events' {
2051
2253
  /**
2052
2254
  * An Outgoing Response has been deposited
2053
2255
  **/
2054
- Response: AugmentedEvent<ApiType, [destChain: IsmpHostStateMachine, sourceChain: IsmpHostStateMachine, requestNonce: u64, commitment: H256, reqCommitment: H256], {
2256
+ Response: AugmentedEvent<ApiType, [
2257
+ destChain: IsmpHostStateMachine,
2258
+ sourceChain: IsmpHostStateMachine,
2259
+ requestNonce: u64,
2260
+ commitment: H256,
2261
+ reqCommitment: H256
2262
+ ], {
2055
2263
  destChain: IsmpHostStateMachine;
2056
2264
  sourceChain: IsmpHostStateMachine;
2057
2265
  requestNonce: u64;
@@ -2061,14 +2269,20 @@ declare module '@polkadot/api-base/types/events' {
2061
2269
  /**
2062
2270
  * Emitted when a state commitment is vetoed by a fisherman
2063
2271
  **/
2064
- StateCommitmentVetoed: AugmentedEvent<ApiType, [height: IsmpConsensusStateMachineHeight, fisherman: Bytes], {
2272
+ StateCommitmentVetoed: AugmentedEvent<ApiType, [
2273
+ height: IsmpConsensusStateMachineHeight,
2274
+ fisherman: Bytes
2275
+ ], {
2065
2276
  height: IsmpConsensusStateMachineHeight;
2066
2277
  fisherman: Bytes;
2067
2278
  }>;
2068
2279
  /**
2069
2280
  * Emitted when a state machine is successfully updated to a new height
2070
2281
  **/
2071
- StateMachineUpdated: AugmentedEvent<ApiType, [stateMachineId: IsmpConsensusStateMachineId, latestHeight: u64], {
2282
+ StateMachineUpdated: AugmentedEvent<ApiType, [
2283
+ stateMachineId: IsmpConsensusStateMachineId,
2284
+ latestHeight: u64
2285
+ ], {
2072
2286
  stateMachineId: IsmpConsensusStateMachineId;
2073
2287
  latestHeight: u64;
2074
2288
  }>;
@@ -2077,13 +2291,17 @@ declare module '@polkadot/api-base/types/events' {
2077
2291
  /**
2078
2292
  * State machines have been added to whitelist
2079
2293
  **/
2080
- StateMachineAdded: AugmentedEvent<ApiType, [stateMachines: Vec<IsmpHostStateMachine>], {
2294
+ StateMachineAdded: AugmentedEvent<ApiType, [
2295
+ stateMachines: Vec<IsmpHostStateMachine>
2296
+ ], {
2081
2297
  stateMachines: Vec<IsmpHostStateMachine>;
2082
2298
  }>;
2083
2299
  /**
2084
2300
  * State machines have been removed from the whitelist
2085
2301
  **/
2086
- StateMachineRemoved: AugmentedEvent<ApiType, [stateMachines: Vec<IsmpHostStateMachine>], {
2302
+ StateMachineRemoved: AugmentedEvent<ApiType, [
2303
+ stateMachines: Vec<IsmpHostStateMachine>
2304
+ ], {
2087
2305
  stateMachines: Vec<IsmpHostStateMachine>;
2088
2306
  }>;
2089
2307
  };
@@ -2094,30 +2312,51 @@ declare module '@polkadot/api-base/types/events' {
2094
2312
  MiningBidsClosed: AugmentedEvent<ApiType, [frameId: u64], {
2095
2313
  frameId: u64;
2096
2314
  }>;
2097
- MiningConfigurationUpdated: AugmentedEvent<ApiType, [ticksBeforeBidEndForVrfClose: u64, ticksBetweenSlots: u64, slotBiddingStartAfterTicks: u64], {
2315
+ MiningConfigurationUpdated: AugmentedEvent<ApiType, [
2316
+ ticksBeforeBidEndForVrfClose: u64,
2317
+ ticksBetweenSlots: u64,
2318
+ slotBiddingStartAfterTicks: u64
2319
+ ], {
2098
2320
  ticksBeforeBidEndForVrfClose: u64;
2099
2321
  ticksBetweenSlots: u64;
2100
2322
  slotBiddingStartAfterTicks: u64;
2101
2323
  }>;
2102
- NewMiners: AugmentedEvent<ApiType, [newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>, releasedMiners: u32, frameId: u64], {
2324
+ NewMiners: AugmentedEvent<ApiType, [
2325
+ newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>,
2326
+ releasedMiners: u32,
2327
+ frameId: u64
2328
+ ], {
2103
2329
  newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
2104
2330
  releasedMiners: u32;
2105
2331
  frameId: u64;
2106
2332
  }>;
2107
- ReleaseBidError: AugmentedEvent<ApiType, [accountId: AccountId32, error: SpRuntimeDispatchError], {
2333
+ ReleaseBidError: AugmentedEvent<ApiType, [
2334
+ accountId: AccountId32,
2335
+ error: SpRuntimeDispatchError
2336
+ ], {
2108
2337
  accountId: AccountId32;
2109
2338
  error: SpRuntimeDispatchError;
2110
2339
  }>;
2111
- ReleaseMinerSeatError: AugmentedEvent<ApiType, [accountId: AccountId32, error: SpRuntimeDispatchError], {
2340
+ ReleaseMinerSeatError: AugmentedEvent<ApiType, [
2341
+ accountId: AccountId32,
2342
+ error: SpRuntimeDispatchError
2343
+ ], {
2112
2344
  accountId: AccountId32;
2113
2345
  error: SpRuntimeDispatchError;
2114
2346
  }>;
2115
- SlotBidderAdded: AugmentedEvent<ApiType, [accountId: AccountId32, bidAmount: u128, index: u32], {
2347
+ SlotBidderAdded: AugmentedEvent<ApiType, [
2348
+ accountId: AccountId32,
2349
+ bidAmount: u128,
2350
+ index: u32
2351
+ ], {
2116
2352
  accountId: AccountId32;
2117
2353
  bidAmount: u128;
2118
2354
  index: u32;
2119
2355
  }>;
2120
- SlotBidderDropped: AugmentedEvent<ApiType, [accountId: AccountId32, preservedArgonotHold: bool], {
2356
+ SlotBidderDropped: AugmentedEvent<ApiType, [
2357
+ accountId: AccountId32,
2358
+ preservedArgonotHold: bool
2359
+ ], {
2121
2360
  accountId: AccountId32;
2122
2361
  preservedArgonotHold: bool;
2123
2362
  }>;
@@ -2126,7 +2365,11 @@ declare module '@polkadot/api-base/types/events' {
2126
2365
  /**
2127
2366
  * Any bitcoins minted
2128
2367
  **/
2129
- BitcoinMint: AugmentedEvent<ApiType, [accountId: AccountId32, utxoId: Option<u64>, amount: u128], {
2368
+ BitcoinMint: AugmentedEvent<ApiType, [
2369
+ accountId: AccountId32,
2370
+ utxoId: Option<u64>,
2371
+ amount: u128
2372
+ ], {
2130
2373
  accountId: AccountId32;
2131
2374
  utxoId: Option<u64>;
2132
2375
  amount: u128;
@@ -2135,7 +2378,12 @@ declare module '@polkadot/api-base/types/events' {
2135
2378
  * The amount of microgons minted for mining. NOTE: accounts below Existential Deposit will
2136
2379
  * not be able to mint
2137
2380
  **/
2138
- MiningMint: AugmentedEvent<ApiType, [amount: u128, perMiner: u128, argonCpi: i128, liquidity: u128], {
2381
+ MiningMint: AugmentedEvent<ApiType, [
2382
+ amount: u128,
2383
+ perMiner: u128,
2384
+ argonCpi: i128,
2385
+ liquidity: u128
2386
+ ], {
2139
2387
  amount: u128;
2140
2388
  perMiner: u128;
2141
2389
  argonCpi: i128;
@@ -2145,7 +2393,13 @@ declare module '@polkadot/api-base/types/events' {
2145
2393
  * Errors encountered while minting. Most often due to mint amount still below Existential
2146
2394
  * Deposit
2147
2395
  **/
2148
- MintError: AugmentedEvent<ApiType, [mintType: PalletMintMintType, accountId: AccountId32, utxoId: Option<u64>, amount: u128, error: SpRuntimeDispatchError], {
2396
+ MintError: AugmentedEvent<ApiType, [
2397
+ mintType: PalletMintMintType,
2398
+ accountId: AccountId32,
2399
+ utxoId: Option<u64>,
2400
+ amount: u128,
2401
+ error: SpRuntimeDispatchError
2402
+ ], {
2149
2403
  mintType: PalletMintMintType;
2150
2404
  accountId: AccountId32;
2151
2405
  utxoId: Option<u64>;
@@ -2157,7 +2411,12 @@ declare module '@polkadot/api-base/types/events' {
2157
2411
  /**
2158
2412
  * The deposit for a multisig operation has been updated/poked.
2159
2413
  **/
2160
- DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], {
2414
+ DepositPoked: AugmentedEvent<ApiType, [
2415
+ who: AccountId32,
2416
+ callHash: U8aFixed,
2417
+ oldDeposit: u128,
2418
+ newDeposit: u128
2419
+ ], {
2161
2420
  who: AccountId32;
2162
2421
  callHash: U8aFixed;
2163
2422
  oldDeposit: u128;
@@ -2166,7 +2425,12 @@ declare module '@polkadot/api-base/types/events' {
2166
2425
  /**
2167
2426
  * A multisig operation has been approved by someone.
2168
2427
  **/
2169
- MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
2428
+ MultisigApproval: AugmentedEvent<ApiType, [
2429
+ approving: AccountId32,
2430
+ timepoint: PalletMultisigTimepoint,
2431
+ multisig: AccountId32,
2432
+ callHash: U8aFixed
2433
+ ], {
2170
2434
  approving: AccountId32;
2171
2435
  timepoint: PalletMultisigTimepoint;
2172
2436
  multisig: AccountId32;
@@ -2175,7 +2439,12 @@ declare module '@polkadot/api-base/types/events' {
2175
2439
  /**
2176
2440
  * A multisig operation has been cancelled.
2177
2441
  **/
2178
- MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
2442
+ MultisigCancelled: AugmentedEvent<ApiType, [
2443
+ cancelling: AccountId32,
2444
+ timepoint: PalletMultisigTimepoint,
2445
+ multisig: AccountId32,
2446
+ callHash: U8aFixed
2447
+ ], {
2179
2448
  cancelling: AccountId32;
2180
2449
  timepoint: PalletMultisigTimepoint;
2181
2450
  multisig: AccountId32;
@@ -2184,7 +2453,13 @@ declare module '@polkadot/api-base/types/events' {
2184
2453
  /**
2185
2454
  * A multisig operation has been executed.
2186
2455
  **/
2187
- MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, SpRuntimeDispatchError>], {
2456
+ MultisigExecuted: AugmentedEvent<ApiType, [
2457
+ approving: AccountId32,
2458
+ timepoint: PalletMultisigTimepoint,
2459
+ multisig: AccountId32,
2460
+ callHash: U8aFixed,
2461
+ result: Result<Null, SpRuntimeDispatchError>
2462
+ ], {
2188
2463
  approving: AccountId32;
2189
2464
  timepoint: PalletMultisigTimepoint;
2190
2465
  multisig: AccountId32;
@@ -2194,7 +2469,11 @@ declare module '@polkadot/api-base/types/events' {
2194
2469
  /**
2195
2470
  * A new multisig operation has begun.
2196
2471
  **/
2197
- NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], {
2472
+ NewMultisig: AugmentedEvent<ApiType, [
2473
+ approving: AccountId32,
2474
+ multisig: AccountId32,
2475
+ callHash: U8aFixed
2476
+ ], {
2198
2477
  approving: AccountId32;
2199
2478
  multisig: AccountId32;
2200
2479
  callHash: U8aFixed;
@@ -2204,20 +2483,29 @@ declare module '@polkadot/api-base/types/events' {
2204
2483
  /**
2205
2484
  * A notary proposal has been accepted
2206
2485
  **/
2207
- NotaryActivated: AugmentedEvent<ApiType, [notary: ArgonPrimitivesNotaryNotaryRecord], {
2486
+ NotaryActivated: AugmentedEvent<ApiType, [
2487
+ notary: ArgonPrimitivesNotaryNotaryRecord
2488
+ ], {
2208
2489
  notary: ArgonPrimitivesNotaryNotaryRecord;
2209
2490
  }>;
2210
2491
  /**
2211
2492
  * Notary metadata updated
2212
2493
  **/
2213
- NotaryMetaUpdated: AugmentedEvent<ApiType, [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta], {
2494
+ NotaryMetaUpdated: AugmentedEvent<ApiType, [
2495
+ notaryId: u32,
2496
+ meta: ArgonPrimitivesNotaryNotaryMeta
2497
+ ], {
2214
2498
  notaryId: u32;
2215
2499
  meta: ArgonPrimitivesNotaryNotaryMeta;
2216
2500
  }>;
2217
2501
  /**
2218
2502
  * Error updating queued notary info
2219
2503
  **/
2220
- NotaryMetaUpdateError: AugmentedEvent<ApiType, [notaryId: u32, error: SpRuntimeDispatchError, meta: ArgonPrimitivesNotaryNotaryMeta], {
2504
+ NotaryMetaUpdateError: AugmentedEvent<ApiType, [
2505
+ notaryId: u32,
2506
+ error: SpRuntimeDispatchError,
2507
+ meta: ArgonPrimitivesNotaryNotaryMeta
2508
+ ], {
2221
2509
  notaryId: u32;
2222
2510
  error: SpRuntimeDispatchError;
2223
2511
  meta: ArgonPrimitivesNotaryNotaryMeta;
@@ -2225,7 +2513,11 @@ declare module '@polkadot/api-base/types/events' {
2225
2513
  /**
2226
2514
  * Notary metadata queued for update
2227
2515
  **/
2228
- NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta, effectiveTick: u64], {
2516
+ NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [
2517
+ notaryId: u32,
2518
+ meta: ArgonPrimitivesNotaryNotaryMeta,
2519
+ effectiveTick: u64
2520
+ ], {
2229
2521
  notaryId: u32;
2230
2522
  meta: ArgonPrimitivesNotaryNotaryMeta;
2231
2523
  effectiveTick: u64;
@@ -2233,24 +2525,39 @@ declare module '@polkadot/api-base/types/events' {
2233
2525
  /**
2234
2526
  * A user has proposed operating as a notary
2235
2527
  **/
2236
- NotaryProposed: AugmentedEvent<ApiType, [operatorAccount: AccountId32, meta: ArgonPrimitivesNotaryNotaryMeta, expires: u32], {
2528
+ NotaryProposed: AugmentedEvent<ApiType, [
2529
+ operatorAccount: AccountId32,
2530
+ meta: ArgonPrimitivesNotaryNotaryMeta,
2531
+ expires: u32
2532
+ ], {
2237
2533
  operatorAccount: AccountId32;
2238
2534
  meta: ArgonPrimitivesNotaryNotaryMeta;
2239
2535
  expires: u32;
2240
2536
  }>;
2241
2537
  };
2242
2538
  notebook: {
2243
- NotebookAuditFailure: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, notebookHash: H256, firstFailureReason: ArgonNotaryAuditErrorVerifyError], {
2539
+ NotebookAuditFailure: AugmentedEvent<ApiType, [
2540
+ notaryId: u32,
2541
+ notebookNumber: u32,
2542
+ notebookHash: H256,
2543
+ firstFailureReason: ArgonNotaryAuditErrorVerifyError
2544
+ ], {
2244
2545
  notaryId: u32;
2245
2546
  notebookNumber: u32;
2246
2547
  notebookHash: H256;
2247
2548
  firstFailureReason: ArgonNotaryAuditErrorVerifyError;
2248
2549
  }>;
2249
- NotebookReadyForReprocess: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
2550
+ NotebookReadyForReprocess: AugmentedEvent<ApiType, [
2551
+ notaryId: u32,
2552
+ notebookNumber: u32
2553
+ ], {
2250
2554
  notaryId: u32;
2251
2555
  notebookNumber: u32;
2252
2556
  }>;
2253
- NotebookSubmitted: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
2557
+ NotebookSubmitted: AugmentedEvent<ApiType, [
2558
+ notaryId: u32,
2559
+ notebookNumber: u32
2560
+ ], {
2254
2561
  notaryId: u32;
2255
2562
  notebookNumber: u32;
2256
2563
  }>;
@@ -2259,21 +2566,30 @@ declare module '@polkadot/api-base/types/events' {
2259
2566
  /**
2260
2567
  * A balance was set by root.
2261
2568
  **/
2262
- BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
2569
+ BalanceSet: AugmentedEvent<ApiType, [
2570
+ who: AccountId32,
2571
+ free: u128
2572
+ ], {
2263
2573
  who: AccountId32;
2264
2574
  free: u128;
2265
2575
  }>;
2266
2576
  /**
2267
2577
  * Some amount was burned from an account.
2268
2578
  **/
2269
- Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2579
+ Burned: AugmentedEvent<ApiType, [
2580
+ who: AccountId32,
2581
+ amount: u128
2582
+ ], {
2270
2583
  who: AccountId32;
2271
2584
  amount: u128;
2272
2585
  }>;
2273
2586
  /**
2274
2587
  * Some amount was deposited (e.g. for transaction fees).
2275
2588
  **/
2276
- Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2589
+ Deposit: AugmentedEvent<ApiType, [
2590
+ who: AccountId32,
2591
+ amount: u128
2592
+ ], {
2277
2593
  who: AccountId32;
2278
2594
  amount: u128;
2279
2595
  }>;
@@ -2281,21 +2597,30 @@ declare module '@polkadot/api-base/types/events' {
2281
2597
  * An account was removed whose balance was non-zero but below ExistentialDeposit,
2282
2598
  * resulting in an outright loss.
2283
2599
  **/
2284
- DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
2600
+ DustLost: AugmentedEvent<ApiType, [
2601
+ account: AccountId32,
2602
+ amount: u128
2603
+ ], {
2285
2604
  account: AccountId32;
2286
2605
  amount: u128;
2287
2606
  }>;
2288
2607
  /**
2289
2608
  * An account was created with some free balance.
2290
2609
  **/
2291
- Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
2610
+ Endowed: AugmentedEvent<ApiType, [
2611
+ account: AccountId32,
2612
+ freeBalance: u128
2613
+ ], {
2292
2614
  account: AccountId32;
2293
2615
  freeBalance: u128;
2294
2616
  }>;
2295
2617
  /**
2296
2618
  * Some balance was frozen.
2297
2619
  **/
2298
- Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2620
+ Frozen: AugmentedEvent<ApiType, [
2621
+ who: AccountId32,
2622
+ amount: u128
2623
+ ], {
2299
2624
  who: AccountId32;
2300
2625
  amount: u128;
2301
2626
  }>;
@@ -2308,14 +2633,20 @@ declare module '@polkadot/api-base/types/events' {
2308
2633
  /**
2309
2634
  * Some balance was locked.
2310
2635
  **/
2311
- Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2636
+ Locked: AugmentedEvent<ApiType, [
2637
+ who: AccountId32,
2638
+ amount: u128
2639
+ ], {
2312
2640
  who: AccountId32;
2313
2641
  amount: u128;
2314
2642
  }>;
2315
2643
  /**
2316
2644
  * Some amount was minted into an account.
2317
2645
  **/
2318
- Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2646
+ Minted: AugmentedEvent<ApiType, [
2647
+ who: AccountId32,
2648
+ amount: u128
2649
+ ], {
2319
2650
  who: AccountId32;
2320
2651
  amount: u128;
2321
2652
  }>;
@@ -2328,7 +2659,10 @@ declare module '@polkadot/api-base/types/events' {
2328
2659
  /**
2329
2660
  * Some balance was reserved (moved from free to reserved).
2330
2661
  **/
2331
- Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2662
+ Reserved: AugmentedEvent<ApiType, [
2663
+ who: AccountId32,
2664
+ amount: u128
2665
+ ], {
2332
2666
  who: AccountId32;
2333
2667
  amount: u128;
2334
2668
  }>;
@@ -2336,7 +2670,12 @@ declare module '@polkadot/api-base/types/events' {
2336
2670
  * Some balance was moved from the reserve of the first account to the second account.
2337
2671
  * Final argument indicates the destination balance type.
2338
2672
  **/
2339
- ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
2673
+ ReserveRepatriated: AugmentedEvent<ApiType, [
2674
+ from: AccountId32,
2675
+ to: AccountId32,
2676
+ amount: u128,
2677
+ destinationStatus: FrameSupportTokensMiscBalanceStatus
2678
+ ], {
2340
2679
  from: AccountId32;
2341
2680
  to: AccountId32;
2342
2681
  amount: u128;
@@ -2345,42 +2684,61 @@ declare module '@polkadot/api-base/types/events' {
2345
2684
  /**
2346
2685
  * Some amount was restored into an account.
2347
2686
  **/
2348
- Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2687
+ Restored: AugmentedEvent<ApiType, [
2688
+ who: AccountId32,
2689
+ amount: u128
2690
+ ], {
2349
2691
  who: AccountId32;
2350
2692
  amount: u128;
2351
2693
  }>;
2352
2694
  /**
2353
2695
  * Some amount was removed from the account (e.g. for misbehavior).
2354
2696
  **/
2355
- Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2697
+ Slashed: AugmentedEvent<ApiType, [
2698
+ who: AccountId32,
2699
+ amount: u128
2700
+ ], {
2356
2701
  who: AccountId32;
2357
2702
  amount: u128;
2358
2703
  }>;
2359
2704
  /**
2360
2705
  * Some amount was suspended from an account (it can be restored later).
2361
2706
  **/
2362
- Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2707
+ Suspended: AugmentedEvent<ApiType, [
2708
+ who: AccountId32,
2709
+ amount: u128
2710
+ ], {
2363
2711
  who: AccountId32;
2364
2712
  amount: u128;
2365
2713
  }>;
2366
2714
  /**
2367
2715
  * Some balance was thawed.
2368
2716
  **/
2369
- Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2717
+ Thawed: AugmentedEvent<ApiType, [
2718
+ who: AccountId32,
2719
+ amount: u128
2720
+ ], {
2370
2721
  who: AccountId32;
2371
2722
  amount: u128;
2372
2723
  }>;
2373
2724
  /**
2374
2725
  * The `TotalIssuance` was forcefully changed.
2375
2726
  **/
2376
- TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
2727
+ TotalIssuanceForced: AugmentedEvent<ApiType, [
2728
+ old: u128,
2729
+ new_: u128
2730
+ ], {
2377
2731
  old: u128;
2378
2732
  new_: u128;
2379
2733
  }>;
2380
2734
  /**
2381
2735
  * Transfer succeeded.
2382
2736
  **/
2383
- Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
2737
+ Transfer: AugmentedEvent<ApiType, [
2738
+ from: AccountId32,
2739
+ to: AccountId32,
2740
+ amount: u128
2741
+ ], {
2384
2742
  from: AccountId32;
2385
2743
  to: AccountId32;
2386
2744
  amount: u128;
@@ -2388,14 +2746,20 @@ declare module '@polkadot/api-base/types/events' {
2388
2746
  /**
2389
2747
  * Some balance was unlocked.
2390
2748
  **/
2391
- Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2749
+ Unlocked: AugmentedEvent<ApiType, [
2750
+ who: AccountId32,
2751
+ amount: u128
2752
+ ], {
2392
2753
  who: AccountId32;
2393
2754
  amount: u128;
2394
2755
  }>;
2395
2756
  /**
2396
2757
  * Some balance was unreserved (moved from reserved to free).
2397
2758
  **/
2398
- Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2759
+ Unreserved: AugmentedEvent<ApiType, [
2760
+ who: AccountId32,
2761
+ amount: u128
2762
+ ], {
2399
2763
  who: AccountId32;
2400
2764
  amount: u128;
2401
2765
  }>;
@@ -2408,7 +2772,10 @@ declare module '@polkadot/api-base/types/events' {
2408
2772
  /**
2409
2773
  * Some amount was withdrawn from the account (e.g. for transaction fees).
2410
2774
  **/
2411
- Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
2775
+ Withdraw: AugmentedEvent<ApiType, [
2776
+ who: AccountId32,
2777
+ amount: u128
2778
+ ], {
2412
2779
  who: AccountId32;
2413
2780
  amount: u128;
2414
2781
  }>;
@@ -2418,7 +2785,9 @@ declare module '@polkadot/api-base/types/events' {
2418
2785
  * Event emitted when a new price index is submitted
2419
2786
  **/
2420
2787
  NewIndex: AugmentedEvent<ApiType, []>;
2421
- OperatorChanged: AugmentedEvent<ApiType, [operatorId: AccountId32], {
2788
+ OperatorChanged: AugmentedEvent<ApiType, [
2789
+ operatorId: AccountId32
2790
+ ], {
2422
2791
  operatorId: AccountId32;
2423
2792
  }>;
2424
2793
  };
@@ -2426,7 +2795,11 @@ declare module '@polkadot/api-base/types/events' {
2426
2795
  /**
2427
2796
  * An announcement was placed to make a call in the future.
2428
2797
  **/
2429
- Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], {
2798
+ Announced: AugmentedEvent<ApiType, [
2799
+ real: AccountId32,
2800
+ proxy: AccountId32,
2801
+ callHash: H256
2802
+ ], {
2430
2803
  real: AccountId32;
2431
2804
  proxy: AccountId32;
2432
2805
  callHash: H256;
@@ -2434,7 +2807,12 @@ declare module '@polkadot/api-base/types/events' {
2434
2807
  /**
2435
2808
  * A deposit stored for proxies or announcements was poked / updated.
2436
2809
  **/
2437
- DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], {
2810
+ DepositPoked: AugmentedEvent<ApiType, [
2811
+ who: AccountId32,
2812
+ kind: PalletProxyDepositKind,
2813
+ oldDeposit: u128,
2814
+ newDeposit: u128
2815
+ ], {
2438
2816
  who: AccountId32;
2439
2817
  kind: PalletProxyDepositKind;
2440
2818
  oldDeposit: u128;
@@ -2443,7 +2821,12 @@ declare module '@polkadot/api-base/types/events' {
2443
2821
  /**
2444
2822
  * A proxy was added.
2445
2823
  **/
2446
- ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
2824
+ ProxyAdded: AugmentedEvent<ApiType, [
2825
+ delegator: AccountId32,
2826
+ delegatee: AccountId32,
2827
+ proxyType: ArgonRuntimeProxyType,
2828
+ delay: u32
2829
+ ], {
2447
2830
  delegator: AccountId32;
2448
2831
  delegatee: AccountId32;
2449
2832
  proxyType: ArgonRuntimeProxyType;
@@ -2452,13 +2835,20 @@ declare module '@polkadot/api-base/types/events' {
2452
2835
  /**
2453
2836
  * A proxy was executed correctly, with the given.
2454
2837
  **/
2455
- ProxyExecuted: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
2838
+ ProxyExecuted: AugmentedEvent<ApiType, [
2839
+ result: Result<Null, SpRuntimeDispatchError>
2840
+ ], {
2456
2841
  result: Result<Null, SpRuntimeDispatchError>;
2457
2842
  }>;
2458
2843
  /**
2459
2844
  * A proxy was removed.
2460
2845
  **/
2461
- ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
2846
+ ProxyRemoved: AugmentedEvent<ApiType, [
2847
+ delegator: AccountId32,
2848
+ delegatee: AccountId32,
2849
+ proxyType: ArgonRuntimeProxyType,
2850
+ delay: u32
2851
+ ], {
2462
2852
  delegator: AccountId32;
2463
2853
  delegatee: AccountId32;
2464
2854
  proxyType: ArgonRuntimeProxyType;
@@ -2468,7 +2858,12 @@ declare module '@polkadot/api-base/types/events' {
2468
2858
  * A pure account has been created by new proxy with given
2469
2859
  * disambiguation index and proxy type.
2470
2860
  **/
2471
- PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: ArgonRuntimeProxyType, disambiguationIndex: u16], {
2861
+ PureCreated: AugmentedEvent<ApiType, [
2862
+ pure: AccountId32,
2863
+ who: AccountId32,
2864
+ proxyType: ArgonRuntimeProxyType,
2865
+ disambiguationIndex: u16
2866
+ ], {
2472
2867
  pure: AccountId32;
2473
2868
  who: AccountId32;
2474
2869
  proxyType: ArgonRuntimeProxyType;
@@ -2477,7 +2872,12 @@ declare module '@polkadot/api-base/types/events' {
2477
2872
  /**
2478
2873
  * A pure proxy was killed by its spawner.
2479
2874
  **/
2480
- PureKilled: AugmentedEvent<ApiType, [pure: AccountId32, spawner: AccountId32, proxyType: ArgonRuntimeProxyType, disambiguationIndex: u16], {
2875
+ PureKilled: AugmentedEvent<ApiType, [
2876
+ pure: AccountId32,
2877
+ spawner: AccountId32,
2878
+ proxyType: ArgonRuntimeProxyType,
2879
+ disambiguationIndex: u16
2880
+ ], {
2481
2881
  pure: AccountId32;
2482
2882
  spawner: AccountId32;
2483
2883
  proxyType: ArgonRuntimeProxyType;
@@ -2488,7 +2888,10 @@ declare module '@polkadot/api-base/types/events' {
2488
2888
  /**
2489
2889
  * The sudo key has been updated.
2490
2890
  **/
2491
- KeyChanged: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: AccountId32], {
2891
+ KeyChanged: AugmentedEvent<ApiType, [
2892
+ old: Option<AccountId32>,
2893
+ new_: AccountId32
2894
+ ], {
2492
2895
  old: Option<AccountId32>;
2493
2896
  new_: AccountId32;
2494
2897
  }>;
@@ -2499,13 +2902,17 @@ declare module '@polkadot/api-base/types/events' {
2499
2902
  /**
2500
2903
  * A sudo call just took place.
2501
2904
  **/
2502
- Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], {
2905
+ Sudid: AugmentedEvent<ApiType, [
2906
+ sudoResult: Result<Null, SpRuntimeDispatchError>
2907
+ ], {
2503
2908
  sudoResult: Result<Null, SpRuntimeDispatchError>;
2504
2909
  }>;
2505
2910
  /**
2506
2911
  * A [sudo_as](Pallet::sudo_as) call just took place.
2507
2912
  **/
2508
- SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], {
2913
+ SudoAsDone: AugmentedEvent<ApiType, [
2914
+ sudoResult: Result<Null, SpRuntimeDispatchError>
2915
+ ], {
2509
2916
  sudoResult: Result<Null, SpRuntimeDispatchError>;
2510
2917
  }>;
2511
2918
  };
@@ -2517,14 +2924,19 @@ declare module '@polkadot/api-base/types/events' {
2517
2924
  /**
2518
2925
  * An extrinsic failed.
2519
2926
  **/
2520
- ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSystemDispatchEventInfo], {
2927
+ ExtrinsicFailed: AugmentedEvent<ApiType, [
2928
+ dispatchError: SpRuntimeDispatchError,
2929
+ dispatchInfo: FrameSystemDispatchEventInfo
2930
+ ], {
2521
2931
  dispatchError: SpRuntimeDispatchError;
2522
2932
  dispatchInfo: FrameSystemDispatchEventInfo;
2523
2933
  }>;
2524
2934
  /**
2525
2935
  * An extrinsic completed successfully.
2526
2936
  **/
2527
- ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSystemDispatchEventInfo], {
2937
+ ExtrinsicSuccess: AugmentedEvent<ApiType, [
2938
+ dispatchInfo: FrameSystemDispatchEventInfo
2939
+ ], {
2528
2940
  dispatchInfo: FrameSystemDispatchEventInfo;
2529
2941
  }>;
2530
2942
  /**
@@ -2542,21 +2954,30 @@ declare module '@polkadot/api-base/types/events' {
2542
2954
  /**
2543
2955
  * An invalid authorized upgrade was rejected while trying to apply it.
2544
2956
  **/
2545
- RejectedInvalidAuthorizedUpgrade: AugmentedEvent<ApiType, [codeHash: H256, error: SpRuntimeDispatchError], {
2957
+ RejectedInvalidAuthorizedUpgrade: AugmentedEvent<ApiType, [
2958
+ codeHash: H256,
2959
+ error: SpRuntimeDispatchError
2960
+ ], {
2546
2961
  codeHash: H256;
2547
2962
  error: SpRuntimeDispatchError;
2548
2963
  }>;
2549
2964
  /**
2550
2965
  * On on-chain remark happened.
2551
2966
  **/
2552
- Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], {
2967
+ Remarked: AugmentedEvent<ApiType, [
2968
+ sender: AccountId32,
2969
+ hash_: H256
2970
+ ], {
2553
2971
  sender: AccountId32;
2554
2972
  hash_: H256;
2555
2973
  }>;
2556
2974
  /**
2557
2975
  * An upgrade was authorized.
2558
2976
  **/
2559
- UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256, checkVersion: bool], {
2977
+ UpgradeAuthorized: AugmentedEvent<ApiType, [
2978
+ codeHash: H256,
2979
+ checkVersion: bool
2980
+ ], {
2560
2981
  codeHash: H256;
2561
2982
  checkVersion: bool;
2562
2983
  }>;
@@ -2565,7 +2986,11 @@ declare module '@polkadot/api-base/types/events' {
2565
2986
  /**
2566
2987
  * An asset has been received and transferred to the beneficiary's account
2567
2988
  **/
2568
- AssetReceived: AugmentedEvent<ApiType, [beneficiary: AccountId32, amount: u128, source: IsmpHostStateMachine], {
2989
+ AssetReceived: AugmentedEvent<ApiType, [
2990
+ beneficiary: AccountId32,
2991
+ amount: u128,
2992
+ source: IsmpHostStateMachine
2993
+ ], {
2569
2994
  beneficiary: AccountId32;
2570
2995
  amount: u128;
2571
2996
  source: IsmpHostStateMachine;
@@ -2573,7 +2998,11 @@ declare module '@polkadot/api-base/types/events' {
2573
2998
  /**
2574
2999
  * An asset has been refunded and transferred to the beneficiary's account
2575
3000
  **/
2576
- AssetRefunded: AugmentedEvent<ApiType, [beneficiary: AccountId32, amount: u128, source: IsmpHostStateMachine], {
3001
+ AssetRefunded: AugmentedEvent<ApiType, [
3002
+ beneficiary: AccountId32,
3003
+ amount: u128,
3004
+ source: IsmpHostStateMachine
3005
+ ], {
2577
3006
  beneficiary: AccountId32;
2578
3007
  amount: u128;
2579
3008
  source: IsmpHostStateMachine;
@@ -2581,14 +3010,23 @@ declare module '@polkadot/api-base/types/events' {
2581
3010
  /**
2582
3011
  * An asset has been registered locally
2583
3012
  **/
2584
- AssetRegisteredLocally: AugmentedEvent<ApiType, [localId: u32, assetId: H256], {
3013
+ AssetRegisteredLocally: AugmentedEvent<ApiType, [
3014
+ localId: u32,
3015
+ assetId: H256
3016
+ ], {
2585
3017
  localId: u32;
2586
3018
  assetId: H256;
2587
3019
  }>;
2588
3020
  /**
2589
3021
  * An asset has been teleported
2590
3022
  **/
2591
- AssetTeleported: AugmentedEvent<ApiType, [from: AccountId32, to: H256, amount: u128, dest: IsmpHostStateMachine, commitment: H256], {
3023
+ AssetTeleported: AugmentedEvent<ApiType, [
3024
+ from: AccountId32,
3025
+ to: H256,
3026
+ amount: u128,
3027
+ dest: IsmpHostStateMachine,
3028
+ commitment: H256
3029
+ ], {
2592
3030
  from: AccountId32;
2593
3031
  to: H256;
2594
3032
  amount: u128;
@@ -2598,7 +3036,9 @@ declare module '@polkadot/api-base/types/events' {
2598
3036
  /**
2599
3037
  * ERC6160 asset creation request dispatched to hyperbridge
2600
3038
  **/
2601
- ERC6160AssetRegistrationDispatched: AugmentedEvent<ApiType, [commitment: H256], {
3039
+ ERC6160AssetRegistrationDispatched: AugmentedEvent<ApiType, [
3040
+ commitment: H256
3041
+ ], {
2602
3042
  commitment: H256;
2603
3043
  }>;
2604
3044
  };
@@ -2607,7 +3047,11 @@ declare module '@polkadot/api-base/types/events' {
2607
3047
  * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
2608
3048
  * has been paid by `who`.
2609
3049
  **/
2610
- TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], {
3050
+ TransactionFeePaid: AugmentedEvent<ApiType, [
3051
+ who: AccountId32,
3052
+ actualFee: u128,
3053
+ tip: u128
3054
+ ], {
2611
3055
  who: AccountId32;
2612
3056
  actualFee: u128;
2613
3057
  tip: u128;
@@ -2617,7 +3061,12 @@ declare module '@polkadot/api-base/types/events' {
2617
3061
  /**
2618
3062
  * Funds from the active bid pool have been distributed
2619
3063
  **/
2620
- BidPoolDistributed: AugmentedEvent<ApiType, [frameId: u64, bidPoolDistributed: u128, bidPoolBurned: u128, bidPoolShares: u32], {
3064
+ BidPoolDistributed: AugmentedEvent<ApiType, [
3065
+ frameId: u64,
3066
+ bidPoolDistributed: u128,
3067
+ bidPoolBurned: u128,
3068
+ bidPoolShares: u32
3069
+ ], {
2621
3070
  frameId: u64;
2622
3071
  bidPoolDistributed: u128;
2623
3072
  bidPoolBurned: u128;
@@ -2626,7 +3075,11 @@ declare module '@polkadot/api-base/types/events' {
2626
3075
  /**
2627
3076
  * An error occurred burning from the bid pool
2628
3077
  **/
2629
- CouldNotBurnBidPool: AugmentedEvent<ApiType, [frameId: u64, amount: u128, dispatchError: SpRuntimeDispatchError], {
3078
+ CouldNotBurnBidPool: AugmentedEvent<ApiType, [
3079
+ frameId: u64,
3080
+ amount: u128,
3081
+ dispatchError: SpRuntimeDispatchError
3082
+ ], {
2630
3083
  frameId: u64;
2631
3084
  amount: u128;
2632
3085
  dispatchError: SpRuntimeDispatchError;
@@ -2634,7 +3087,14 @@ declare module '@polkadot/api-base/types/events' {
2634
3087
  /**
2635
3088
  * An error occurred distributing a bid pool
2636
3089
  **/
2637
- CouldNotDistributeBidPool: AugmentedEvent<ApiType, [accountId: AccountId32, frameId: u64, vaultId: u32, amount: u128, dispatchError: SpRuntimeDispatchError, isForVault: bool], {
3090
+ CouldNotDistributeBidPool: AugmentedEvent<ApiType, [
3091
+ accountId: AccountId32,
3092
+ frameId: u64,
3093
+ vaultId: u32,
3094
+ amount: u128,
3095
+ dispatchError: SpRuntimeDispatchError,
3096
+ isForVault: bool
3097
+ ], {
2638
3098
  accountId: AccountId32;
2639
3099
  frameId: u64;
2640
3100
  vaultId: u32;
@@ -2645,7 +3105,13 @@ declare module '@polkadot/api-base/types/events' {
2645
3105
  /**
2646
3106
  * An error occurred releasing a contributor hold
2647
3107
  **/
2648
- ErrorRefundingTreasuryCapital: AugmentedEvent<ApiType, [frameId: u64, vaultId: u32, amount: u128, accountId: AccountId32, dispatchError: SpRuntimeDispatchError], {
3108
+ ErrorRefundingTreasuryCapital: AugmentedEvent<ApiType, [
3109
+ frameId: u64,
3110
+ vaultId: u32,
3111
+ amount: u128,
3112
+ accountId: AccountId32,
3113
+ dispatchError: SpRuntimeDispatchError
3114
+ ], {
2649
3115
  frameId: u64;
2650
3116
  vaultId: u32;
2651
3117
  amount: u128;
@@ -2655,7 +3121,11 @@ declare module '@polkadot/api-base/types/events' {
2655
3121
  /**
2656
3122
  * The next bid pool has been locked in
2657
3123
  **/
2658
- NextBidPoolCapitalLocked: AugmentedEvent<ApiType, [frameId: u64, totalActivatedCapital: u128, participatingVaults: u32], {
3124
+ NextBidPoolCapitalLocked: AugmentedEvent<ApiType, [
3125
+ frameId: u64,
3126
+ totalActivatedCapital: u128,
3127
+ participatingVaults: u32
3128
+ ], {
2659
3129
  frameId: u64;
2660
3130
  totalActivatedCapital: u128;
2661
3131
  participatingVaults: u32;
@@ -2664,7 +3134,12 @@ declare module '@polkadot/api-base/types/events' {
2664
3134
  * Some mining bond capital was refunded due to less activated vault funds than bond
2665
3135
  * capital
2666
3136
  **/
2667
- RefundedTreasuryCapital: AugmentedEvent<ApiType, [frameId: u64, vaultId: u32, amount: u128, accountId: AccountId32], {
3137
+ RefundedTreasuryCapital: AugmentedEvent<ApiType, [
3138
+ frameId: u64,
3139
+ vaultId: u32,
3140
+ amount: u128,
3141
+ accountId: AccountId32
3142
+ ], {
2668
3143
  frameId: u64;
2669
3144
  vaultId: u32;
2670
3145
  amount: u128;
@@ -2673,7 +3148,11 @@ declare module '@polkadot/api-base/types/events' {
2673
3148
  /**
2674
3149
  * The vault operator pre-registered to bond argons for a vault
2675
3150
  **/
2676
- VaultOperatorPrebond: AugmentedEvent<ApiType, [vaultId: u32, accountId: AccountId32, amountPerFrame: u128], {
3151
+ VaultOperatorPrebond: AugmentedEvent<ApiType, [
3152
+ vaultId: u32,
3153
+ accountId: AccountId32,
3154
+ amountPerFrame: u128
3155
+ ], {
2677
3156
  vaultId: u32;
2678
3157
  accountId: AccountId32;
2679
3158
  amountPerFrame: u128;
@@ -2683,13 +3162,17 @@ declare module '@polkadot/api-base/types/events' {
2683
3162
  /**
2684
3163
  * This pallet, or a specific call is now paused.
2685
3164
  **/
2686
- CallPaused: AugmentedEvent<ApiType, [fullName: ITuple<[Bytes, Bytes]>], {
3165
+ CallPaused: AugmentedEvent<ApiType, [
3166
+ fullName: ITuple<[Bytes, Bytes]>
3167
+ ], {
2687
3168
  fullName: ITuple<[Bytes, Bytes]>;
2688
3169
  }>;
2689
3170
  /**
2690
3171
  * This pallet, or a specific call is now unpaused.
2691
3172
  **/
2692
- CallUnpaused: AugmentedEvent<ApiType, [fullName: ITuple<[Bytes, Bytes]>], {
3173
+ CallUnpaused: AugmentedEvent<ApiType, [
3174
+ fullName: ITuple<[Bytes, Bytes]>
3175
+ ], {
2693
3176
  fullName: ITuple<[Bytes, Bytes]>;
2694
3177
  }>;
2695
3178
  };
@@ -2706,20 +3189,27 @@ declare module '@polkadot/api-base/types/events' {
2706
3189
  * Batch of dispatches did not complete fully. Index of first failing dispatch given, as
2707
3190
  * well as the error.
2708
3191
  **/
2709
- BatchInterrupted: AugmentedEvent<ApiType, [index: u32, error: SpRuntimeDispatchError], {
3192
+ BatchInterrupted: AugmentedEvent<ApiType, [
3193
+ index: u32,
3194
+ error: SpRuntimeDispatchError
3195
+ ], {
2710
3196
  index: u32;
2711
3197
  error: SpRuntimeDispatchError;
2712
3198
  }>;
2713
3199
  /**
2714
3200
  * A call was dispatched.
2715
3201
  **/
2716
- DispatchedAs: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
3202
+ DispatchedAs: AugmentedEvent<ApiType, [
3203
+ result: Result<Null, SpRuntimeDispatchError>
3204
+ ], {
2717
3205
  result: Result<Null, SpRuntimeDispatchError>;
2718
3206
  }>;
2719
3207
  /**
2720
3208
  * The fallback call was dispatched.
2721
3209
  **/
2722
- IfElseFallbackCalled: AugmentedEvent<ApiType, [mainError: SpRuntimeDispatchError], {
3210
+ IfElseFallbackCalled: AugmentedEvent<ApiType, [
3211
+ mainError: SpRuntimeDispatchError
3212
+ ], {
2723
3213
  mainError: SpRuntimeDispatchError;
2724
3214
  }>;
2725
3215
  /**
@@ -2733,42 +3223,73 @@ declare module '@polkadot/api-base/types/events' {
2733
3223
  /**
2734
3224
  * A single item within a Batch of dispatches has completed with error.
2735
3225
  **/
2736
- ItemFailed: AugmentedEvent<ApiType, [error: SpRuntimeDispatchError], {
3226
+ ItemFailed: AugmentedEvent<ApiType, [
3227
+ error: SpRuntimeDispatchError
3228
+ ], {
2737
3229
  error: SpRuntimeDispatchError;
2738
3230
  }>;
2739
3231
  };
2740
3232
  vaults: {
2741
- FundLockCanceled: AugmentedEvent<ApiType, [vaultId: u32, amount: u128], {
3233
+ FundLockCanceled: AugmentedEvent<ApiType, [
3234
+ vaultId: u32,
3235
+ amount: u128
3236
+ ], {
2742
3237
  vaultId: u32;
2743
3238
  amount: u128;
2744
3239
  }>;
2745
- FundsLocked: AugmentedEvent<ApiType, [vaultId: u32, locker: AccountId32, amount: u128, isRatchet: bool, feeRevenue: u128], {
3240
+ FundsLocked: AugmentedEvent<ApiType, [
3241
+ vaultId: u32,
3242
+ locker: AccountId32,
3243
+ amount: u128,
3244
+ isRatchet: bool,
3245
+ feeRevenue: u128
3246
+ ], {
2746
3247
  vaultId: u32;
2747
3248
  locker: AccountId32;
2748
3249
  amount: u128;
2749
3250
  isRatchet: bool;
2750
3251
  feeRevenue: u128;
2751
3252
  }>;
2752
- FundsReleased: AugmentedEvent<ApiType, [vaultId: u32, amount: u128], {
3253
+ FundsReleased: AugmentedEvent<ApiType, [
3254
+ vaultId: u32,
3255
+ amount: u128
3256
+ ], {
2753
3257
  vaultId: u32;
2754
3258
  amount: u128;
2755
3259
  }>;
2756
- FundsReleasedError: AugmentedEvent<ApiType, [vaultId: u32, error: SpRuntimeDispatchError], {
3260
+ FundsReleasedError: AugmentedEvent<ApiType, [
3261
+ vaultId: u32,
3262
+ error: SpRuntimeDispatchError
3263
+ ], {
2757
3264
  vaultId: u32;
2758
3265
  error: SpRuntimeDispatchError;
2759
3266
  }>;
2760
- FundsScheduledForRelease: AugmentedEvent<ApiType, [vaultId: u32, amount: u128, releaseHeight: u64], {
3267
+ FundsScheduledForRelease: AugmentedEvent<ApiType, [
3268
+ vaultId: u32,
3269
+ amount: u128,
3270
+ releaseHeight: u64
3271
+ ], {
2761
3272
  vaultId: u32;
2762
3273
  amount: u128;
2763
3274
  releaseHeight: u64;
2764
3275
  }>;
2765
- LostBitcoinCompensated: AugmentedEvent<ApiType, [vaultId: u32, beneficiary: AccountId32, toBeneficiary: u128, burned: u128], {
3276
+ LostBitcoinCompensated: AugmentedEvent<ApiType, [
3277
+ vaultId: u32,
3278
+ beneficiary: AccountId32,
3279
+ toBeneficiary: u128,
3280
+ burned: u128
3281
+ ], {
2766
3282
  vaultId: u32;
2767
3283
  beneficiary: AccountId32;
2768
3284
  toBeneficiary: u128;
2769
3285
  burned: u128;
2770
3286
  }>;
2771
- TreasuryRecordingError: AugmentedEvent<ApiType, [vaultId: u32, frameId: u64, vaultEarnings: u128, error: SpRuntimeDispatchError], {
3287
+ TreasuryRecordingError: AugmentedEvent<ApiType, [
3288
+ vaultId: u32,
3289
+ frameId: u64,
3290
+ vaultEarnings: u128,
3291
+ error: SpRuntimeDispatchError
3292
+ ], {
2772
3293
  vaultId: u32;
2773
3294
  frameId: u64;
2774
3295
  vaultEarnings: u128;
@@ -2777,7 +3298,11 @@ declare module '@polkadot/api-base/types/events' {
2777
3298
  VaultBitcoinXpubChange: AugmentedEvent<ApiType, [vaultId: u32], {
2778
3299
  vaultId: u32;
2779
3300
  }>;
2780
- VaultClosed: AugmentedEvent<ApiType, [vaultId: u32, securitizationRemaining: u128, securitizationReleased: u128], {
3301
+ VaultClosed: AugmentedEvent<ApiType, [
3302
+ vaultId: u32,
3303
+ securitizationRemaining: u128,
3304
+ securitizationReleased: u128
3305
+ ], {
2781
3306
  vaultId: u32;
2782
3307
  securitizationRemaining: u128;
2783
3308
  securitizationReleased: u128;
@@ -2785,18 +3310,31 @@ declare module '@polkadot/api-base/types/events' {
2785
3310
  /**
2786
3311
  * The vault collected revenue and cosigned all pending bitcoin locks
2787
3312
  **/
2788
- VaultCollected: AugmentedEvent<ApiType, [vaultId: u32, revenue: u128], {
3313
+ VaultCollected: AugmentedEvent<ApiType, [
3314
+ vaultId: u32,
3315
+ revenue: u128
3316
+ ], {
2789
3317
  vaultId: u32;
2790
3318
  revenue: u128;
2791
3319
  }>;
2792
- VaultCreated: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128, securitizationRatio: u128, operatorAccountId: AccountId32, openedTick: u64], {
3320
+ VaultCreated: AugmentedEvent<ApiType, [
3321
+ vaultId: u32,
3322
+ securitization: u128,
3323
+ securitizationRatio: u128,
3324
+ operatorAccountId: AccountId32,
3325
+ openedTick: u64
3326
+ ], {
2793
3327
  vaultId: u32;
2794
3328
  securitization: u128;
2795
3329
  securitizationRatio: u128;
2796
3330
  operatorAccountId: AccountId32;
2797
3331
  openedTick: u64;
2798
3332
  }>;
2799
- VaultModified: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128, securitizationRatio: u128], {
3333
+ VaultModified: AugmentedEvent<ApiType, [
3334
+ vaultId: u32,
3335
+ securitization: u128,
3336
+ securitizationRatio: u128
3337
+ ], {
2800
3338
  vaultId: u32;
2801
3339
  securitization: u128;
2802
3340
  securitizationRatio: u128;
@@ -2804,7 +3342,11 @@ declare module '@polkadot/api-base/types/events' {
2804
3342
  /**
2805
3343
  * Vault revenue was not collected within the required window, so has been burned
2806
3344
  **/
2807
- VaultRevenueUncollected: AugmentedEvent<ApiType, [vaultId: u32, frameId: u64, amount: u128], {
3345
+ VaultRevenueUncollected: AugmentedEvent<ApiType, [
3346
+ vaultId: u32,
3347
+ frameId: u64,
3348
+ amount: u128
3349
+ ], {
2808
3350
  vaultId: u32;
2809
3351
  frameId: u64;
2810
3352
  amount: u128;
@@ -2812,7 +3354,10 @@ declare module '@polkadot/api-base/types/events' {
2812
3354
  VaultTermsChanged: AugmentedEvent<ApiType, [vaultId: u32], {
2813
3355
  vaultId: u32;
2814
3356
  }>;
2815
- VaultTermsChangeScheduled: AugmentedEvent<ApiType, [vaultId: u32, changeTick: u64], {
3357
+ VaultTermsChangeScheduled: AugmentedEvent<ApiType, [
3358
+ vaultId: u32,
3359
+ changeTick: u64
3360
+ ], {
2816
3361
  vaultId: u32;
2817
3362
  changeTick: u64;
2818
3363
  }>;
@@ -2855,15 +3400,21 @@ declare module '@polkadot/api-base/types/storage' {
2855
3400
  * `Balances` pallet, which uses a `StorageMap` to store balances data only.
2856
3401
  * NOTE: This is only used in the case that this pallet is used to store balances.
2857
3402
  **/
2858
- account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]>;
3403
+ account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [
3404
+ AccountId32
3405
+ ]>;
2859
3406
  /**
2860
3407
  * Freeze locks on account balances.
2861
3408
  **/
2862
- freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]>;
3409
+ freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [
3410
+ AccountId32
3411
+ ]>;
2863
3412
  /**
2864
3413
  * Holds on account balances.
2865
3414
  **/
2866
- holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]>;
3415
+ holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [
3416
+ AccountId32
3417
+ ]>;
2867
3418
  /**
2868
3419
  * The total units of outstanding deactivated balance in the system.
2869
3420
  **/
@@ -2874,13 +3425,17 @@ declare module '@polkadot/api-base/types/storage' {
2874
3425
  *
2875
3426
  * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
2876
3427
  **/
2877
- locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [AccountId32]>;
3428
+ locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [
3429
+ AccountId32
3430
+ ]>;
2878
3431
  /**
2879
3432
  * Named reserves on some account balances.
2880
3433
  *
2881
3434
  * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
2882
3435
  **/
2883
- reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [AccountId32]>;
3436
+ reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [
3437
+ AccountId32
3438
+ ]>;
2884
3439
  /**
2885
3440
  * The total units issued in the system.
2886
3441
  **/
@@ -2890,21 +3445,31 @@ declare module '@polkadot/api-base/types/storage' {
2890
3445
  /**
2891
3446
  * Utxos that have been requested to be cosigned for releasing
2892
3447
  **/
2893
- lockCosignDueByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u64]>;
3448
+ lockCosignDueByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
3449
+ u64
3450
+ ]>;
2894
3451
  /**
2895
3452
  * Expiration of bitcoin locks by bitcoin height. Funds are burned since the user did not
2896
3453
  * unlock it. Bitcoin will go to vault
2897
3454
  **/
2898
- lockExpirationsByBitcoinHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u64]>;
3455
+ lockExpirationsByBitcoinHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
3456
+ u64
3457
+ ]>;
2899
3458
  /**
2900
3459
  * Stores the block number where the lock was released
2901
3460
  **/
2902
- lockReleaseCosignHeightById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u64]>;
2903
- lockReleaseRequestsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockReleaseRequest>>, [u64]>;
3461
+ lockReleaseCosignHeightById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
3462
+ u64
3463
+ ]>;
3464
+ lockReleaseRequestsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockReleaseRequest>>, [
3465
+ u64
3466
+ ]>;
2904
3467
  /**
2905
3468
  * Stores bitcoin utxos that have requested to be released
2906
3469
  **/
2907
- locksByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockedBitcoin>>, [u64]>;
3470
+ locksByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockedBitcoin>>, [
3471
+ u64
3472
+ ]>;
2908
3473
  /**
2909
3474
  * The minimum number of satoshis that can be locked
2910
3475
  **/
@@ -2915,11 +3480,13 @@ declare module '@polkadot/api-base/types/storage' {
2915
3480
  /**
2916
3481
  * The genesis set bitcoin network that this chain is tied to
2917
3482
  **/
2918
- bitcoinNetwork: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBitcoinBitcoinNetwork>, []>;
3483
+ bitcoinNetwork: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBitcoinBitcoinNetwork>, [
3484
+ ]>;
2919
3485
  /**
2920
3486
  * An oracle-provided confirmed bitcoin block (eg, 6 blocks back)
2921
3487
  **/
2922
- confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
3488
+ confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
3489
+ ]>;
2923
3490
  /**
2924
3491
  * Check if the inherent was included
2925
3492
  **/
@@ -2927,7 +3494,9 @@ declare module '@polkadot/api-base/types/storage' {
2927
3494
  /**
2928
3495
  * Expiration date as a day since unix timestamp mapped to Bitcoin UTXOs
2929
3496
  **/
2930
- lockedUtxoExpirationsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBitcoinUtxoRef>>, [u64]>;
3497
+ lockedUtxoExpirationsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBitcoinUtxoRef>>, [
3498
+ u64
3499
+ ]>;
2931
3500
  /**
2932
3501
  * Locked Bitcoin UTXOs that have had ownership confirmed. If a Bitcoin UTXO is moved before
2933
3502
  * the expiration block, the funds are burned and the UTXO is unlocked.
@@ -2935,25 +3504,32 @@ declare module '@polkadot/api-base/types/storage' {
2935
3504
  lockedUtxos: AugmentedQuery<ApiType, (arg: ArgonPrimitivesBitcoinUtxoRef | {
2936
3505
  txid?: any;
2937
3506
  outputIndex?: any;
2938
- } | string | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoValue>>, [ArgonPrimitivesBitcoinUtxoRef]>;
3507
+ } | string | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoValue>>, [
3508
+ ArgonPrimitivesBitcoinUtxoRef
3509
+ ]>;
2939
3510
  /**
2940
3511
  * Bitcoin Oracle Operator Account
2941
3512
  **/
2942
3513
  oracleOperatorAccount: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []>;
2943
- previousBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
3514
+ previousBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
3515
+ ]>;
2944
3516
  /**
2945
3517
  * The last synched bitcoin block
2946
3518
  **/
2947
- synchedBitcoinBlock: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
3519
+ synchedBitcoinBlock: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
3520
+ ]>;
2948
3521
  /**
2949
3522
  * Stores if parent block had a confirmed bitcoin block
2950
3523
  **/
2951
3524
  tempParentHasSyncState: AugmentedQuery<ApiType, () => Observable<bool>, []>;
2952
- utxoIdToRef: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoRef>>, [u64]>;
3525
+ utxoIdToRef: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoRef>>, [
3526
+ u64
3527
+ ]>;
2953
3528
  /**
2954
3529
  * Bitcoin UTXOs that have been submitted for ownership confirmation
2955
3530
  **/
2956
- utxosPendingConfirmation: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, []>;
3531
+ utxosPendingConfirmation: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, [
3532
+ ]>;
2957
3533
  };
2958
3534
  blockRewards: {
2959
3535
  /**
@@ -2973,7 +3549,9 @@ declare module '@polkadot/api-base/types/storage' {
2973
3549
  /**
2974
3550
  * Historical payouts by block number
2975
3551
  **/
2976
- payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [u32]>;
3552
+ payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [
3553
+ u32
3554
+ ]>;
2977
3555
  };
2978
3556
  blockSeal: {
2979
3557
  /**
@@ -2985,7 +3563,8 @@ declare module '@polkadot/api-base/types/storage' {
2985
3563
  * Is the block from a vote seal?
2986
3564
  **/
2987
3565
  isBlockFromVoteSeal: AugmentedQuery<ApiType, () => Observable<bool>, []>;
2988
- lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, []>;
3566
+ lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, [
3567
+ ]>;
2989
3568
  lastTickWithVoteSeal: AugmentedQuery<ApiType, () => Observable<u64>, []>;
2990
3569
  /**
2991
3570
  * The calculated parent voting key for a block. Refers to the Notebook BlockVote Revealed
@@ -2995,7 +3574,8 @@ declare module '@polkadot/api-base/types/storage' {
2995
3574
  /**
2996
3575
  * Ensures only a single inherent is applied
2997
3576
  **/
2998
- tempSealInherent: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesInherentsBlockSealInherent>>, []>;
3577
+ tempSealInherent: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesInherentsBlockSealInherent>>, [
3578
+ ]>;
2999
3579
  /**
3000
3580
  * The count of votes in the last 3 ticks
3001
3581
  **/
@@ -3030,39 +3610,56 @@ declare module '@polkadot/api-base/types/storage' {
3030
3610
  /**
3031
3611
  * Temporary store the vote digest
3032
3612
  **/
3033
- tempBlockVoteDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsBlockVoteDigest>>, []>;
3613
+ tempBlockVoteDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsBlockVoteDigest>>, [
3614
+ ]>;
3034
3615
  /**
3035
3616
  * Temporary store of any current tick notebooks included in this block (vs tick)
3036
3617
  **/
3037
- tempCurrentTickNotebooksInBlock: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails>>, []>;
3618
+ tempCurrentTickNotebooksInBlock: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails>>, [
3619
+ ]>;
3038
3620
  /**
3039
3621
  * Keeps the last 3 vote minimums. The first one applies to the current block.
3040
3622
  **/
3041
3623
  voteMinimumHistory: AugmentedQuery<ApiType, () => Observable<Vec<u128>>, []>;
3042
3624
  };
3043
3625
  chainTransfer: {
3044
- expiringTransfersOutByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [u32, u64]>;
3626
+ expiringTransfersOutByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [
3627
+ u32,
3628
+ u64
3629
+ ]>;
3045
3630
  /**
3046
3631
  * The admin of the hyperbridge token gateway
3047
3632
  **/
3048
3633
  hyperbridgeTokenAdmin: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []>;
3049
3634
  nextTransferId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
3050
- pendingTransfersOut: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletChainTransferQueuedTransferOut>>, [u32]>;
3051
- transfersUsedInBlockNotebooks: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u32]>>>, [u32]>;
3635
+ pendingTransfersOut: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletChainTransferQueuedTransferOut>>, [
3636
+ u32
3637
+ ]>;
3638
+ transfersUsedInBlockNotebooks: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u32]>>>, [
3639
+ u32
3640
+ ]>;
3052
3641
  };
3053
3642
  digests: {
3054
- tempDigests: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsDigestset>>, []>;
3643
+ tempDigests: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsDigestset>>, [
3644
+ ]>;
3055
3645
  };
3056
3646
  domains: {
3057
- expiringDomainsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [u64]>;
3058
- registeredDomains: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletDomainsDomainRegistration>>, [H256]>;
3059
- zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<ArgonPrimitivesDomainZoneRecord>>, [H256]>;
3647
+ expiringDomainsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [
3648
+ u64
3649
+ ]>;
3650
+ registeredDomains: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletDomainsDomainRegistration>>, [
3651
+ H256
3652
+ ]>;
3653
+ zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<ArgonPrimitivesDomainZoneRecord>>, [
3654
+ H256
3655
+ ]>;
3060
3656
  };
3061
3657
  grandpa: {
3062
3658
  /**
3063
3659
  * The current list of authorities.
3064
3660
  **/
3065
- authorities: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>>, []>;
3661
+ authorities: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>>, [
3662
+ ]>;
3066
3663
  /**
3067
3664
  * The number of changes (both in terms of keys and underlying economic responsibilities)
3068
3665
  * in the "set" of Grandpa validators from genesis.
@@ -3075,7 +3672,8 @@ declare module '@polkadot/api-base/types/storage' {
3075
3672
  /**
3076
3673
  * Pending change: (signaled at, scheduled change).
3077
3674
  **/
3078
- pendingChange: AugmentedQuery<ApiType, () => Observable<Option<PalletGrandpaStoredPendingChange>>, []>;
3675
+ pendingChange: AugmentedQuery<ApiType, () => Observable<Option<PalletGrandpaStoredPendingChange>>, [
3676
+ ]>;
3079
3677
  /**
3080
3678
  * A mapping from grandpa set ID to the index of the *most recent* session for which its
3081
3679
  * members were responsible.
@@ -3088,7 +3686,9 @@ declare module '@polkadot/api-base/types/storage' {
3088
3686
  *
3089
3687
  * TWOX-NOTE: `SetId` is not under user control.
3090
3688
  **/
3091
- setIdSession: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u64]>;
3689
+ setIdSession: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
3690
+ u64
3691
+ ]>;
3092
3692
  /**
3093
3693
  * `true` if we are currently stalled.
3094
3694
  **/
@@ -3102,7 +3702,8 @@ declare module '@polkadot/api-base/types/storage' {
3102
3702
  /**
3103
3703
  * The host parameters of the pallet-hyperbridge.
3104
3704
  **/
3105
- hostParams: AugmentedQuery<ApiType, () => Observable<PalletHyperbridgeVersionedHostParams>, []>;
3705
+ hostParams: AugmentedQuery<ApiType, () => Observable<PalletHyperbridgeVersionedHostParams>, [
3706
+ ]>;
3106
3707
  };
3107
3708
  ismp: {
3108
3709
  /**
@@ -3111,7 +3712,9 @@ declare module '@polkadot/api-base/types/storage' {
3111
3712
  challengePeriod: AugmentedQuery<ApiType, (arg: IsmpConsensusStateMachineId | {
3112
3713
  stateId?: any;
3113
3714
  consensusStateId?: any;
3114
- } | string | Uint8Array) => Observable<Option<u64>>, [IsmpConsensusStateMachineId]>;
3715
+ } | string | Uint8Array) => Observable<Option<u64>>, [
3716
+ IsmpConsensusStateMachineId
3717
+ ]>;
3115
3718
  /**
3116
3719
  * The child trie root of messages
3117
3720
  **/
@@ -3120,27 +3723,37 @@ declare module '@polkadot/api-base/types/storage' {
3120
3723
  * Holds the timestamp at which a consensus client was recently updated.
3121
3724
  * Used in ensuring that the configured challenge period elapses.
3122
3725
  **/
3123
- consensusClientUpdateTime: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [U8aFixed]>;
3726
+ consensusClientUpdateTime: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [
3727
+ U8aFixed
3728
+ ]>;
3124
3729
  /**
3125
3730
  * A mapping of consensus state identifier to it's associated consensus client identifier
3126
3731
  **/
3127
- consensusStateClient: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<U8aFixed>>, [U8aFixed]>;
3732
+ consensusStateClient: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<U8aFixed>>, [
3733
+ U8aFixed
3734
+ ]>;
3128
3735
  /**
3129
3736
  * Holds a map of consensus state identifiers to their consensus state.
3130
3737
  **/
3131
- consensusStates: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<Bytes>>, [U8aFixed]>;
3738
+ consensusStates: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<Bytes>>, [
3739
+ U8aFixed
3740
+ ]>;
3132
3741
  /**
3133
3742
  * Holds a map of consensus clients frozen due to byzantine
3134
3743
  * behaviour
3135
3744
  **/
3136
- frozenConsensusClients: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<bool>, [U8aFixed]>;
3745
+ frozenConsensusClients: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<bool>, [
3746
+ U8aFixed
3747
+ ]>;
3137
3748
  /**
3138
3749
  * The latest verified height for a state machine
3139
3750
  **/
3140
3751
  latestStateMachineHeight: AugmentedQuery<ApiType, (arg: IsmpConsensusStateMachineId | {
3141
3752
  stateId?: any;
3142
3753
  consensusStateId?: any;
3143
- } | string | Uint8Array) => Observable<Option<u64>>, [IsmpConsensusStateMachineId]>;
3754
+ } | string | Uint8Array) => Observable<Option<u64>>, [
3755
+ IsmpConsensusStateMachineId
3756
+ ]>;
3144
3757
  /**
3145
3758
  * Latest nonce for messages sent from this chain
3146
3759
  **/
@@ -3151,12 +3764,16 @@ declare module '@polkadot/api-base/types/storage' {
3151
3764
  previousStateMachineHeight: AugmentedQuery<ApiType, (arg: IsmpConsensusStateMachineId | {
3152
3765
  stateId?: any;
3153
3766
  consensusStateId?: any;
3154
- } | string | Uint8Array) => Observable<Option<u64>>, [IsmpConsensusStateMachineId]>;
3767
+ } | string | Uint8Array) => Observable<Option<u64>>, [
3768
+ IsmpConsensusStateMachineId
3769
+ ]>;
3155
3770
  /**
3156
3771
  * Tracks requests that have been responded to
3157
3772
  * The key is the request commitment
3158
3773
  **/
3159
- responded: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<bool>, [H256]>;
3774
+ responded: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<bool>, [
3775
+ H256
3776
+ ]>;
3160
3777
  /**
3161
3778
  * Holds a map of state machine heights to their verified state commitments. These state
3162
3779
  * commitments end up here after they are successfully verified by a `ConsensusClient`
@@ -3164,7 +3781,9 @@ declare module '@polkadot/api-base/types/storage' {
3164
3781
  stateCommitments: AugmentedQuery<ApiType, (arg: IsmpConsensusStateMachineHeight | {
3165
3782
  id?: any;
3166
3783
  height?: any;
3167
- } | string | Uint8Array) => Observable<Option<IsmpConsensusStateCommitment>>, [IsmpConsensusStateMachineHeight]>;
3784
+ } | string | Uint8Array) => Observable<Option<IsmpConsensusStateCommitment>>, [
3785
+ IsmpConsensusStateMachineHeight
3786
+ ]>;
3168
3787
  /**
3169
3788
  * Holds the timestamp at which a state machine height was updated.
3170
3789
  * Used in ensuring that the configured challenge period elapses.
@@ -3172,11 +3791,15 @@ declare module '@polkadot/api-base/types/storage' {
3172
3791
  stateMachineUpdateTime: AugmentedQuery<ApiType, (arg: IsmpConsensusStateMachineHeight | {
3173
3792
  id?: any;
3174
3793
  height?: any;
3175
- } | string | Uint8Array) => Observable<Option<u64>>, [IsmpConsensusStateMachineHeight]>;
3794
+ } | string | Uint8Array) => Observable<Option<u64>>, [
3795
+ IsmpConsensusStateMachineHeight
3796
+ ]>;
3176
3797
  /**
3177
3798
  * A mapping of consensus state identifiers to their unbonding periods
3178
3799
  **/
3179
- unbondingPeriod: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [U8aFixed]>;
3800
+ unbondingPeriod: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [
3801
+ U8aFixed
3802
+ ]>;
3180
3803
  };
3181
3804
  ismpGrandpa: {
3182
3805
  /**
@@ -3194,13 +3817,17 @@ declare module '@polkadot/api-base/types/storage' {
3194
3817
  Tendermint: any;
3195
3818
  } | {
3196
3819
  Relay: any;
3197
- } | string | Uint8Array) => Observable<Option<u64>>, [IsmpHostStateMachine]>;
3820
+ } | string | Uint8Array) => Observable<Option<u64>>, [
3821
+ IsmpHostStateMachine
3822
+ ]>;
3198
3823
  };
3199
3824
  miningSlot: {
3200
3825
  /**
3201
3826
  * Lookup by account id to the corresponding index in MinersByCohort and MinerNoncesByCohort
3202
3827
  **/
3203
- accountIndexLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u64, u32]>>>, [AccountId32]>;
3828
+ accountIndexLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u64, u32]>>>, [
3829
+ AccountId32
3830
+ ]>;
3204
3831
  activeMinersCount: AugmentedQuery<ApiType, () => Observable<u16>, []>;
3205
3832
  /**
3206
3833
  * Argonots that must be locked to take a Miner role
@@ -3214,7 +3841,8 @@ declare module '@polkadot/api-base/types/storage' {
3214
3841
  * The cohort set to go into effect in the next slot. The Vec has all
3215
3842
  * registrants with their bid amount
3216
3843
  **/
3217
- bidsForNextSlotCohort: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, []>;
3844
+ bidsForNextSlotCohort: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [
3845
+ ]>;
3218
3846
  /**
3219
3847
  * The number of reward ticks remaining in the frame
3220
3848
  **/
@@ -3231,7 +3859,8 @@ declare module '@polkadot/api-base/types/storage' {
3231
3859
  /**
3232
3860
  * The number of bids per slot for the last 10 slots (newest first)
3233
3861
  **/
3234
- historicalBidsPerSlot: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningBidStats>>, []>;
3862
+ historicalBidsPerSlot: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningBidStats>>, [
3863
+ ]>;
3235
3864
  /**
3236
3865
  * Is the next slot still open for bids
3237
3866
  **/
@@ -3241,15 +3870,19 @@ declare module '@polkadot/api-base/types/storage' {
3241
3870
  * block. It's a blake2 256 hash of the miner account id and the block hash at time of
3242
3871
  * activation.
3243
3872
  **/
3244
- minerNonceScoringByCohort: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, Vec<PalletMiningSlotMinerNonceScoring>>>, []>;
3873
+ minerNonceScoringByCohort: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, Vec<PalletMiningSlotMinerNonceScoring>>>, [
3874
+ ]>;
3245
3875
  /**
3246
3876
  * Miners that are active in the current block (post initialize) by their starting frame
3247
3877
  **/
3248
- minersByCohort: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [u64]>;
3878
+ minersByCohort: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [
3879
+ u64
3880
+ ]>;
3249
3881
  /**
3250
3882
  * The mining slot configuration set in genesis
3251
3883
  **/
3252
- miningConfig: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBlockSealMiningSlotConfig>, []>;
3884
+ miningConfig: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBlockSealMiningSlotConfig>, [
3885
+ ]>;
3253
3886
  /**
3254
3887
  * Is a new frame started in this block
3255
3888
  **/
@@ -3266,20 +3899,24 @@ declare module '@polkadot/api-base/types/storage' {
3266
3899
  /**
3267
3900
  * The miners released in the last block (only kept for a single block)
3268
3901
  **/
3269
- releasedMinersByAccountId: AugmentedQuery<ApiType, () => Observable<BTreeMap<AccountId32, ArgonPrimitivesBlockSealMiningRegistration>>, []>;
3902
+ releasedMinersByAccountId: AugmentedQuery<ApiType, () => Observable<BTreeMap<AccountId32, ArgonPrimitivesBlockSealMiningRegistration>>, [
3903
+ ]>;
3270
3904
  /**
3271
3905
  * The upcoming changes scheduled for cohort size by frame.
3272
3906
  * Capacity of 11 allows for 10 frames worth of scheduled changes plus one working slot
3273
3907
  * to schedule a new change during frame finalization.
3274
3908
  **/
3275
- scheduledCohortSizeChangeByFrame: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, u32>>, []>;
3909
+ scheduledCohortSizeChangeByFrame: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, u32>>, [
3910
+ ]>;
3276
3911
  /**
3277
3912
  * Temporary store the frame info digest
3278
3913
  **/
3279
- tempFrameInfoDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsFrameInfo>>, []>;
3914
+ tempFrameInfoDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsFrameInfo>>, [
3915
+ ]>;
3280
3916
  };
3281
3917
  mint: {
3282
- blockMintAction: AugmentedQuery<ApiType, () => Observable<ITuple<[u32, PalletMintMintAction]>>, []>;
3918
+ blockMintAction: AugmentedQuery<ApiType, () => Observable<ITuple<[u32, PalletMintMintAction]>>, [
3919
+ ]>;
3283
3920
  /**
3284
3921
  * The amount of argons minted per mining cohort (ie, grouped by starting frame id)
3285
3922
  **/
@@ -3297,24 +3934,37 @@ declare module '@polkadot/api-base/types/storage' {
3297
3934
  * a) CPI >= 0 and
3298
3935
  * b) the aggregate minted Bitcoins <= the aggregate minted microgons from mining
3299
3936
  **/
3300
- pendingMintUtxos: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, AccountId32, u128]>>>, []>;
3937
+ pendingMintUtxos: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, AccountId32, u128]>>>, [
3938
+ ]>;
3301
3939
  };
3302
3940
  multisig: {
3303
3941
  /**
3304
3942
  * The set of open multisig operations.
3305
3943
  **/
3306
- multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PalletMultisigMultisig>>, [AccountId32, U8aFixed]>;
3944
+ multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PalletMultisigMultisig>>, [
3945
+ AccountId32,
3946
+ U8aFixed
3947
+ ]>;
3307
3948
  };
3308
3949
  notaries: {
3309
- activeNotaries: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryRecord>>, []>;
3310
- expiringProposals: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [u32]>;
3950
+ activeNotaries: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryRecord>>, [
3951
+ ]>;
3952
+ expiringProposals: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [
3953
+ u32
3954
+ ]>;
3311
3955
  nextNotaryId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
3312
- notaryKeyHistory: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[u64, U8aFixed]>>>, [u32]>;
3313
- proposedNotaries: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesNotaryNotaryMeta, u32]>>>, [AccountId32]>;
3956
+ notaryKeyHistory: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[u64, U8aFixed]>>>, [
3957
+ u32
3958
+ ]>;
3959
+ proposedNotaries: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesNotaryNotaryMeta, u32]>>>, [
3960
+ AccountId32
3961
+ ]>;
3314
3962
  /**
3315
3963
  * Metadata changes to be activated at the given tick
3316
3964
  **/
3317
- queuedNotaryMetaChanges: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, ArgonPrimitivesNotaryNotaryMeta>>, [u64]>;
3965
+ queuedNotaryMetaChanges: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, ArgonPrimitivesNotaryNotaryMeta>>, [
3966
+ u64
3967
+ ]>;
3318
3968
  };
3319
3969
  notebook: {
3320
3970
  /**
@@ -3325,11 +3975,15 @@ declare module '@polkadot/api-base/types/storage' {
3325
3975
  accountOriginLastChangedNotebookByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ArgonPrimitivesBalanceChangeAccountOrigin | {
3326
3976
  notebookNumber?: any;
3327
3977
  accountUid?: any;
3328
- } | string | Uint8Array) => Observable<Option<u32>>, [u32, ArgonPrimitivesBalanceChangeAccountOrigin]>;
3978
+ } | string | Uint8Array) => Observable<Option<u32>>, [
3979
+ u32,
3980
+ ArgonPrimitivesBalanceChangeAccountOrigin
3981
+ ]>;
3329
3982
  /**
3330
3983
  * The notebooks included in this block
3331
3984
  **/
3332
- blockNotebooks: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesDigestsNotebookDigest>, []>;
3985
+ blockNotebooks: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesDigestsNotebookDigest>, [
3986
+ ]>;
3333
3987
  /**
3334
3988
  * Check if the inherent was included
3335
3989
  **/
@@ -3338,19 +3992,28 @@ declare module '@polkadot/api-base/types/storage' {
3338
3992
  * List of last few notebook details by notary. The bool is whether the notebook is eligible
3339
3993
  * for votes (received at correct tick and audit passed)
3340
3994
  **/
3341
- lastNotebookDetailsByNotary: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[ArgonPrimitivesNotaryNotaryNotebookKeyDetails, bool]>>>, [u32]>;
3995
+ lastNotebookDetailsByNotary: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[ArgonPrimitivesNotaryNotaryNotebookKeyDetails, bool]>>>, [
3996
+ u32
3997
+ ]>;
3342
3998
  /**
3343
3999
  * Notaries ready to start reprocessing at a given notebook number
3344
4000
  **/
3345
- lockedNotaryReadyForReprocess: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32]>;
4001
+ lockedNotaryReadyForReprocess: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
4002
+ u32
4003
+ ]>;
3346
4004
  /**
3347
4005
  * Notaries locked for failing audits
3348
4006
  **/
3349
- notariesLockedForFailedAudit: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, u64, ArgonNotaryAuditErrorVerifyError]>>>, [u32]>;
4007
+ notariesLockedForFailedAudit: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, u64, ArgonNotaryAuditErrorVerifyError]>>>, [
4008
+ u32
4009
+ ]>;
3350
4010
  /**
3351
4011
  * Double storage map of notary id + notebook # to the change root
3352
4012
  **/
3353
- notebookChangedAccountsRootByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [u32, u32]>;
4013
+ notebookChangedAccountsRootByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [
4014
+ u32,
4015
+ u32
4016
+ ]>;
3354
4017
  };
3355
4018
  ownership: {
3356
4019
  /**
@@ -3379,15 +4042,21 @@ declare module '@polkadot/api-base/types/storage' {
3379
4042
  * `Balances` pallet, which uses a `StorageMap` to store balances data only.
3380
4043
  * NOTE: This is only used in the case that this pallet is used to store balances.
3381
4044
  **/
3382
- account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]>;
4045
+ account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [
4046
+ AccountId32
4047
+ ]>;
3383
4048
  /**
3384
4049
  * Freeze locks on account balances.
3385
4050
  **/
3386
- freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]>;
4051
+ freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [
4052
+ AccountId32
4053
+ ]>;
3387
4054
  /**
3388
4055
  * Holds on account balances.
3389
4056
  **/
3390
- holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]>;
4057
+ holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [
4058
+ AccountId32
4059
+ ]>;
3391
4060
  /**
3392
4061
  * The total units of outstanding deactivated balance in the system.
3393
4062
  **/
@@ -3398,13 +4067,17 @@ declare module '@polkadot/api-base/types/storage' {
3398
4067
  *
3399
4068
  * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
3400
4069
  **/
3401
- locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [AccountId32]>;
4070
+ locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [
4071
+ AccountId32
4072
+ ]>;
3402
4073
  /**
3403
4074
  * Named reserves on some account balances.
3404
4075
  *
3405
4076
  * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
3406
4077
  **/
3407
- reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [AccountId32]>;
4078
+ reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [
4079
+ AccountId32
4080
+ ]>;
3408
4081
  /**
3409
4082
  * The total units issued in the system.
3410
4083
  **/
@@ -3418,7 +4091,8 @@ declare module '@polkadot/api-base/types/storage' {
3418
4091
  /**
3419
4092
  * Tracks the average cpi data every 60 ticks
3420
4093
  **/
3421
- historicArgonCPI: AugmentedQuery<ApiType, () => Observable<Vec<PalletPriceIndexCpiMeasurementBucket>>, []>;
4094
+ historicArgonCPI: AugmentedQuery<ApiType, () => Observable<Vec<PalletPriceIndexCpiMeasurementBucket>>, [
4095
+ ]>;
3422
4096
  /**
3423
4097
  * Stores the last valid price index
3424
4098
  **/
@@ -3432,12 +4106,16 @@ declare module '@polkadot/api-base/types/storage' {
3432
4106
  /**
3433
4107
  * The announcements made by the proxy (key).
3434
4108
  **/
3435
- announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyAnnouncement>, u128]>>, [AccountId32]>;
4109
+ announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyAnnouncement>, u128]>>, [
4110
+ AccountId32
4111
+ ]>;
3436
4112
  /**
3437
4113
  * The set of account proxies. Maps the account which has delegated to the accounts
3438
4114
  * which are being delegated to, together with the amount held on deposit.
3439
4115
  **/
3440
- proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyProxyDefinition>, u128]>>, [AccountId32]>;
4116
+ proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyProxyDefinition>, u128]>>, [
4117
+ AccountId32
4118
+ ]>;
3441
4119
  };
3442
4120
  sudo: {
3443
4121
  /**
@@ -3449,7 +4127,9 @@ declare module '@polkadot/api-base/types/storage' {
3449
4127
  /**
3450
4128
  * The full account information for a particular account ID.
3451
4129
  **/
3452
- account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<FrameSystemAccountInfo>, [AccountId32]>;
4130
+ account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<FrameSystemAccountInfo>, [
4131
+ AccountId32
4132
+ ]>;
3453
4133
  /**
3454
4134
  * Total length (in bytes) for all extrinsics put together, for the current block.
3455
4135
  **/
@@ -3457,15 +4137,19 @@ declare module '@polkadot/api-base/types/storage' {
3457
4137
  /**
3458
4138
  * `Some` if a code upgrade has been authorized.
3459
4139
  **/
3460
- authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemCodeUpgradeAuthorization>>, []>;
4140
+ authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemCodeUpgradeAuthorization>>, [
4141
+ ]>;
3461
4142
  /**
3462
4143
  * Map of block numbers to block hashes.
3463
4144
  **/
3464
- blockHash: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [u32]>;
4145
+ blockHash: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [
4146
+ u32
4147
+ ]>;
3465
4148
  /**
3466
4149
  * The current weight for the block.
3467
4150
  **/
3468
- blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, []>;
4151
+ blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, [
4152
+ ]>;
3469
4153
  /**
3470
4154
  * Digest of the current block, also part of the block header.
3471
4155
  **/
@@ -3496,7 +4180,9 @@ declare module '@polkadot/api-base/types/storage' {
3496
4180
  * the `EventIndex` then in case if the topic has the same contents on the next block
3497
4181
  * no notification will be triggered thus the event might be lost.
3498
4182
  **/
3499
- eventTopics: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Vec<ITuple<[u32, u32]>>>, [H256]>;
4183
+ eventTopics: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Vec<ITuple<[u32, u32]>>>, [
4184
+ H256
4185
+ ]>;
3500
4186
  /**
3501
4187
  * The execution phase of the block.
3502
4188
  **/
@@ -3508,7 +4194,9 @@ declare module '@polkadot/api-base/types/storage' {
3508
4194
  /**
3509
4195
  * Extrinsics data for the current block (maps an extrinsic's index to its data).
3510
4196
  **/
3511
- extrinsicData: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [u32]>;
4197
+ extrinsicData: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [
4198
+ u32
4199
+ ]>;
3512
4200
  /**
3513
4201
  * The weight reclaimed for the extrinsic.
3514
4202
  *
@@ -3518,7 +4206,8 @@ declare module '@polkadot/api-base/types/storage' {
3518
4206
  * Logic doing some post dispatch weight reduction must update this storage to avoid duplicate
3519
4207
  * reduction.
3520
4208
  **/
3521
- extrinsicWeightReclaimed: AugmentedQuery<ApiType, () => Observable<SpWeightsWeightV2Weight>, []>;
4209
+ extrinsicWeightReclaimed: AugmentedQuery<ApiType, () => Observable<SpWeightsWeightV2Weight>, [
4210
+ ]>;
3522
4211
  /**
3523
4212
  * Whether all inherents have been applied.
3524
4213
  **/
@@ -3526,7 +4215,8 @@ declare module '@polkadot/api-base/types/storage' {
3526
4215
  /**
3527
4216
  * Stores the `spec_version` and `spec_name` of when the last runtime upgrade happened.
3528
4217
  **/
3529
- lastRuntimeUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemLastRuntimeUpgradeInfo>>, []>;
4218
+ lastRuntimeUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemLastRuntimeUpgradeInfo>>, [
4219
+ ]>;
3530
4220
  /**
3531
4221
  * The current block number being processed. Set by `execute_block`.
3532
4222
  **/
@@ -3554,7 +4244,9 @@ declare module '@polkadot/api-base/types/storage' {
3554
4244
  * Blocks from the last 100 ticks. Trimmed in on_initialize.
3555
4245
  * NOTE: cannot include the current block hash until next block
3556
4246
  **/
3557
- recentBlocksAtTicks: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [u64]>;
4247
+ recentBlocksAtTicks: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [
4248
+ u64
4249
+ ]>;
3558
4250
  };
3559
4251
  timestamp: {
3560
4252
  /**
@@ -3574,11 +4266,15 @@ declare module '@polkadot/api-base/types/storage' {
3574
4266
  * Assets supported by this instance of token gateway
3575
4267
  * A map of the token gateway asset id to the local asset id
3576
4268
  **/
3577
- localAssets: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<u32>>, [H256]>;
4269
+ localAssets: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<u32>>, [
4270
+ H256
4271
+ ]>;
3578
4272
  /**
3579
4273
  * Assets that originate from this chain
3580
4274
  **/
3581
- nativeAssets: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]>;
4275
+ nativeAssets: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [
4276
+ u32
4277
+ ]>;
3582
4278
  /**
3583
4279
  * The decimals used by the EVM counterpart of this asset
3584
4280
  **/
@@ -3594,12 +4290,17 @@ declare module '@polkadot/api-base/types/storage' {
3594
4290
  Tendermint: any;
3595
4291
  } | {
3596
4292
  Relay: any;
3597
- } | string | Uint8Array) => Observable<Option<u8>>, [u32, IsmpHostStateMachine]>;
4293
+ } | string | Uint8Array) => Observable<Option<u8>>, [
4294
+ u32,
4295
+ IsmpHostStateMachine
4296
+ ]>;
3598
4297
  /**
3599
4298
  * Assets supported by this instance of token gateway
3600
4299
  * A map of the local asset id to the token gateway asset id
3601
4300
  **/
3602
- supportedAssets: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [u32]>;
4301
+ supportedAssets: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [
4302
+ u32
4303
+ ]>;
3603
4304
  /**
3604
4305
  * The token gateway adresses on different chains
3605
4306
  **/
@@ -3615,76 +4316,103 @@ declare module '@polkadot/api-base/types/storage' {
3615
4316
  Tendermint: any;
3616
4317
  } | {
3617
4318
  Relay: any;
3618
- } | string | Uint8Array) => Observable<Option<Bytes>>, [IsmpHostStateMachine]>;
4319
+ } | string | Uint8Array) => Observable<Option<Bytes>>, [
4320
+ IsmpHostStateMachine
4321
+ ]>;
3619
4322
  };
3620
4323
  transactionPayment: {
3621
4324
  nextFeeMultiplier: AugmentedQuery<ApiType, () => Observable<u128>, []>;
3622
- storageVersion: AugmentedQuery<ApiType, () => Observable<PalletTransactionPaymentReleases>, []>;
4325
+ storageVersion: AugmentedQuery<ApiType, () => Observable<PalletTransactionPaymentReleases>, [
4326
+ ]>;
3623
4327
  };
3624
4328
  treasury: {
3625
4329
  /**
3626
4330
  * The treasury pool for the current frame. This correlates with the bids coming in for the
3627
4331
  * current frame. Sorted with the biggest share last. (current frame)
3628
4332
  **/
3629
- capitalActive: AugmentedQuery<ApiType, () => Observable<Vec<PalletTreasuryTreasuryCapital>>, []>;
4333
+ capitalActive: AugmentedQuery<ApiType, () => Observable<Vec<PalletTreasuryTreasuryCapital>>, [
4334
+ ]>;
3630
4335
  /**
3631
4336
  * The treasury pool still raising capital. (current frame + 1)
3632
4337
  **/
3633
- capitalRaising: AugmentedQuery<ApiType, () => Observable<Vec<PalletTreasuryTreasuryCapital>>, []>;
4338
+ capitalRaising: AugmentedQuery<ApiType, () => Observable<Vec<PalletTreasuryTreasuryCapital>>, [
4339
+ ]>;
3634
4340
  /**
3635
4341
  * Any vaults that have been pre-registered for bonding argons. This is used by the vault
3636
4342
  * operator to allocate argons to be bonded once bitcoins are securitized in their vault.
3637
4343
  **/
3638
- prebondedByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletTreasuryPrebondedArgons>>, [u32]>;
4344
+ prebondedByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletTreasuryPrebondedArgons>>, [
4345
+ u32
4346
+ ]>;
3639
4347
  /**
3640
4348
  * The currently earning contributors for the current epoch's bond funds. Sorted by highest
3641
4349
  * bids first
3642
4350
  **/
3643
- vaultPoolsByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, PalletTreasuryTreasuryPool>>, [u64]>;
4351
+ vaultPoolsByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, PalletTreasuryTreasuryPool>>, [
4352
+ u64
4353
+ ]>;
3644
4354
  };
3645
4355
  txPause: {
3646
4356
  /**
3647
4357
  * The set of calls that are explicitly paused.
3648
4358
  **/
3649
- pausedCalls: AugmentedQuery<ApiType, (arg: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<Null>>, [ITuple<[Bytes, Bytes]>]>;
4359
+ pausedCalls: AugmentedQuery<ApiType, (arg: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<Null>>, [
4360
+ ITuple<[Bytes, Bytes]>
4361
+ ]>;
3650
4362
  };
3651
4363
  vaults: {
3652
4364
  /**
3653
4365
  * The last collect frame of each vault
3654
4366
  **/
3655
- lastCollectFrameByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u64>>, [u32]>;
4367
+ lastCollectFrameByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u64>>, [
4368
+ u32
4369
+ ]>;
3656
4370
  nextVaultId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
3657
4371
  /**
3658
4372
  * Bitcoin Locks pending cosign by vault id
3659
4373
  **/
3660
- pendingCosignByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u32]>;
4374
+ pendingCosignByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
4375
+ u32
4376
+ ]>;
3661
4377
  /**
3662
4378
  * Pending terms that will be committed at the given block number (must be a minimum of 1 slot
3663
4379
  * change away)
3664
4380
  **/
3665
- pendingTermsModificationsByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [u64]>;
4381
+ pendingTermsModificationsByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [
4382
+ u64
4383
+ ]>;
3666
4384
  /**
3667
4385
  * Tracks revenue from Bitcoin Locks and Treasury Pools for the trailing frames for each vault
3668
4386
  * (a frame is a "mining day" in Argon). Newest frames are first. Frames are removed after the
3669
4387
  * collect expiration window (`RevenueCollectionExpirationFrames`).
3670
4388
  **/
3671
- revenuePerFrameByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsVaultFrameRevenue>>, [u32]>;
4389
+ revenuePerFrameByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsVaultFrameRevenue>>, [
4390
+ u32
4391
+ ]>;
3672
4392
  /**
3673
4393
  * The vaults that have funds releasing at a given bitcoin height
3674
4394
  **/
3675
- vaultFundsReleasingByHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [u64]>;
4395
+ vaultFundsReleasingByHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [
4396
+ u64
4397
+ ]>;
3676
4398
  /**
3677
4399
  * Vaults by owner
3678
4400
  **/
3679
- vaultIdByOperator: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]>;
4401
+ vaultIdByOperator: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [
4402
+ AccountId32
4403
+ ]>;
3680
4404
  /**
3681
4405
  * Vaults by id
3682
4406
  **/
3683
- vaultsById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesVault>>, [u32]>;
4407
+ vaultsById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesVault>>, [
4408
+ u32
4409
+ ]>;
3684
4410
  /**
3685
4411
  * Vault Bitcoin Xpub and current child counter by VaultId
3686
4412
  **/
3687
- vaultXPubById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesBitcoinBitcoinXPub, u32]>>>, [u32]>;
4413
+ vaultXPubById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesBitcoinBitcoinXPub, u32]>>>, [
4414
+ u32
4415
+ ]>;
3688
4416
  };
3689
4417
  }
3690
4418
  }
@@ -3701,7 +4429,10 @@ declare module '@polkadot/api-base/types/submittable' {
3701
4429
  * Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
3702
4430
  * this `burn` operation will reduce total issuance by the amount _burned_.
3703
4431
  **/
3704
- burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
4432
+ burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4433
+ Compact<u128>,
4434
+ bool
4435
+ ]>;
3705
4436
  /**
3706
4437
  * Adjust the total issuance in a saturating way.
3707
4438
  *
@@ -3709,7 +4440,10 @@ declare module '@polkadot/api-base/types/submittable' {
3709
4440
  *
3710
4441
  * # Example
3711
4442
  **/
3712
- forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
4443
+ forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4444
+ PalletBalancesAdjustmentDirection,
4445
+ Compact<u128>
4446
+ ]>;
3713
4447
  /**
3714
4448
  * Set the regular balance of a given account.
3715
4449
  *
@@ -3725,7 +4459,10 @@ declare module '@polkadot/api-base/types/submittable' {
3725
4459
  Address32: any;
3726
4460
  } | {
3727
4461
  Address20: any;
3728
- } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
4462
+ } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4463
+ MultiAddress,
4464
+ Compact<u128>
4465
+ ]>;
3729
4466
  /**
3730
4467
  * Exactly as `transfer_allow_death`, except the origin must be root and the source account
3731
4468
  * may be specified.
@@ -3750,7 +4487,11 @@ declare module '@polkadot/api-base/types/submittable' {
3750
4487
  Address32: any;
3751
4488
  } | {
3752
4489
  Address20: any;
3753
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
4490
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4491
+ MultiAddress,
4492
+ MultiAddress,
4493
+ Compact<u128>
4494
+ ]>;
3754
4495
  /**
3755
4496
  * Unreserve some balance from a user by force.
3756
4497
  *
@@ -3766,7 +4507,10 @@ declare module '@polkadot/api-base/types/submittable' {
3766
4507
  Address32: any;
3767
4508
  } | {
3768
4509
  Address20: any;
3769
- } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
4510
+ } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4511
+ MultiAddress,
4512
+ u128
4513
+ ]>;
3770
4514
  /**
3771
4515
  * Transfer the entire transferable balance from the caller account.
3772
4516
  *
@@ -3794,7 +4538,10 @@ declare module '@polkadot/api-base/types/submittable' {
3794
4538
  Address32: any;
3795
4539
  } | {
3796
4540
  Address20: any;
3797
- } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
4541
+ } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4542
+ MultiAddress,
4543
+ bool
4544
+ ]>;
3798
4545
  /**
3799
4546
  * Transfer some liquid free balance to another account.
3800
4547
  *
@@ -3814,7 +4561,10 @@ declare module '@polkadot/api-base/types/submittable' {
3814
4561
  Address32: any;
3815
4562
  } | {
3816
4563
  Address20: any;
3817
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
4564
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4565
+ MultiAddress,
4566
+ Compact<u128>
4567
+ ]>;
3818
4568
  /**
3819
4569
  * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
3820
4570
  * kill the origin account.
@@ -3833,7 +4583,10 @@ declare module '@polkadot/api-base/types/submittable' {
3833
4583
  Address32: any;
3834
4584
  } | {
3835
4585
  Address20: any;
3836
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
4586
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4587
+ MultiAddress,
4588
+ Compact<u128>
4589
+ ]>;
3837
4590
  /**
3838
4591
  * Upgrade a specified account.
3839
4592
  *
@@ -3844,10 +4597,14 @@ declare module '@polkadot/api-base/types/submittable' {
3844
4597
  * be upgraded. (We let some not have to be upgraded just in order to allow for the
3845
4598
  * possibility of churn).
3846
4599
  **/
3847
- upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
4600
+ upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
4601
+ Vec<AccountId32>
4602
+ ]>;
3848
4603
  };
3849
4604
  bitcoinLocks: {
3850
- adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
4605
+ adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4606
+ u64
4607
+ ]>;
3851
4608
  /**
3852
4609
  * Submitted by a Vault operator to cosign the release of a bitcoin utxo. The Bitcoin owner
3853
4610
  * release fee will be burned, and the lock will be allowed to expire without a penalty.
@@ -3855,7 +4612,10 @@ declare module '@polkadot/api-base/types/submittable' {
3855
4612
  * This is submitted as a no-fee transaction off chain to allow keys to remain in cold
3856
4613
  * wallets.
3857
4614
  **/
3858
- cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes]>;
4615
+ cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4616
+ u64,
4617
+ Bytes
4618
+ ]>;
3859
4619
  /**
3860
4620
  * Initialize a bitcoin lock. This will create a LockedBitcoin for the submitting account
3861
4621
  * and log the Bitcoin Script hash to Events.
@@ -3866,7 +4626,11 @@ declare module '@polkadot/api-base/types/submittable' {
3866
4626
  * NOTE: A "lock-er" must send btc to the cosigner UTXO address to "complete" the
3867
4627
  * LockedBitcoin and be added to the Bitcoin Mint line.
3868
4628
  **/
3869
- initialize: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Compact<u64>, ArgonPrimitivesBitcoinCompressedBitcoinPubkey]>;
4629
+ initialize: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4630
+ u32,
4631
+ Compact<u64>,
4632
+ ArgonPrimitivesBitcoinCompressedBitcoinPubkey
4633
+ ]>;
3870
4634
  /**
3871
4635
  * Ratcheting allows a user to change the lock price of their bitcoin lock. This is
3872
4636
  * functionally the same as releasing and re-initializing, but it allows a user to skip
@@ -3883,7 +4647,9 @@ declare module '@polkadot/api-base/types/submittable' {
3883
4647
  * prorated fee for the remainder of your existing lock duration. You are added to the mint
3884
4648
  * queue for the difference in your new lock price vs the previous lock price.
3885
4649
  **/
3886
- ratchet: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
4650
+ ratchet: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4651
+ u64
4652
+ ]>;
3887
4653
  /**
3888
4654
  * Submitted by a Bitcoin holder to trigger the release of their Utxo out of the cosign
3889
4655
  * script. A transaction spending the UTXO should be pre-created so that the sighash
@@ -3892,7 +4658,11 @@ declare module '@polkadot/api-base/types/submittable' {
3892
4658
  *
3893
4659
  * Owner must submit a script pubkey and also a fee to pay to the bitcoin network.
3894
4660
  **/
3895
- requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes, u64]>;
4661
+ requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4662
+ u64,
4663
+ Bytes,
4664
+ u64
4665
+ ]>;
3896
4666
  };
3897
4667
  bitcoinUtxos: {
3898
4668
  /**
@@ -3902,14 +4672,19 @@ declare module '@polkadot/api-base/types/submittable' {
3902
4672
  * # Arguments
3903
4673
  * * `bitcoin_height` - the latest bitcoin block height to be confirmed
3904
4674
  **/
3905
- setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, ArgonPrimitivesBitcoinH256Le]>;
4675
+ setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4676
+ u64,
4677
+ ArgonPrimitivesBitcoinH256Le
4678
+ ]>;
3906
4679
  /**
3907
4680
  * Sets the oracle operator account id (only executable by the Root account)
3908
4681
  *
3909
4682
  * # Arguments
3910
4683
  * * `account_id` - the account id of the operator
3911
4684
  **/
3912
- setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
4685
+ setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4686
+ AccountId32
4687
+ ]>;
3913
4688
  /**
3914
4689
  * Submitted when a bitcoin UTXO has been moved or confirmed
3915
4690
  **/
@@ -3918,30 +4693,45 @@ declare module '@polkadot/api-base/types/submittable' {
3918
4693
  verified?: any;
3919
4694
  invalid?: any;
3920
4695
  syncToBlock?: any;
3921
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBitcoinUtxoSync]>;
4696
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4697
+ ArgonPrimitivesInherentsBitcoinUtxoSync
4698
+ ]>;
3922
4699
  };
3923
4700
  blockRewards: {
3924
- setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
4701
+ setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4702
+ bool
4703
+ ]>;
3925
4704
  };
3926
4705
  blockSeal: {
3927
4706
  apply: AugmentedSubmittable<(seal: ArgonPrimitivesInherentsBlockSealInherent | {
3928
4707
  Vote: any;
3929
4708
  } | {
3930
4709
  Compute: any;
3931
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBlockSealInherent]>;
4710
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4711
+ ArgonPrimitivesInherentsBlockSealInherent
4712
+ ]>;
3932
4713
  };
3933
4714
  blockSealSpec: {
3934
- configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>, Option<u128>]>;
4715
+ configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [
4716
+ Option<u128>,
4717
+ Option<u128>
4718
+ ]>;
3935
4719
  };
3936
4720
  chainTransfer: {
3937
- sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, u32]>;
4721
+ sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4722
+ Compact<u128>,
4723
+ u32
4724
+ ]>;
3938
4725
  };
3939
4726
  domains: {
3940
4727
  setZoneRecord: AugmentedSubmittable<(domainHash: H256 | string | Uint8Array, zoneRecord: ArgonPrimitivesDomainZoneRecord | {
3941
4728
  paymentAccount?: any;
3942
4729
  notaryId?: any;
3943
4730
  versions?: any;
3944
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, ArgonPrimitivesDomainZoneRecord]>;
4731
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4732
+ H256,
4733
+ ArgonPrimitivesDomainZoneRecord
4734
+ ]>;
3945
4735
  };
3946
4736
  grandpa: {
3947
4737
  /**
@@ -3958,7 +4748,10 @@ declare module '@polkadot/api-base/types/submittable' {
3958
4748
  *
3959
4749
  * Only callable by root.
3960
4750
  **/
3961
- noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
4751
+ noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4752
+ u32,
4753
+ u32
4754
+ ]>;
3962
4755
  /**
3963
4756
  * Report voter equivocation/misbehavior. This method will verify the
3964
4757
  * equivocation proof and validate the given key ownership proof
@@ -3968,7 +4761,10 @@ declare module '@polkadot/api-base/types/submittable' {
3968
4761
  reportEquivocation: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
3969
4762
  setId?: any;
3970
4763
  equivocation?: any;
3971
- } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
4764
+ } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
4765
+ SpConsensusGrandpaEquivocationProof,
4766
+ SpCoreVoid
4767
+ ]>;
3972
4768
  /**
3973
4769
  * Report voter equivocation/misbehavior. This method will verify the
3974
4770
  * equivocation proof and validate the given key ownership proof
@@ -3983,7 +4779,10 @@ declare module '@polkadot/api-base/types/submittable' {
3983
4779
  reportEquivocationUnsigned: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
3984
4780
  setId?: any;
3985
4781
  equivocation?: any;
3986
- } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
4782
+ } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
4783
+ SpConsensusGrandpaEquivocationProof,
4784
+ SpCoreVoid
4785
+ ]>;
3987
4786
  };
3988
4787
  ismp: {
3989
4788
  /**
@@ -4002,7 +4801,9 @@ declare module '@polkadot/api-base/types/submittable' {
4002
4801
  unbondingPeriod?: any;
4003
4802
  challengePeriods?: any;
4004
4803
  stateMachineCommitments?: any;
4005
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [IsmpMessagingCreateConsensusState]>;
4804
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4805
+ IsmpMessagingCreateConsensusState
4806
+ ]>;
4006
4807
  /**
4007
4808
  * Add more funds to a message (request or response) to be used for delivery and execution.
4008
4809
  *
@@ -4012,7 +4813,9 @@ declare module '@polkadot/api-base/types/submittable' {
4012
4813
  fundMessage: AugmentedSubmittable<(message: PalletIsmpUtilsFundMessageParams | {
4013
4814
  commitment?: any;
4014
4815
  amount?: any;
4015
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIsmpUtilsFundMessageParams]>;
4816
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4817
+ PalletIsmpUtilsFundMessageParams
4818
+ ]>;
4016
4819
  /**
4017
4820
  * Execute the provided batch of ISMP messages, this will short-circuit and revert if any
4018
4821
  * of the provided messages are invalid. This is an unsigned extrinsic that permits anyone
@@ -4035,7 +4838,9 @@ declare module '@polkadot/api-base/types/submittable' {
4035
4838
  Response: any;
4036
4839
  } | {
4037
4840
  Timeout: any;
4038
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpMessagingMessage>]>;
4841
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
4842
+ Vec<IsmpMessagingMessage>
4843
+ ]>;
4039
4844
  /**
4040
4845
  * Modify the unbonding period and challenge period for a consensus state.
4041
4846
  * The dispatch origin for this call must be `T::AdminOrigin`.
@@ -4046,7 +4851,9 @@ declare module '@polkadot/api-base/types/submittable' {
4046
4851
  consensusStateId?: any;
4047
4852
  unbondingPeriod?: any;
4048
4853
  challengePeriods?: any;
4049
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIsmpUtilsUpdateConsensusState]>;
4854
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4855
+ PalletIsmpUtilsUpdateConsensusState
4856
+ ]>;
4050
4857
  };
4051
4858
  ismpGrandpa: {
4052
4859
  /**
@@ -4055,7 +4862,9 @@ declare module '@polkadot/api-base/types/submittable' {
4055
4862
  addStateMachines: AugmentedSubmittable<(newStateMachines: Vec<IsmpGrandpaAddStateMachine> | (IsmpGrandpaAddStateMachine | {
4056
4863
  stateMachine?: any;
4057
4864
  slotDuration?: any;
4058
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpGrandpaAddStateMachine>]>;
4865
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
4866
+ Vec<IsmpGrandpaAddStateMachine>
4867
+ ]>;
4059
4868
  /**
4060
4869
  * Remove a state machine from the list of supported state machines
4061
4870
  **/
@@ -4071,7 +4880,9 @@ declare module '@polkadot/api-base/types/submittable' {
4071
4880
  Tendermint: any;
4072
4881
  } | {
4073
4882
  Relay: any;
4074
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpHostStateMachine>]>;
4883
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
4884
+ Vec<IsmpHostStateMachine>
4885
+ ]>;
4075
4886
  };
4076
4887
  miningSlot: {
4077
4888
  /**
@@ -4101,11 +4912,18 @@ declare module '@polkadot/api-base/types/submittable' {
4101
4912
  bid: AugmentedSubmittable<(bid: u128 | AnyNumber | Uint8Array, keys: ArgonRuntimeSessionKeys | {
4102
4913
  grandpa?: any;
4103
4914
  blockSealAuthority?: any;
4104
- } | string | Uint8Array, miningAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [u128, ArgonRuntimeSessionKeys, Option<AccountId32>]>;
4915
+ } | string | Uint8Array, miningAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [
4916
+ u128,
4917
+ ArgonRuntimeSessionKeys,
4918
+ Option<AccountId32>
4919
+ ]>;
4105
4920
  /**
4106
4921
  * Admin function to update the mining slot delay.
4107
4922
  **/
4108
- configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: Option<u64> | null | Uint8Array | u64 | AnyNumber, ticksBeforeBidEndForVrfClose: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>, Option<u64>]>;
4923
+ configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: Option<u64> | null | Uint8Array | u64 | AnyNumber, ticksBeforeBidEndForVrfClose: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [
4924
+ Option<u64>,
4925
+ Option<u64>
4926
+ ]>;
4109
4927
  };
4110
4928
  mint: {};
4111
4929
  multisig: {
@@ -4147,7 +4965,13 @@ declare module '@polkadot/api-base/types/submittable' {
4147
4965
  } | string, callHash: U8aFixed | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
4148
4966
  refTime?: any;
4149
4967
  proofSize?: any;
4150
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, U8aFixed, SpWeightsWeightV2Weight]>;
4968
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
4969
+ u16,
4970
+ Vec<AccountId32>,
4971
+ Option<PalletMultisigTimepoint>,
4972
+ U8aFixed,
4973
+ SpWeightsWeightV2Weight
4974
+ ]>;
4151
4975
  /**
4152
4976
  * Register approval for a dispatch to be made from a deterministic composite account if
4153
4977
  * approved by a total of `threshold - 1` of `other_signatories`.
@@ -4195,7 +5019,13 @@ declare module '@polkadot/api-base/types/submittable' {
4195
5019
  } | string, call: Call | IMethod | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
4196
5020
  refTime?: any;
4197
5021
  proofSize?: any;
4198
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, Call, SpWeightsWeightV2Weight]>;
5022
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5023
+ u16,
5024
+ Vec<AccountId32>,
5025
+ Option<PalletMultisigTimepoint>,
5026
+ Call,
5027
+ SpWeightsWeightV2Weight
5028
+ ]>;
4199
5029
  /**
4200
5030
  * Immediately dispatch a multi-signature call using a single approval from the caller.
4201
5031
  *
@@ -4210,7 +5040,10 @@ declare module '@polkadot/api-base/types/submittable' {
4210
5040
  * ## Complexity
4211
5041
  * O(Z + C) where Z is the length of the call and C its execution weight.
4212
5042
  **/
4213
- asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, Call]>;
5043
+ asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5044
+ Vec<AccountId32>,
5045
+ Call
5046
+ ]>;
4214
5047
  /**
4215
5048
  * Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously
4216
5049
  * for this operation will be unreserved on success.
@@ -4237,7 +5070,12 @@ declare module '@polkadot/api-base/types/submittable' {
4237
5070
  cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], timepoint: PalletMultisigTimepoint | {
4238
5071
  height?: any;
4239
5072
  index?: any;
4240
- } | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, PalletMultisigTimepoint, U8aFixed]>;
5073
+ } | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5074
+ u16,
5075
+ Vec<AccountId32>,
5076
+ PalletMultisigTimepoint,
5077
+ U8aFixed
5078
+ ]>;
4241
5079
  /**
4242
5080
  * Poke the deposit reserved for an existing multisig operation.
4243
5081
  *
@@ -4253,15 +5091,23 @@ declare module '@polkadot/api-base/types/submittable' {
4253
5091
  *
4254
5092
  * Emits `DepositPoked` if successful.
4255
5093
  **/
4256
- pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, U8aFixed]>;
5094
+ pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5095
+ u16,
5096
+ Vec<AccountId32>,
5097
+ U8aFixed
5098
+ ]>;
4257
5099
  };
4258
5100
  notaries: {
4259
- activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
5101
+ activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5102
+ AccountId32
5103
+ ]>;
4260
5104
  propose: AugmentedSubmittable<(meta: ArgonPrimitivesNotaryNotaryMeta | {
4261
5105
  name?: any;
4262
5106
  public?: any;
4263
5107
  hosts?: any;
4264
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesNotaryNotaryMeta]>;
5108
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5109
+ ArgonPrimitivesNotaryNotaryMeta
5110
+ ]>;
4265
5111
  /**
4266
5112
  * Update the metadata of a notary, to be effective at the given tick height, which must be
4267
5113
  * >= MetaChangesTickDelay ticks in the future.
@@ -4270,14 +5116,22 @@ declare module '@polkadot/api-base/types/submittable' {
4270
5116
  name?: any;
4271
5117
  public?: any;
4272
5118
  hosts?: any;
4273
- } | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, ArgonPrimitivesNotaryNotaryMeta, Compact<u64>]>;
5119
+ } | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5120
+ Compact<u32>,
5121
+ ArgonPrimitivesNotaryNotaryMeta,
5122
+ Compact<u64>
5123
+ ]>;
4274
5124
  };
4275
5125
  notebook: {
4276
5126
  submit: AugmentedSubmittable<(notebooks: Vec<ArgonPrimitivesNotebookSignedNotebookHeader> | (ArgonPrimitivesNotebookSignedNotebookHeader | {
4277
5127
  header?: any;
4278
5128
  signature?: any;
4279
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<ArgonPrimitivesNotebookSignedNotebookHeader>]>;
4280
- unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
5129
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
5130
+ Vec<ArgonPrimitivesNotebookSignedNotebookHeader>
5131
+ ]>;
5132
+ unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5133
+ u32
5134
+ ]>;
4281
5135
  };
4282
5136
  ownership: {
4283
5137
  /**
@@ -4289,7 +5143,10 @@ declare module '@polkadot/api-base/types/submittable' {
4289
5143
  * Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
4290
5144
  * this `burn` operation will reduce total issuance by the amount _burned_.
4291
5145
  **/
4292
- burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
5146
+ burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5147
+ Compact<u128>,
5148
+ bool
5149
+ ]>;
4293
5150
  /**
4294
5151
  * Adjust the total issuance in a saturating way.
4295
5152
  *
@@ -4297,7 +5154,10 @@ declare module '@polkadot/api-base/types/submittable' {
4297
5154
  *
4298
5155
  * # Example
4299
5156
  **/
4300
- forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
5157
+ forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5158
+ PalletBalancesAdjustmentDirection,
5159
+ Compact<u128>
5160
+ ]>;
4301
5161
  /**
4302
5162
  * Set the regular balance of a given account.
4303
5163
  *
@@ -4313,7 +5173,10 @@ declare module '@polkadot/api-base/types/submittable' {
4313
5173
  Address32: any;
4314
5174
  } | {
4315
5175
  Address20: any;
4316
- } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
5176
+ } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5177
+ MultiAddress,
5178
+ Compact<u128>
5179
+ ]>;
4317
5180
  /**
4318
5181
  * Exactly as `transfer_allow_death`, except the origin must be root and the source account
4319
5182
  * may be specified.
@@ -4338,7 +5201,11 @@ declare module '@polkadot/api-base/types/submittable' {
4338
5201
  Address32: any;
4339
5202
  } | {
4340
5203
  Address20: any;
4341
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
5204
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5205
+ MultiAddress,
5206
+ MultiAddress,
5207
+ Compact<u128>
5208
+ ]>;
4342
5209
  /**
4343
5210
  * Unreserve some balance from a user by force.
4344
5211
  *
@@ -4354,7 +5221,10 @@ declare module '@polkadot/api-base/types/submittable' {
4354
5221
  Address32: any;
4355
5222
  } | {
4356
5223
  Address20: any;
4357
- } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
5224
+ } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5225
+ MultiAddress,
5226
+ u128
5227
+ ]>;
4358
5228
  /**
4359
5229
  * Transfer the entire transferable balance from the caller account.
4360
5230
  *
@@ -4382,7 +5252,10 @@ declare module '@polkadot/api-base/types/submittable' {
4382
5252
  Address32: any;
4383
5253
  } | {
4384
5254
  Address20: any;
4385
- } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
5255
+ } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5256
+ MultiAddress,
5257
+ bool
5258
+ ]>;
4386
5259
  /**
4387
5260
  * Transfer some liquid free balance to another account.
4388
5261
  *
@@ -4402,7 +5275,10 @@ declare module '@polkadot/api-base/types/submittable' {
4402
5275
  Address32: any;
4403
5276
  } | {
4404
5277
  Address20: any;
4405
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
5278
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5279
+ MultiAddress,
5280
+ Compact<u128>
5281
+ ]>;
4406
5282
  /**
4407
5283
  * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
4408
5284
  * kill the origin account.
@@ -4421,7 +5297,10 @@ declare module '@polkadot/api-base/types/submittable' {
4421
5297
  Address32: any;
4422
5298
  } | {
4423
5299
  Address20: any;
4424
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
5300
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5301
+ MultiAddress,
5302
+ Compact<u128>
5303
+ ]>;
4425
5304
  /**
4426
5305
  * Upgrade a specified account.
4427
5306
  *
@@ -4432,7 +5311,9 @@ declare module '@polkadot/api-base/types/submittable' {
4432
5311
  * be upgraded. (We let some not have to be upgraded just in order to allow for the
4433
5312
  * possibility of churn).
4434
5313
  **/
4435
- upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
5314
+ upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
5315
+ Vec<AccountId32>
5316
+ ]>;
4436
5317
  };
4437
5318
  priceIndex: {
4438
5319
  /**
@@ -4441,7 +5322,9 @@ declare module '@polkadot/api-base/types/submittable' {
4441
5322
  * # Arguments
4442
5323
  * * `account_id` - the account id of the operator
4443
5324
  **/
4444
- setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
5325
+ setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5326
+ AccountId32
5327
+ ]>;
4445
5328
  /**
4446
5329
  * Submit the latest price index. Only valid for the configured operator account
4447
5330
  **/
@@ -4452,7 +5335,9 @@ declare module '@polkadot/api-base/types/submittable' {
4452
5335
  argonUsdTargetPrice?: any;
4453
5336
  argonTimeWeightedAverageLiquidity?: any;
4454
5337
  tick?: any;
4455
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletPriceIndexPriceIndex]>;
5338
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5339
+ PalletPriceIndexPriceIndex
5340
+ ]>;
4456
5341
  };
4457
5342
  proxy: {
4458
5343
  /**
@@ -4476,7 +5361,11 @@ declare module '@polkadot/api-base/types/submittable' {
4476
5361
  Address32: any;
4477
5362
  } | {
4478
5363
  Address20: any;
4479
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
5364
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5365
+ MultiAddress,
5366
+ ArgonRuntimeProxyType,
5367
+ u32
5368
+ ]>;
4480
5369
  /**
4481
5370
  * Publish the hash of a proxy-call that will be made in the future.
4482
5371
  *
@@ -4504,7 +5393,10 @@ declare module '@polkadot/api-base/types/submittable' {
4504
5393
  Address32: any;
4505
5394
  } | {
4506
5395
  Address20: any;
4507
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
5396
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5397
+ MultiAddress,
5398
+ H256
5399
+ ]>;
4508
5400
  /**
4509
5401
  * Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
4510
5402
  * initialize it with a proxy of `proxy_type` for `origin` sender.
@@ -4525,7 +5417,11 @@ declare module '@polkadot/api-base/types/submittable' {
4525
5417
  *
4526
5418
  * Fails if there are insufficient funds to pay for deposit.
4527
5419
  **/
4528
- createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeProxyType, u32, u16]>;
5420
+ createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5421
+ ArgonRuntimeProxyType,
5422
+ u32,
5423
+ u16
5424
+ ]>;
4529
5425
  /**
4530
5426
  * Removes a previously spawned pure proxy.
4531
5427
  *
@@ -4554,7 +5450,13 @@ declare module '@polkadot/api-base/types/submittable' {
4554
5450
  Address32: any;
4555
5451
  } | {
4556
5452
  Address20: any;
4557
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
5453
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5454
+ MultiAddress,
5455
+ ArgonRuntimeProxyType,
5456
+ u16,
5457
+ Compact<u32>,
5458
+ Compact<u32>
5459
+ ]>;
4558
5460
  /**
4559
5461
  * Poke / Adjust deposits made for proxies and announcements based on current values.
4560
5462
  * This can be used by accounts to possibly lower their locked amount.
@@ -4587,7 +5489,11 @@ declare module '@polkadot/api-base/types/submittable' {
4587
5489
  Address32: any;
4588
5490
  } | {
4589
5491
  Address20: any;
4590
- } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
5492
+ } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5493
+ MultiAddress,
5494
+ Option<ArgonRuntimeProxyType>,
5495
+ Call
5496
+ ]>;
4591
5497
  /**
4592
5498
  * Dispatch the given `call` from an account that the sender is authorized for through
4593
5499
  * `add_proxy`.
@@ -4621,7 +5527,12 @@ declare module '@polkadot/api-base/types/submittable' {
4621
5527
  Address32: any;
4622
5528
  } | {
4623
5529
  Address20: any;
4624
- } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
5530
+ } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5531
+ MultiAddress,
5532
+ MultiAddress,
5533
+ Option<ArgonRuntimeProxyType>,
5534
+ Call
5535
+ ]>;
4625
5536
  /**
4626
5537
  * Remove the given announcement of a delegate.
4627
5538
  *
@@ -4644,7 +5555,10 @@ declare module '@polkadot/api-base/types/submittable' {
4644
5555
  Address32: any;
4645
5556
  } | {
4646
5557
  Address20: any;
4647
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
5558
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5559
+ MultiAddress,
5560
+ H256
5561
+ ]>;
4648
5562
  /**
4649
5563
  * Remove a given announcement.
4650
5564
  *
@@ -4667,7 +5581,10 @@ declare module '@polkadot/api-base/types/submittable' {
4667
5581
  Address32: any;
4668
5582
  } | {
4669
5583
  Address20: any;
4670
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
5584
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5585
+ MultiAddress,
5586
+ H256
5587
+ ]>;
4671
5588
  /**
4672
5589
  * Unregister all proxy accounts for the sender.
4673
5590
  *
@@ -4696,7 +5613,11 @@ declare module '@polkadot/api-base/types/submittable' {
4696
5613
  Address32: any;
4697
5614
  } | {
4698
5615
  Address20: any;
4699
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
5616
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5617
+ MultiAddress,
5618
+ ArgonRuntimeProxyType,
5619
+ u32
5620
+ ]>;
4700
5621
  };
4701
5622
  sudo: {
4702
5623
  /**
@@ -4719,11 +5640,15 @@ declare module '@polkadot/api-base/types/submittable' {
4719
5640
  Address32: any;
4720
5641
  } | {
4721
5642
  Address20: any;
4722
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
5643
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5644
+ MultiAddress
5645
+ ]>;
4723
5646
  /**
4724
5647
  * Authenticates the sudo key and dispatches a function call with `Root` origin.
4725
5648
  **/
4726
- sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
5649
+ sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5650
+ Call
5651
+ ]>;
4727
5652
  /**
4728
5653
  * Authenticates the sudo key and dispatches a function call with `Signed` origin from
4729
5654
  * a given account.
@@ -4740,7 +5665,10 @@ declare module '@polkadot/api-base/types/submittable' {
4740
5665
  Address32: any;
4741
5666
  } | {
4742
5667
  Address20: any;
4743
- } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
5668
+ } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5669
+ MultiAddress,
5670
+ Call
5671
+ ]>;
4744
5672
  /**
4745
5673
  * Authenticates the sudo key and dispatches a function call with `Root` origin.
4746
5674
  * This function does not check the weight of the call, and instead allows the
@@ -4751,7 +5679,10 @@ declare module '@polkadot/api-base/types/submittable' {
4751
5679
  sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
4752
5680
  refTime?: any;
4753
5681
  proofSize?: any;
4754
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
5682
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5683
+ Call,
5684
+ SpWeightsWeightV2Weight
5685
+ ]>;
4755
5686
  };
4756
5687
  system: {
4757
5688
  /**
@@ -4765,14 +5696,18 @@ declare module '@polkadot/api-base/types/submittable' {
4765
5696
  *
4766
5697
  * All origins are allowed.
4767
5698
  **/
4768
- applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
5699
+ applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5700
+ Bytes
5701
+ ]>;
4769
5702
  /**
4770
5703
  * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
4771
5704
  * later.
4772
5705
  *
4773
5706
  * This call requires Root origin.
4774
5707
  **/
4775
- authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
5708
+ authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5709
+ H256
5710
+ ]>;
4776
5711
  /**
4777
5712
  * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
4778
5713
  * later.
@@ -4783,47 +5718,66 @@ declare module '@polkadot/api-base/types/submittable' {
4783
5718
  *
4784
5719
  * This call requires Root origin.
4785
5720
  **/
4786
- authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
5721
+ authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5722
+ H256
5723
+ ]>;
4787
5724
  /**
4788
5725
  * Kill all storage items with a key that starts with the given prefix.
4789
5726
  *
4790
5727
  * **NOTE:** We rely on the Root origin to provide us the number of subkeys under
4791
5728
  * the prefix we are removing to accurately calculate the weight of this function.
4792
5729
  **/
4793
- killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, u32]>;
5730
+ killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5731
+ Bytes,
5732
+ u32
5733
+ ]>;
4794
5734
  /**
4795
5735
  * Kill some items from storage.
4796
5736
  **/
4797
- killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
5737
+ killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
5738
+ Vec<Bytes>
5739
+ ]>;
4798
5740
  /**
4799
5741
  * Make some on-chain remark.
4800
5742
  *
4801
5743
  * Can be executed by every `origin`.
4802
5744
  **/
4803
- remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
5745
+ remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5746
+ Bytes
5747
+ ]>;
4804
5748
  /**
4805
5749
  * Make some on-chain remark and emit event.
4806
5750
  **/
4807
- remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
5751
+ remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5752
+ Bytes
5753
+ ]>;
4808
5754
  /**
4809
5755
  * Set the new runtime code.
4810
5756
  **/
4811
- setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
5757
+ setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5758
+ Bytes
5759
+ ]>;
4812
5760
  /**
4813
5761
  * Set the new runtime code without doing any checks of the given `code`.
4814
5762
  *
4815
5763
  * Note that runtime upgrades will not run if this is called with a not-increasing spec
4816
5764
  * version!
4817
5765
  **/
4818
- setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
5766
+ setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5767
+ Bytes
5768
+ ]>;
4819
5769
  /**
4820
5770
  * Set the number of pages in the WebAssembly environment's heap.
4821
5771
  **/
4822
- setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
5772
+ setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5773
+ u64
5774
+ ]>;
4823
5775
  /**
4824
5776
  * Set some items of storage.
4825
5777
  **/
4826
- setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | ([Bytes | string | Uint8Array, Bytes | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[Bytes, Bytes]>>]>;
5778
+ setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array][]) => SubmittableExtrinsic<ApiType>, [
5779
+ Vec<ITuple<[Bytes, Bytes]>>
5780
+ ]>;
4827
5781
  };
4828
5782
  ticks: {};
4829
5783
  timestamp: {
@@ -4848,7 +5802,9 @@ declare module '@polkadot/api-base/types/submittable' {
4848
5802
  * `on_finalize`)
4849
5803
  * - 1 event handler `on_timestamp_set`. Must be `O(1)`.
4850
5804
  **/
4851
- set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;
5805
+ set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5806
+ Compact<u64>
5807
+ ]>;
4852
5808
  };
4853
5809
  tokenGateway: {
4854
5810
  /**
@@ -4863,7 +5819,9 @@ declare module '@polkadot/api-base/types/submittable' {
4863
5819
  reg?: any;
4864
5820
  native?: any;
4865
5821
  precision?: any;
4866
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayAssetRegistration]>;
5822
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5823
+ PalletTokenGatewayAssetRegistration
5824
+ ]>;
4867
5825
  /**
4868
5826
  * Registers a multi-chain ERC6160 asset without sending any dispatch request.
4869
5827
  * You should use register_asset_locally when you want to enable token gateway transfers
@@ -4874,11 +5832,15 @@ declare module '@polkadot/api-base/types/submittable' {
4874
5832
  reg?: any;
4875
5833
  native?: any;
4876
5834
  precision?: any;
4877
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayAssetRegistration]>;
5835
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5836
+ PalletTokenGatewayAssetRegistration
5837
+ ]>;
4878
5838
  /**
4879
5839
  * Set the token gateway address for specified chains
4880
5840
  **/
4881
- setTokenGatewayAddresses: AugmentedSubmittable<(addresses: BTreeMap<IsmpHostStateMachine, Bytes>) => SubmittableExtrinsic<ApiType>, [BTreeMap<IsmpHostStateMachine, Bytes>]>;
5841
+ setTokenGatewayAddresses: AugmentedSubmittable<(addresses: BTreeMap<IsmpHostStateMachine, Bytes>) => SubmittableExtrinsic<ApiType>, [
5842
+ BTreeMap<IsmpHostStateMachine, Bytes>
5843
+ ]>;
4882
5844
  /**
4883
5845
  * Teleports a registered asset
4884
5846
  * locks the asset and dispatches a request to token gateway on the destination
@@ -4893,14 +5855,18 @@ declare module '@polkadot/api-base/types/submittable' {
4893
5855
  relayerFee?: any;
4894
5856
  callData?: any;
4895
5857
  redeem?: any;
4896
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayTeleportParams]>;
5858
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5859
+ PalletTokenGatewayTeleportParams
5860
+ ]>;
4897
5861
  /**
4898
5862
  * Update the precision for an existing asset
4899
5863
  **/
4900
5864
  updateAssetPrecision: AugmentedSubmittable<(update: PalletTokenGatewayPrecisionUpdate | {
4901
5865
  assetId?: any;
4902
5866
  precisions?: any;
4903
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayPrecisionUpdate]>;
5867
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5868
+ PalletTokenGatewayPrecisionUpdate
5869
+ ]>;
4904
5870
  /**
4905
5871
  * Registers a multi-chain ERC6160 asset. The asset should not already exist.
4906
5872
  *
@@ -4912,7 +5878,9 @@ declare module '@polkadot/api-base/types/submittable' {
4912
5878
  addChains?: any;
4913
5879
  removeChains?: any;
4914
5880
  newAdmins?: any;
4915
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [TokenGatewayPrimitivesGatewayAssetUpdate]>;
5881
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5882
+ TokenGatewayPrimitivesGatewayAssetUpdate
5883
+ ]>;
4916
5884
  };
4917
5885
  treasury: {
4918
5886
  /**
@@ -4928,12 +5896,18 @@ declare module '@polkadot/api-base/types/submittable' {
4928
5896
  * - `amount`: The amount of argons to contribute to the fund. If you increase this amount,
4929
5897
  * it will just add the incremental amount
4930
5898
  **/
4931
- bondArgons: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u128]>;
5899
+ bondArgons: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5900
+ u32,
5901
+ u128
5902
+ ]>;
4932
5903
  /**
4933
5904
  * Allows a user to remove their bonded argons from the fund after the hold is released
4934
5905
  * (once epoch starting at bonded frame is complete).
4935
5906
  **/
4936
- unbondArgons: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, frameId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u64]>;
5907
+ unbondArgons: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, frameId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5908
+ u32,
5909
+ u64
5910
+ ]>;
4937
5911
  /**
4938
5912
  * Set the prebonded argons for a vault. This is used by the vault operator to
4939
5913
  * pre-register funding for each frame. The total allocation will be capped per frame using
@@ -4942,7 +5916,10 @@ declare module '@polkadot/api-base/types/submittable' {
4942
5916
  * NOTE: calling this a second time will ensure your max_amount_per_frame is updated.
4943
5917
  * However, it will not reduce your allocation
4944
5918
  **/
4945
- vaultOperatorPrebond: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, maxAmountPerFrame: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u128]>;
5919
+ vaultOperatorPrebond: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, maxAmountPerFrame: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5920
+ u32,
5921
+ u128
5922
+ ]>;
4946
5923
  };
4947
5924
  txPause: {
4948
5925
  /**
@@ -4951,14 +5928,18 @@ declare module '@polkadot/api-base/types/submittable' {
4951
5928
  * Can only be called by [`Config::PauseOrigin`].
4952
5929
  * Emits an [`Event::CallPaused`] event on success.
4953
5930
  **/
4954
- pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
5931
+ pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
5932
+ ITuple<[Bytes, Bytes]>
5933
+ ]>;
4955
5934
  /**
4956
5935
  * Un-pause a call.
4957
5936
  *
4958
5937
  * Can only be called by [`Config::UnpauseOrigin`].
4959
5938
  * Emits an [`Event::CallUnpaused`] event on success.
4960
5939
  **/
4961
- unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
5940
+ unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
5941
+ ITuple<[Bytes, Bytes]>
5942
+ ]>;
4962
5943
  };
4963
5944
  utility: {
4964
5945
  /**
@@ -4976,7 +5957,10 @@ declare module '@polkadot/api-base/types/submittable' {
4976
5957
  *
4977
5958
  * The dispatch origin for this call must be _Signed_.
4978
5959
  **/
4979
- asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Call]>;
5960
+ asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
5961
+ u16,
5962
+ Call
5963
+ ]>;
4980
5964
  /**
4981
5965
  * Send a batch of dispatch calls.
4982
5966
  *
@@ -4997,7 +5981,9 @@ declare module '@polkadot/api-base/types/submittable' {
4997
5981
  * and the error of the failed call. If all were successful, then the `BatchCompleted`
4998
5982
  * event is deposited.
4999
5983
  **/
5000
- batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
5984
+ batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
5985
+ Vec<Call>
5986
+ ]>;
5001
5987
  /**
5002
5988
  * Send a batch of dispatch calls and atomically execute them.
5003
5989
  * The whole transaction will rollback and fail if any of the calls failed.
@@ -5013,7 +5999,9 @@ declare module '@polkadot/api-base/types/submittable' {
5013
5999
  * ## Complexity
5014
6000
  * - O(C) where C is the number of calls to be batched.
5015
6001
  **/
5016
- batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
6002
+ batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
6003
+ Vec<Call>
6004
+ ]>;
5017
6005
  /**
5018
6006
  * Dispatches a function call with a provided origin.
5019
6007
  *
@@ -5024,7 +6012,10 @@ declare module '@polkadot/api-base/types/submittable' {
5024
6012
  **/
5025
6013
  dispatchAs: AugmentedSubmittable<(asOrigin: ArgonRuntimeOriginCaller | {
5026
6014
  system: any;
5027
- } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeOriginCaller, Call]>;
6015
+ } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6016
+ ArgonRuntimeOriginCaller,
6017
+ Call
6018
+ ]>;
5028
6019
  /**
5029
6020
  * Dispatches a function call with a provided origin.
5030
6021
  *
@@ -5034,7 +6025,10 @@ declare module '@polkadot/api-base/types/submittable' {
5034
6025
  **/
5035
6026
  dispatchAsFallible: AugmentedSubmittable<(asOrigin: ArgonRuntimeOriginCaller | {
5036
6027
  system: any;
5037
- } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeOriginCaller, Call]>;
6028
+ } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6029
+ ArgonRuntimeOriginCaller,
6030
+ Call
6031
+ ]>;
5038
6032
  /**
5039
6033
  * Send a batch of dispatch calls.
5040
6034
  * Unlike `batch`, it allows errors and won't interrupt.
@@ -5050,7 +6044,9 @@ declare module '@polkadot/api-base/types/submittable' {
5050
6044
  * ## Complexity
5051
6045
  * - O(C) where C is the number of calls to be batched.
5052
6046
  **/
5053
- forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
6047
+ forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
6048
+ Vec<Call>
6049
+ ]>;
5054
6050
  /**
5055
6051
  * Dispatch a fallback call in the event the main call fails to execute.
5056
6052
  * May be called from any origin except `None`.
@@ -5076,7 +6072,10 @@ declare module '@polkadot/api-base/types/submittable' {
5076
6072
  * - Some use cases might involve submitting a `batch` type call in either main, fallback
5077
6073
  * or both.
5078
6074
  **/
5079
- ifElse: AugmentedSubmittable<(main: Call | IMethod | string | Uint8Array, fallback: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Call]>;
6075
+ ifElse: AugmentedSubmittable<(main: Call | IMethod | string | Uint8Array, fallback: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6076
+ Call,
6077
+ Call
6078
+ ]>;
5080
6079
  /**
5081
6080
  * Dispatch a function call with a specified weight.
5082
6081
  *
@@ -5088,21 +6087,30 @@ declare module '@polkadot/api-base/types/submittable' {
5088
6087
  withWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
5089
6088
  refTime?: any;
5090
6089
  proofSize?: any;
5091
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
6090
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6091
+ Call,
6092
+ SpWeightsWeightV2Weight
6093
+ ]>;
5092
6094
  };
5093
6095
  vaults: {
5094
6096
  /**
5095
6097
  * Stop offering additional bitcoin locks from this vault. Will not affect existing
5096
6098
  * locks. As funds are returned, they will be released to the vault owner.
5097
6099
  **/
5098
- close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
5099
- collect: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
6100
+ close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6101
+ u32
6102
+ ]>;
6103
+ collect: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6104
+ u32
6105
+ ]>;
5100
6106
  create: AugmentedSubmittable<(vaultConfig: PalletVaultsVaultConfig | {
5101
6107
  terms?: any;
5102
6108
  securitization?: any;
5103
6109
  bitcoinXpubkey?: any;
5104
6110
  securitizationRatio?: any;
5105
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletVaultsVaultConfig]>;
6111
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6112
+ PalletVaultsVaultConfig
6113
+ ]>;
5106
6114
  /**
5107
6115
  * Modify funds allocated by the vault. This will not affect issued bitcoin locks, but will
5108
6116
  * affect the amount of funds available for new ones.
@@ -5113,7 +6121,11 @@ declare module '@polkadot/api-base/types/submittable' {
5113
6121
  * funds in this vault as bitcoin locks are released. To stop issuing any more bitcoin
5114
6122
  * locks, use the `close` api.
5115
6123
  **/
5116
- modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, securitization: u128 | AnyNumber | Uint8Array, securitizationRatio: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u128, u128]>;
6124
+ modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, securitization: u128 | AnyNumber | Uint8Array, securitizationRatio: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6125
+ u32,
6126
+ u128,
6127
+ u128
6128
+ ]>;
5117
6129
  /**
5118
6130
  * Change the terms of this vault. The change will be applied at the next mining slot
5119
6131
  * change that is at least `MinTermsModificationBlockDelay` blocks away.
@@ -5122,13 +6134,19 @@ declare module '@polkadot/api-base/types/submittable' {
5122
6134
  bitcoinAnnualPercentRate?: any;
5123
6135
  bitcoinBaseFee?: any;
5124
6136
  treasuryProfitSharing?: any;
5125
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesVaultVaultTerms]>;
6137
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6138
+ u32,
6139
+ ArgonPrimitivesVaultVaultTerms
6140
+ ]>;
5126
6141
  /**
5127
6142
  * Replace the bitcoin xpubkey for this vault. This will not affect existing bitcoin locks,
5128
6143
  * but will be used for any locks after this point. Will be rejected if already
5129
6144
  * used.
5130
6145
  **/
5131
- replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesBitcoinOpaqueBitcoinXpub]>;
6146
+ replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6147
+ u32,
6148
+ ArgonPrimitivesBitcoinOpaqueBitcoinXpub
6149
+ ]>;
5132
6150
  };
5133
6151
  }
5134
6152
  }
@@ -5350,7 +6368,7 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
5350
6368
  /**
5351
6369
  * Returns fee history for given block count & reward percentiles
5352
6370
  **/
5353
- feeHistory: AugmentedRpc<(blockCount: U256 | AnyNumber | Uint8Array, newestBlock: BlockNumber | AnyNumber | Uint8Array, rewardPercentiles: Option<Vec<f64>> | null | Uint8Array | Vec<f64> | (f64)[]) => Observable<EthFeeHistory>>;
6371
+ feeHistory: AugmentedRpc<(blockCount: U256 | AnyNumber | Uint8Array, newestBlock: BlockNumber | AnyNumber | Uint8Array, rewardPercentiles: Option<Vec<f64>> | null | Uint8Array | Vec<f64> | f64[]) => Observable<EthFeeHistory>>;
5354
6372
  /**
5355
6373
  * Returns current gas price.
5356
6374
  **/