@bloxchain/sdk 1.0.0-alpha.4 → 1.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abi/AccountBlox.abi.json +1463 -3315
- package/abi/BareBlox.abi.json +19 -0
- package/abi/BaseStateMachine.abi.json +19 -0
- package/abi/EngineBlox.abi.json +11 -26
- package/abi/GuardController.abi.json +144 -737
- package/abi/GuardControllerDefinitions.abi.json +279 -0
- package/abi/RoleBlox.abi.json +392 -1632
- package/abi/RuntimeRBAC.abi.json +23 -111
- package/abi/RuntimeRBACDefinitions.abi.json +18 -0
- package/abi/SecureBlox.abi.json +275 -1408
- package/abi/SecureOwnable.abi.json +298 -1431
- package/abi/SimpleRWA20.abi.json +305 -1630
- package/abi/SimpleVault.abi.json +477 -2090
- package/dist/abi/BaseStateMachine.abi.json +19 -0
- package/dist/abi/GuardController.abi.json +144 -737
- package/dist/abi/RuntimeRBAC.abi.json +23 -111
- package/dist/abi/SecureOwnable.abi.json +298 -1431
- package/dist/contracts/core/BaseStateMachine.d.ts +98 -0
- package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
- package/dist/contracts/core/BaseStateMachine.js +271 -0
- package/dist/contracts/core/BaseStateMachine.js.map +1 -0
- package/dist/contracts/core/GuardController.d.ts +120 -0
- package/dist/contracts/core/GuardController.d.ts.map +1 -0
- package/dist/contracts/core/GuardController.js +150 -0
- package/dist/contracts/core/GuardController.js.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts +40 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.js +50 -0
- package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
- package/dist/contracts/core/SecureOwnable.d.ts +41 -0
- package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
- package/dist/contracts/core/SecureOwnable.js +81 -0
- package/dist/contracts/core/SecureOwnable.js.map +1 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/lib/EngineBlox.d.ts +0 -9
- package/dist/lib/EngineBlox.d.ts.map +1 -1
- package/dist/lib/EngineBlox.js +0 -9
- package/dist/lib/EngineBlox.js.map +1 -1
- package/dist/lib/definitions/GuardControllerDefinitions.d.ts +10 -0
- package/dist/lib/definitions/GuardControllerDefinitions.d.ts.map +1 -1
- package/dist/lib/definitions/GuardControllerDefinitions.js +21 -0
- package/dist/lib/definitions/GuardControllerDefinitions.js.map +1 -1
- package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts +10 -0
- package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts.map +1 -1
- package/dist/lib/definitions/RuntimeRBACDefinitions.js +27 -0
- package/dist/lib/definitions/RuntimeRBACDefinitions.js.map +1 -1
- package/dist/types/base.state.machine.index.d.ts +0 -1
- package/dist/types/base.state.machine.index.d.ts.map +1 -1
- package/dist/types/base.state.machine.index.js +1 -2
- package/dist/types/base.state.machine.index.js.map +1 -1
- package/package.json +2 -2
package/abi/RoleBlox.abi.json
CHANGED
|
@@ -63,17 +63,6 @@
|
|
|
63
63
|
"name": "InvalidRange",
|
|
64
64
|
"type": "error"
|
|
65
65
|
},
|
|
66
|
-
{
|
|
67
|
-
"inputs": [
|
|
68
|
-
{
|
|
69
|
-
"internalType": "uint256",
|
|
70
|
-
"name": "provided",
|
|
71
|
-
"type": "uint256"
|
|
72
|
-
}
|
|
73
|
-
],
|
|
74
|
-
"name": "MaxWalletsZero",
|
|
75
|
-
"type": "error"
|
|
76
|
-
},
|
|
77
66
|
{
|
|
78
67
|
"inputs": [
|
|
79
68
|
{
|
|
@@ -355,7 +344,7 @@
|
|
|
355
344
|
{
|
|
356
345
|
"components": [
|
|
357
346
|
{
|
|
358
|
-
"internalType": "enum
|
|
347
|
+
"internalType": "enum IRuntimeRBAC.RoleConfigActionType",
|
|
359
348
|
"name": "actionType",
|
|
360
349
|
"type": "uint8"
|
|
361
350
|
},
|
|
@@ -365,7 +354,7 @@
|
|
|
365
354
|
"type": "bytes"
|
|
366
355
|
}
|
|
367
356
|
],
|
|
368
|
-
"internalType": "struct
|
|
357
|
+
"internalType": "struct IRuntimeRBAC.RoleConfigAction[]",
|
|
369
358
|
"name": "actions",
|
|
370
359
|
"type": "tuple[]"
|
|
371
360
|
}
|
|
@@ -1036,6 +1025,25 @@
|
|
|
1036
1025
|
"stateMutability": "view",
|
|
1037
1026
|
"type": "function"
|
|
1038
1027
|
},
|
|
1028
|
+
{
|
|
1029
|
+
"inputs": [
|
|
1030
|
+
{
|
|
1031
|
+
"internalType": "bytes4",
|
|
1032
|
+
"name": "functionSelector",
|
|
1033
|
+
"type": "bytes4"
|
|
1034
|
+
}
|
|
1035
|
+
],
|
|
1036
|
+
"name": "getHooks",
|
|
1037
|
+
"outputs": [
|
|
1038
|
+
{
|
|
1039
|
+
"internalType": "address[]",
|
|
1040
|
+
"name": "hooks",
|
|
1041
|
+
"type": "address[]"
|
|
1042
|
+
}
|
|
1043
|
+
],
|
|
1044
|
+
"stateMutability": "view",
|
|
1045
|
+
"type": "function"
|
|
1046
|
+
},
|
|
1039
1047
|
{
|
|
1040
1048
|
"inputs": [],
|
|
1041
1049
|
"name": "getPendingTransactions",
|
|
@@ -1694,108 +1702,215 @@
|
|
|
1694
1702
|
],
|
|
1695
1703
|
"name": "roleConfigBatchRequestAndApprove",
|
|
1696
1704
|
"outputs": [
|
|
1705
|
+
{
|
|
1706
|
+
"internalType": "uint256",
|
|
1707
|
+
"name": "",
|
|
1708
|
+
"type": "uint256"
|
|
1709
|
+
}
|
|
1710
|
+
],
|
|
1711
|
+
"stateMutability": "nonpayable",
|
|
1712
|
+
"type": "function"
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
"inputs": [
|
|
1697
1716
|
{
|
|
1698
1717
|
"components": [
|
|
1699
|
-
{
|
|
1700
|
-
"internalType": "uint256",
|
|
1701
|
-
"name": "txId",
|
|
1702
|
-
"type": "uint256"
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
"internalType": "uint256",
|
|
1706
|
-
"name": "releaseTime",
|
|
1707
|
-
"type": "uint256"
|
|
1708
|
-
},
|
|
1709
|
-
{
|
|
1710
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1711
|
-
"name": "status",
|
|
1712
|
-
"type": "uint8"
|
|
1713
|
-
},
|
|
1714
1718
|
{
|
|
1715
1719
|
"components": [
|
|
1716
|
-
{
|
|
1717
|
-
"internalType": "address",
|
|
1718
|
-
"name": "requester",
|
|
1719
|
-
"type": "address"
|
|
1720
|
-
},
|
|
1721
|
-
{
|
|
1722
|
-
"internalType": "address",
|
|
1723
|
-
"name": "target",
|
|
1724
|
-
"type": "address"
|
|
1725
|
-
},
|
|
1726
1720
|
{
|
|
1727
1721
|
"internalType": "uint256",
|
|
1728
|
-
"name": "
|
|
1722
|
+
"name": "txId",
|
|
1729
1723
|
"type": "uint256"
|
|
1730
1724
|
},
|
|
1731
1725
|
{
|
|
1732
1726
|
"internalType": "uint256",
|
|
1733
|
-
"name": "
|
|
1727
|
+
"name": "releaseTime",
|
|
1734
1728
|
"type": "uint256"
|
|
1735
1729
|
},
|
|
1736
1730
|
{
|
|
1737
|
-
"internalType": "
|
|
1738
|
-
"name": "
|
|
1739
|
-
"type": "
|
|
1731
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
1732
|
+
"name": "status",
|
|
1733
|
+
"type": "uint8"
|
|
1740
1734
|
},
|
|
1741
1735
|
{
|
|
1742
|
-
"
|
|
1743
|
-
|
|
1744
|
-
|
|
1736
|
+
"components": [
|
|
1737
|
+
{
|
|
1738
|
+
"internalType": "address",
|
|
1739
|
+
"name": "requester",
|
|
1740
|
+
"type": "address"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"internalType": "address",
|
|
1744
|
+
"name": "target",
|
|
1745
|
+
"type": "address"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"internalType": "uint256",
|
|
1749
|
+
"name": "value",
|
|
1750
|
+
"type": "uint256"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"internalType": "uint256",
|
|
1754
|
+
"name": "gasLimit",
|
|
1755
|
+
"type": "uint256"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"internalType": "bytes32",
|
|
1759
|
+
"name": "operationType",
|
|
1760
|
+
"type": "bytes32"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"internalType": "bytes4",
|
|
1764
|
+
"name": "executionSelector",
|
|
1765
|
+
"type": "bytes4"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"internalType": "bytes",
|
|
1769
|
+
"name": "executionParams",
|
|
1770
|
+
"type": "bytes"
|
|
1771
|
+
}
|
|
1772
|
+
],
|
|
1773
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
1774
|
+
"name": "params",
|
|
1775
|
+
"type": "tuple"
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"internalType": "bytes32",
|
|
1779
|
+
"name": "message",
|
|
1780
|
+
"type": "bytes32"
|
|
1745
1781
|
},
|
|
1746
1782
|
{
|
|
1747
1783
|
"internalType": "bytes",
|
|
1748
|
-
"name": "
|
|
1784
|
+
"name": "result",
|
|
1749
1785
|
"type": "bytes"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"components": [
|
|
1789
|
+
{
|
|
1790
|
+
"internalType": "address",
|
|
1791
|
+
"name": "recipient",
|
|
1792
|
+
"type": "address"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"internalType": "uint256",
|
|
1796
|
+
"name": "nativeTokenAmount",
|
|
1797
|
+
"type": "uint256"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"internalType": "address",
|
|
1801
|
+
"name": "erc20TokenAddress",
|
|
1802
|
+
"type": "address"
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"internalType": "uint256",
|
|
1806
|
+
"name": "erc20TokenAmount",
|
|
1807
|
+
"type": "uint256"
|
|
1808
|
+
}
|
|
1809
|
+
],
|
|
1810
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1811
|
+
"name": "payment",
|
|
1812
|
+
"type": "tuple"
|
|
1750
1813
|
}
|
|
1751
1814
|
],
|
|
1752
|
-
"internalType": "struct EngineBlox.
|
|
1753
|
-
"name": "
|
|
1815
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
1816
|
+
"name": "txRecord",
|
|
1754
1817
|
"type": "tuple"
|
|
1755
1818
|
},
|
|
1756
|
-
{
|
|
1757
|
-
"internalType": "bytes32",
|
|
1758
|
-
"name": "message",
|
|
1759
|
-
"type": "bytes32"
|
|
1760
|
-
},
|
|
1761
|
-
{
|
|
1762
|
-
"internalType": "bytes",
|
|
1763
|
-
"name": "result",
|
|
1764
|
-
"type": "bytes"
|
|
1765
|
-
},
|
|
1766
1819
|
{
|
|
1767
1820
|
"components": [
|
|
1768
1821
|
{
|
|
1769
|
-
"internalType": "
|
|
1770
|
-
"name": "
|
|
1771
|
-
"type": "
|
|
1822
|
+
"internalType": "uint256",
|
|
1823
|
+
"name": "chainId",
|
|
1824
|
+
"type": "uint256"
|
|
1772
1825
|
},
|
|
1773
1826
|
{
|
|
1774
1827
|
"internalType": "uint256",
|
|
1775
|
-
"name": "
|
|
1828
|
+
"name": "nonce",
|
|
1776
1829
|
"type": "uint256"
|
|
1777
1830
|
},
|
|
1778
1831
|
{
|
|
1779
1832
|
"internalType": "address",
|
|
1780
|
-
"name": "
|
|
1833
|
+
"name": "handlerContract",
|
|
1781
1834
|
"type": "address"
|
|
1782
1835
|
},
|
|
1836
|
+
{
|
|
1837
|
+
"internalType": "bytes4",
|
|
1838
|
+
"name": "handlerSelector",
|
|
1839
|
+
"type": "bytes4"
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
1843
|
+
"name": "action",
|
|
1844
|
+
"type": "uint8"
|
|
1845
|
+
},
|
|
1783
1846
|
{
|
|
1784
1847
|
"internalType": "uint256",
|
|
1785
|
-
"name": "
|
|
1848
|
+
"name": "deadline",
|
|
1849
|
+
"type": "uint256"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"internalType": "uint256",
|
|
1853
|
+
"name": "maxGasPrice",
|
|
1786
1854
|
"type": "uint256"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"internalType": "address",
|
|
1858
|
+
"name": "signer",
|
|
1859
|
+
"type": "address"
|
|
1787
1860
|
}
|
|
1788
1861
|
],
|
|
1789
|
-
"internalType": "struct EngineBlox.
|
|
1790
|
-
"name": "
|
|
1862
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
1863
|
+
"name": "params",
|
|
1791
1864
|
"type": "tuple"
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"internalType": "bytes32",
|
|
1868
|
+
"name": "message",
|
|
1869
|
+
"type": "bytes32"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"internalType": "bytes",
|
|
1873
|
+
"name": "signature",
|
|
1874
|
+
"type": "bytes"
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"internalType": "bytes",
|
|
1878
|
+
"name": "data",
|
|
1879
|
+
"type": "bytes"
|
|
1792
1880
|
}
|
|
1793
1881
|
],
|
|
1794
|
-
"internalType": "struct EngineBlox.
|
|
1795
|
-
"name": "",
|
|
1882
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
1883
|
+
"name": "metaTx",
|
|
1796
1884
|
"type": "tuple"
|
|
1797
1885
|
}
|
|
1798
1886
|
],
|
|
1887
|
+
"name": "transferOwnershipApprovalWithMetaTx",
|
|
1888
|
+
"outputs": [
|
|
1889
|
+
{
|
|
1890
|
+
"internalType": "uint256",
|
|
1891
|
+
"name": "",
|
|
1892
|
+
"type": "uint256"
|
|
1893
|
+
}
|
|
1894
|
+
],
|
|
1895
|
+
"stateMutability": "nonpayable",
|
|
1896
|
+
"type": "function"
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
"inputs": [
|
|
1900
|
+
{
|
|
1901
|
+
"internalType": "uint256",
|
|
1902
|
+
"name": "txId",
|
|
1903
|
+
"type": "uint256"
|
|
1904
|
+
}
|
|
1905
|
+
],
|
|
1906
|
+
"name": "transferOwnershipCancellation",
|
|
1907
|
+
"outputs": [
|
|
1908
|
+
{
|
|
1909
|
+
"internalType": "uint256",
|
|
1910
|
+
"name": "",
|
|
1911
|
+
"type": "uint256"
|
|
1912
|
+
}
|
|
1913
|
+
],
|
|
1799
1914
|
"stateMutability": "nonpayable",
|
|
1800
1915
|
"type": "function"
|
|
1801
1916
|
},
|
|
@@ -1972,108 +2087,12 @@
|
|
|
1972
2087
|
"type": "tuple"
|
|
1973
2088
|
}
|
|
1974
2089
|
],
|
|
1975
|
-
"name": "
|
|
2090
|
+
"name": "transferOwnershipCancellationWithMetaTx",
|
|
1976
2091
|
"outputs": [
|
|
1977
2092
|
{
|
|
1978
|
-
"
|
|
1979
|
-
{
|
|
1980
|
-
"internalType": "uint256",
|
|
1981
|
-
"name": "txId",
|
|
1982
|
-
"type": "uint256"
|
|
1983
|
-
},
|
|
1984
|
-
{
|
|
1985
|
-
"internalType": "uint256",
|
|
1986
|
-
"name": "releaseTime",
|
|
1987
|
-
"type": "uint256"
|
|
1988
|
-
},
|
|
1989
|
-
{
|
|
1990
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1991
|
-
"name": "status",
|
|
1992
|
-
"type": "uint8"
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"components": [
|
|
1996
|
-
{
|
|
1997
|
-
"internalType": "address",
|
|
1998
|
-
"name": "requester",
|
|
1999
|
-
"type": "address"
|
|
2000
|
-
},
|
|
2001
|
-
{
|
|
2002
|
-
"internalType": "address",
|
|
2003
|
-
"name": "target",
|
|
2004
|
-
"type": "address"
|
|
2005
|
-
},
|
|
2006
|
-
{
|
|
2007
|
-
"internalType": "uint256",
|
|
2008
|
-
"name": "value",
|
|
2009
|
-
"type": "uint256"
|
|
2010
|
-
},
|
|
2011
|
-
{
|
|
2012
|
-
"internalType": "uint256",
|
|
2013
|
-
"name": "gasLimit",
|
|
2014
|
-
"type": "uint256"
|
|
2015
|
-
},
|
|
2016
|
-
{
|
|
2017
|
-
"internalType": "bytes32",
|
|
2018
|
-
"name": "operationType",
|
|
2019
|
-
"type": "bytes32"
|
|
2020
|
-
},
|
|
2021
|
-
{
|
|
2022
|
-
"internalType": "bytes4",
|
|
2023
|
-
"name": "executionSelector",
|
|
2024
|
-
"type": "bytes4"
|
|
2025
|
-
},
|
|
2026
|
-
{
|
|
2027
|
-
"internalType": "bytes",
|
|
2028
|
-
"name": "executionParams",
|
|
2029
|
-
"type": "bytes"
|
|
2030
|
-
}
|
|
2031
|
-
],
|
|
2032
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2033
|
-
"name": "params",
|
|
2034
|
-
"type": "tuple"
|
|
2035
|
-
},
|
|
2036
|
-
{
|
|
2037
|
-
"internalType": "bytes32",
|
|
2038
|
-
"name": "message",
|
|
2039
|
-
"type": "bytes32"
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
"internalType": "bytes",
|
|
2043
|
-
"name": "result",
|
|
2044
|
-
"type": "bytes"
|
|
2045
|
-
},
|
|
2046
|
-
{
|
|
2047
|
-
"components": [
|
|
2048
|
-
{
|
|
2049
|
-
"internalType": "address",
|
|
2050
|
-
"name": "recipient",
|
|
2051
|
-
"type": "address"
|
|
2052
|
-
},
|
|
2053
|
-
{
|
|
2054
|
-
"internalType": "uint256",
|
|
2055
|
-
"name": "nativeTokenAmount",
|
|
2056
|
-
"type": "uint256"
|
|
2057
|
-
},
|
|
2058
|
-
{
|
|
2059
|
-
"internalType": "address",
|
|
2060
|
-
"name": "erc20TokenAddress",
|
|
2061
|
-
"type": "address"
|
|
2062
|
-
},
|
|
2063
|
-
{
|
|
2064
|
-
"internalType": "uint256",
|
|
2065
|
-
"name": "erc20TokenAmount",
|
|
2066
|
-
"type": "uint256"
|
|
2067
|
-
}
|
|
2068
|
-
],
|
|
2069
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2070
|
-
"name": "payment",
|
|
2071
|
-
"type": "tuple"
|
|
2072
|
-
}
|
|
2073
|
-
],
|
|
2074
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2093
|
+
"internalType": "uint256",
|
|
2075
2094
|
"name": "",
|
|
2076
|
-
"type": "
|
|
2095
|
+
"type": "uint256"
|
|
2077
2096
|
}
|
|
2078
2097
|
],
|
|
2079
2098
|
"stateMutability": "nonpayable",
|
|
@@ -2087,108 +2106,25 @@
|
|
|
2087
2106
|
"type": "uint256"
|
|
2088
2107
|
}
|
|
2089
2108
|
],
|
|
2090
|
-
"name": "
|
|
2109
|
+
"name": "transferOwnershipDelayedApproval",
|
|
2091
2110
|
"outputs": [
|
|
2092
2111
|
{
|
|
2093
|
-
"
|
|
2094
|
-
{
|
|
2095
|
-
"internalType": "uint256",
|
|
2096
|
-
"name": "txId",
|
|
2097
|
-
"type": "uint256"
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
"internalType": "uint256",
|
|
2101
|
-
"name": "releaseTime",
|
|
2102
|
-
"type": "uint256"
|
|
2103
|
-
},
|
|
2104
|
-
{
|
|
2105
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2106
|
-
"name": "status",
|
|
2107
|
-
"type": "uint8"
|
|
2108
|
-
},
|
|
2109
|
-
{
|
|
2110
|
-
"components": [
|
|
2111
|
-
{
|
|
2112
|
-
"internalType": "address",
|
|
2113
|
-
"name": "requester",
|
|
2114
|
-
"type": "address"
|
|
2115
|
-
},
|
|
2116
|
-
{
|
|
2117
|
-
"internalType": "address",
|
|
2118
|
-
"name": "target",
|
|
2119
|
-
"type": "address"
|
|
2120
|
-
},
|
|
2121
|
-
{
|
|
2122
|
-
"internalType": "uint256",
|
|
2123
|
-
"name": "value",
|
|
2124
|
-
"type": "uint256"
|
|
2125
|
-
},
|
|
2126
|
-
{
|
|
2127
|
-
"internalType": "uint256",
|
|
2128
|
-
"name": "gasLimit",
|
|
2129
|
-
"type": "uint256"
|
|
2130
|
-
},
|
|
2131
|
-
{
|
|
2132
|
-
"internalType": "bytes32",
|
|
2133
|
-
"name": "operationType",
|
|
2134
|
-
"type": "bytes32"
|
|
2135
|
-
},
|
|
2136
|
-
{
|
|
2137
|
-
"internalType": "bytes4",
|
|
2138
|
-
"name": "executionSelector",
|
|
2139
|
-
"type": "bytes4"
|
|
2140
|
-
},
|
|
2141
|
-
{
|
|
2142
|
-
"internalType": "bytes",
|
|
2143
|
-
"name": "executionParams",
|
|
2144
|
-
"type": "bytes"
|
|
2145
|
-
}
|
|
2146
|
-
],
|
|
2147
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2148
|
-
"name": "params",
|
|
2149
|
-
"type": "tuple"
|
|
2150
|
-
},
|
|
2151
|
-
{
|
|
2152
|
-
"internalType": "bytes32",
|
|
2153
|
-
"name": "message",
|
|
2154
|
-
"type": "bytes32"
|
|
2155
|
-
},
|
|
2156
|
-
{
|
|
2157
|
-
"internalType": "bytes",
|
|
2158
|
-
"name": "result",
|
|
2159
|
-
"type": "bytes"
|
|
2160
|
-
},
|
|
2161
|
-
{
|
|
2162
|
-
"components": [
|
|
2163
|
-
{
|
|
2164
|
-
"internalType": "address",
|
|
2165
|
-
"name": "recipient",
|
|
2166
|
-
"type": "address"
|
|
2167
|
-
},
|
|
2168
|
-
{
|
|
2169
|
-
"internalType": "uint256",
|
|
2170
|
-
"name": "nativeTokenAmount",
|
|
2171
|
-
"type": "uint256"
|
|
2172
|
-
},
|
|
2173
|
-
{
|
|
2174
|
-
"internalType": "address",
|
|
2175
|
-
"name": "erc20TokenAddress",
|
|
2176
|
-
"type": "address"
|
|
2177
|
-
},
|
|
2178
|
-
{
|
|
2179
|
-
"internalType": "uint256",
|
|
2180
|
-
"name": "erc20TokenAmount",
|
|
2181
|
-
"type": "uint256"
|
|
2182
|
-
}
|
|
2183
|
-
],
|
|
2184
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2185
|
-
"name": "payment",
|
|
2186
|
-
"type": "tuple"
|
|
2187
|
-
}
|
|
2188
|
-
],
|
|
2189
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2112
|
+
"internalType": "uint256",
|
|
2190
2113
|
"name": "",
|
|
2191
|
-
"type": "
|
|
2114
|
+
"type": "uint256"
|
|
2115
|
+
}
|
|
2116
|
+
],
|
|
2117
|
+
"stateMutability": "nonpayable",
|
|
2118
|
+
"type": "function"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"inputs": [],
|
|
2122
|
+
"name": "transferOwnershipRequest",
|
|
2123
|
+
"outputs": [
|
|
2124
|
+
{
|
|
2125
|
+
"internalType": "uint256",
|
|
2126
|
+
"name": "txId",
|
|
2127
|
+
"type": "uint256"
|
|
2192
2128
|
}
|
|
2193
2129
|
],
|
|
2194
2130
|
"stateMutability": "nonpayable",
|
|
@@ -2367,1198 +2303,185 @@
|
|
|
2367
2303
|
"type": "tuple"
|
|
2368
2304
|
}
|
|
2369
2305
|
],
|
|
2370
|
-
"name": "
|
|
2306
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2307
|
+
"outputs": [
|
|
2308
|
+
{
|
|
2309
|
+
"internalType": "uint256",
|
|
2310
|
+
"name": "",
|
|
2311
|
+
"type": "uint256"
|
|
2312
|
+
}
|
|
2313
|
+
],
|
|
2314
|
+
"stateMutability": "nonpayable",
|
|
2315
|
+
"type": "function"
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"inputs": [
|
|
2319
|
+
{
|
|
2320
|
+
"internalType": "uint256",
|
|
2321
|
+
"name": "txId",
|
|
2322
|
+
"type": "uint256"
|
|
2323
|
+
}
|
|
2324
|
+
],
|
|
2325
|
+
"name": "updateBroadcasterCancellation",
|
|
2371
2326
|
"outputs": [
|
|
2327
|
+
{
|
|
2328
|
+
"internalType": "uint256",
|
|
2329
|
+
"name": "",
|
|
2330
|
+
"type": "uint256"
|
|
2331
|
+
}
|
|
2332
|
+
],
|
|
2333
|
+
"stateMutability": "nonpayable",
|
|
2334
|
+
"type": "function"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"inputs": [
|
|
2372
2338
|
{
|
|
2373
2339
|
"components": [
|
|
2374
|
-
{
|
|
2375
|
-
"internalType": "uint256",
|
|
2376
|
-
"name": "txId",
|
|
2377
|
-
"type": "uint256"
|
|
2378
|
-
},
|
|
2379
|
-
{
|
|
2380
|
-
"internalType": "uint256",
|
|
2381
|
-
"name": "releaseTime",
|
|
2382
|
-
"type": "uint256"
|
|
2383
|
-
},
|
|
2384
|
-
{
|
|
2385
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2386
|
-
"name": "status",
|
|
2387
|
-
"type": "uint8"
|
|
2388
|
-
},
|
|
2389
2340
|
{
|
|
2390
2341
|
"components": [
|
|
2391
|
-
{
|
|
2392
|
-
"internalType": "address",
|
|
2393
|
-
"name": "requester",
|
|
2394
|
-
"type": "address"
|
|
2395
|
-
},
|
|
2396
|
-
{
|
|
2397
|
-
"internalType": "address",
|
|
2398
|
-
"name": "target",
|
|
2399
|
-
"type": "address"
|
|
2400
|
-
},
|
|
2401
|
-
{
|
|
2402
|
-
"internalType": "uint256",
|
|
2403
|
-
"name": "value",
|
|
2404
|
-
"type": "uint256"
|
|
2405
|
-
},
|
|
2406
|
-
{
|
|
2407
|
-
"internalType": "uint256",
|
|
2408
|
-
"name": "gasLimit",
|
|
2409
|
-
"type": "uint256"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"internalType": "bytes32",
|
|
2413
|
-
"name": "operationType",
|
|
2414
|
-
"type": "bytes32"
|
|
2415
|
-
},
|
|
2416
|
-
{
|
|
2417
|
-
"internalType": "bytes4",
|
|
2418
|
-
"name": "executionSelector",
|
|
2419
|
-
"type": "bytes4"
|
|
2420
|
-
},
|
|
2421
|
-
{
|
|
2422
|
-
"internalType": "bytes",
|
|
2423
|
-
"name": "executionParams",
|
|
2424
|
-
"type": "bytes"
|
|
2425
|
-
}
|
|
2426
|
-
],
|
|
2427
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2428
|
-
"name": "params",
|
|
2429
|
-
"type": "tuple"
|
|
2430
|
-
},
|
|
2431
|
-
{
|
|
2432
|
-
"internalType": "bytes32",
|
|
2433
|
-
"name": "message",
|
|
2434
|
-
"type": "bytes32"
|
|
2435
|
-
},
|
|
2436
|
-
{
|
|
2437
|
-
"internalType": "bytes",
|
|
2438
|
-
"name": "result",
|
|
2439
|
-
"type": "bytes"
|
|
2440
|
-
},
|
|
2441
|
-
{
|
|
2442
|
-
"components": [
|
|
2443
|
-
{
|
|
2444
|
-
"internalType": "address",
|
|
2445
|
-
"name": "recipient",
|
|
2446
|
-
"type": "address"
|
|
2447
|
-
},
|
|
2448
|
-
{
|
|
2449
|
-
"internalType": "uint256",
|
|
2450
|
-
"name": "nativeTokenAmount",
|
|
2451
|
-
"type": "uint256"
|
|
2452
|
-
},
|
|
2453
|
-
{
|
|
2454
|
-
"internalType": "address",
|
|
2455
|
-
"name": "erc20TokenAddress",
|
|
2456
|
-
"type": "address"
|
|
2457
|
-
},
|
|
2458
|
-
{
|
|
2459
|
-
"internalType": "uint256",
|
|
2460
|
-
"name": "erc20TokenAmount",
|
|
2461
|
-
"type": "uint256"
|
|
2462
|
-
}
|
|
2463
|
-
],
|
|
2464
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2465
|
-
"name": "payment",
|
|
2466
|
-
"type": "tuple"
|
|
2467
|
-
}
|
|
2468
|
-
],
|
|
2469
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2470
|
-
"name": "",
|
|
2471
|
-
"type": "tuple"
|
|
2472
|
-
}
|
|
2473
|
-
],
|
|
2474
|
-
"stateMutability": "nonpayable",
|
|
2475
|
-
"type": "function"
|
|
2476
|
-
},
|
|
2477
|
-
{
|
|
2478
|
-
"inputs": [
|
|
2479
|
-
{
|
|
2480
|
-
"internalType": "uint256",
|
|
2481
|
-
"name": "txId",
|
|
2482
|
-
"type": "uint256"
|
|
2483
|
-
}
|
|
2484
|
-
],
|
|
2485
|
-
"name": "transferOwnershipDelayedApproval",
|
|
2486
|
-
"outputs": [
|
|
2487
|
-
{
|
|
2488
|
-
"components": [
|
|
2489
|
-
{
|
|
2490
|
-
"internalType": "uint256",
|
|
2491
|
-
"name": "txId",
|
|
2492
|
-
"type": "uint256"
|
|
2493
|
-
},
|
|
2494
|
-
{
|
|
2495
|
-
"internalType": "uint256",
|
|
2496
|
-
"name": "releaseTime",
|
|
2497
|
-
"type": "uint256"
|
|
2498
|
-
},
|
|
2499
|
-
{
|
|
2500
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2501
|
-
"name": "status",
|
|
2502
|
-
"type": "uint8"
|
|
2503
|
-
},
|
|
2504
|
-
{
|
|
2505
|
-
"components": [
|
|
2506
|
-
{
|
|
2507
|
-
"internalType": "address",
|
|
2508
|
-
"name": "requester",
|
|
2509
|
-
"type": "address"
|
|
2510
|
-
},
|
|
2511
|
-
{
|
|
2512
|
-
"internalType": "address",
|
|
2513
|
-
"name": "target",
|
|
2514
|
-
"type": "address"
|
|
2515
|
-
},
|
|
2516
|
-
{
|
|
2517
|
-
"internalType": "uint256",
|
|
2518
|
-
"name": "value",
|
|
2519
|
-
"type": "uint256"
|
|
2520
|
-
},
|
|
2521
|
-
{
|
|
2522
|
-
"internalType": "uint256",
|
|
2523
|
-
"name": "gasLimit",
|
|
2524
|
-
"type": "uint256"
|
|
2525
|
-
},
|
|
2526
|
-
{
|
|
2527
|
-
"internalType": "bytes32",
|
|
2528
|
-
"name": "operationType",
|
|
2529
|
-
"type": "bytes32"
|
|
2530
|
-
},
|
|
2531
|
-
{
|
|
2532
|
-
"internalType": "bytes4",
|
|
2533
|
-
"name": "executionSelector",
|
|
2534
|
-
"type": "bytes4"
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
"internalType": "bytes",
|
|
2538
|
-
"name": "executionParams",
|
|
2539
|
-
"type": "bytes"
|
|
2540
|
-
}
|
|
2541
|
-
],
|
|
2542
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2543
|
-
"name": "params",
|
|
2544
|
-
"type": "tuple"
|
|
2545
|
-
},
|
|
2546
|
-
{
|
|
2547
|
-
"internalType": "bytes32",
|
|
2548
|
-
"name": "message",
|
|
2549
|
-
"type": "bytes32"
|
|
2550
|
-
},
|
|
2551
|
-
{
|
|
2552
|
-
"internalType": "bytes",
|
|
2553
|
-
"name": "result",
|
|
2554
|
-
"type": "bytes"
|
|
2555
|
-
},
|
|
2556
|
-
{
|
|
2557
|
-
"components": [
|
|
2558
|
-
{
|
|
2559
|
-
"internalType": "address",
|
|
2560
|
-
"name": "recipient",
|
|
2561
|
-
"type": "address"
|
|
2562
|
-
},
|
|
2563
|
-
{
|
|
2564
|
-
"internalType": "uint256",
|
|
2565
|
-
"name": "nativeTokenAmount",
|
|
2566
|
-
"type": "uint256"
|
|
2567
|
-
},
|
|
2568
|
-
{
|
|
2569
|
-
"internalType": "address",
|
|
2570
|
-
"name": "erc20TokenAddress",
|
|
2571
|
-
"type": "address"
|
|
2572
|
-
},
|
|
2573
|
-
{
|
|
2574
|
-
"internalType": "uint256",
|
|
2575
|
-
"name": "erc20TokenAmount",
|
|
2576
|
-
"type": "uint256"
|
|
2577
|
-
}
|
|
2578
|
-
],
|
|
2579
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2580
|
-
"name": "payment",
|
|
2581
|
-
"type": "tuple"
|
|
2582
|
-
}
|
|
2583
|
-
],
|
|
2584
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2585
|
-
"name": "",
|
|
2586
|
-
"type": "tuple"
|
|
2587
|
-
}
|
|
2588
|
-
],
|
|
2589
|
-
"stateMutability": "nonpayable",
|
|
2590
|
-
"type": "function"
|
|
2591
|
-
},
|
|
2592
|
-
{
|
|
2593
|
-
"inputs": [],
|
|
2594
|
-
"name": "transferOwnershipRequest",
|
|
2595
|
-
"outputs": [
|
|
2596
|
-
{
|
|
2597
|
-
"components": [
|
|
2598
|
-
{
|
|
2599
|
-
"internalType": "uint256",
|
|
2600
|
-
"name": "txId",
|
|
2601
|
-
"type": "uint256"
|
|
2602
|
-
},
|
|
2603
|
-
{
|
|
2604
|
-
"internalType": "uint256",
|
|
2605
|
-
"name": "releaseTime",
|
|
2606
|
-
"type": "uint256"
|
|
2607
|
-
},
|
|
2608
|
-
{
|
|
2609
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2610
|
-
"name": "status",
|
|
2611
|
-
"type": "uint8"
|
|
2612
|
-
},
|
|
2613
|
-
{
|
|
2614
|
-
"components": [
|
|
2615
|
-
{
|
|
2616
|
-
"internalType": "address",
|
|
2617
|
-
"name": "requester",
|
|
2618
|
-
"type": "address"
|
|
2619
|
-
},
|
|
2620
|
-
{
|
|
2621
|
-
"internalType": "address",
|
|
2622
|
-
"name": "target",
|
|
2623
|
-
"type": "address"
|
|
2624
|
-
},
|
|
2625
|
-
{
|
|
2626
|
-
"internalType": "uint256",
|
|
2627
|
-
"name": "value",
|
|
2628
|
-
"type": "uint256"
|
|
2629
|
-
},
|
|
2630
|
-
{
|
|
2631
|
-
"internalType": "uint256",
|
|
2632
|
-
"name": "gasLimit",
|
|
2633
|
-
"type": "uint256"
|
|
2634
|
-
},
|
|
2635
|
-
{
|
|
2636
|
-
"internalType": "bytes32",
|
|
2637
|
-
"name": "operationType",
|
|
2638
|
-
"type": "bytes32"
|
|
2639
|
-
},
|
|
2640
|
-
{
|
|
2641
|
-
"internalType": "bytes4",
|
|
2642
|
-
"name": "executionSelector",
|
|
2643
|
-
"type": "bytes4"
|
|
2644
|
-
},
|
|
2645
|
-
{
|
|
2646
|
-
"internalType": "bytes",
|
|
2647
|
-
"name": "executionParams",
|
|
2648
|
-
"type": "bytes"
|
|
2649
|
-
}
|
|
2650
|
-
],
|
|
2651
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2652
|
-
"name": "params",
|
|
2653
|
-
"type": "tuple"
|
|
2654
|
-
},
|
|
2655
|
-
{
|
|
2656
|
-
"internalType": "bytes32",
|
|
2657
|
-
"name": "message",
|
|
2658
|
-
"type": "bytes32"
|
|
2659
|
-
},
|
|
2660
|
-
{
|
|
2661
|
-
"internalType": "bytes",
|
|
2662
|
-
"name": "result",
|
|
2663
|
-
"type": "bytes"
|
|
2664
|
-
},
|
|
2665
|
-
{
|
|
2666
|
-
"components": [
|
|
2667
|
-
{
|
|
2668
|
-
"internalType": "address",
|
|
2669
|
-
"name": "recipient",
|
|
2670
|
-
"type": "address"
|
|
2671
|
-
},
|
|
2672
|
-
{
|
|
2673
|
-
"internalType": "uint256",
|
|
2674
|
-
"name": "nativeTokenAmount",
|
|
2675
|
-
"type": "uint256"
|
|
2676
|
-
},
|
|
2677
|
-
{
|
|
2678
|
-
"internalType": "address",
|
|
2679
|
-
"name": "erc20TokenAddress",
|
|
2680
|
-
"type": "address"
|
|
2681
|
-
},
|
|
2682
|
-
{
|
|
2683
|
-
"internalType": "uint256",
|
|
2684
|
-
"name": "erc20TokenAmount",
|
|
2685
|
-
"type": "uint256"
|
|
2686
|
-
}
|
|
2687
|
-
],
|
|
2688
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2689
|
-
"name": "payment",
|
|
2690
|
-
"type": "tuple"
|
|
2691
|
-
}
|
|
2692
|
-
],
|
|
2693
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2694
|
-
"name": "",
|
|
2695
|
-
"type": "tuple"
|
|
2696
|
-
}
|
|
2697
|
-
],
|
|
2698
|
-
"stateMutability": "nonpayable",
|
|
2699
|
-
"type": "function"
|
|
2700
|
-
},
|
|
2701
|
-
{
|
|
2702
|
-
"inputs": [
|
|
2703
|
-
{
|
|
2704
|
-
"components": [
|
|
2705
|
-
{
|
|
2706
|
-
"components": [
|
|
2707
|
-
{
|
|
2708
|
-
"internalType": "uint256",
|
|
2709
|
-
"name": "txId",
|
|
2710
|
-
"type": "uint256"
|
|
2711
|
-
},
|
|
2712
|
-
{
|
|
2713
|
-
"internalType": "uint256",
|
|
2714
|
-
"name": "releaseTime",
|
|
2715
|
-
"type": "uint256"
|
|
2716
|
-
},
|
|
2717
|
-
{
|
|
2718
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2719
|
-
"name": "status",
|
|
2720
|
-
"type": "uint8"
|
|
2721
|
-
},
|
|
2722
|
-
{
|
|
2723
|
-
"components": [
|
|
2724
|
-
{
|
|
2725
|
-
"internalType": "address",
|
|
2726
|
-
"name": "requester",
|
|
2727
|
-
"type": "address"
|
|
2728
|
-
},
|
|
2729
|
-
{
|
|
2730
|
-
"internalType": "address",
|
|
2731
|
-
"name": "target",
|
|
2732
|
-
"type": "address"
|
|
2733
|
-
},
|
|
2734
|
-
{
|
|
2735
|
-
"internalType": "uint256",
|
|
2736
|
-
"name": "value",
|
|
2737
|
-
"type": "uint256"
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"internalType": "uint256",
|
|
2741
|
-
"name": "gasLimit",
|
|
2742
|
-
"type": "uint256"
|
|
2743
|
-
},
|
|
2744
|
-
{
|
|
2745
|
-
"internalType": "bytes32",
|
|
2746
|
-
"name": "operationType",
|
|
2747
|
-
"type": "bytes32"
|
|
2748
|
-
},
|
|
2749
|
-
{
|
|
2750
|
-
"internalType": "bytes4",
|
|
2751
|
-
"name": "executionSelector",
|
|
2752
|
-
"type": "bytes4"
|
|
2753
|
-
},
|
|
2754
|
-
{
|
|
2755
|
-
"internalType": "bytes",
|
|
2756
|
-
"name": "executionParams",
|
|
2757
|
-
"type": "bytes"
|
|
2758
|
-
}
|
|
2759
|
-
],
|
|
2760
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2761
|
-
"name": "params",
|
|
2762
|
-
"type": "tuple"
|
|
2763
|
-
},
|
|
2764
|
-
{
|
|
2765
|
-
"internalType": "bytes32",
|
|
2766
|
-
"name": "message",
|
|
2767
|
-
"type": "bytes32"
|
|
2768
|
-
},
|
|
2769
|
-
{
|
|
2770
|
-
"internalType": "bytes",
|
|
2771
|
-
"name": "result",
|
|
2772
|
-
"type": "bytes"
|
|
2773
|
-
},
|
|
2774
|
-
{
|
|
2775
|
-
"components": [
|
|
2776
|
-
{
|
|
2777
|
-
"internalType": "address",
|
|
2778
|
-
"name": "recipient",
|
|
2779
|
-
"type": "address"
|
|
2780
|
-
},
|
|
2781
|
-
{
|
|
2782
|
-
"internalType": "uint256",
|
|
2783
|
-
"name": "nativeTokenAmount",
|
|
2784
|
-
"type": "uint256"
|
|
2785
|
-
},
|
|
2786
|
-
{
|
|
2787
|
-
"internalType": "address",
|
|
2788
|
-
"name": "erc20TokenAddress",
|
|
2789
|
-
"type": "address"
|
|
2790
|
-
},
|
|
2791
|
-
{
|
|
2792
|
-
"internalType": "uint256",
|
|
2793
|
-
"name": "erc20TokenAmount",
|
|
2794
|
-
"type": "uint256"
|
|
2795
|
-
}
|
|
2796
|
-
],
|
|
2797
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2798
|
-
"name": "payment",
|
|
2799
|
-
"type": "tuple"
|
|
2800
|
-
}
|
|
2801
|
-
],
|
|
2802
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2803
|
-
"name": "txRecord",
|
|
2804
|
-
"type": "tuple"
|
|
2805
|
-
},
|
|
2806
|
-
{
|
|
2807
|
-
"components": [
|
|
2808
|
-
{
|
|
2809
|
-
"internalType": "uint256",
|
|
2810
|
-
"name": "chainId",
|
|
2811
|
-
"type": "uint256"
|
|
2812
|
-
},
|
|
2813
|
-
{
|
|
2814
|
-
"internalType": "uint256",
|
|
2815
|
-
"name": "nonce",
|
|
2816
|
-
"type": "uint256"
|
|
2817
|
-
},
|
|
2818
|
-
{
|
|
2819
|
-
"internalType": "address",
|
|
2820
|
-
"name": "handlerContract",
|
|
2821
|
-
"type": "address"
|
|
2822
|
-
},
|
|
2823
|
-
{
|
|
2824
|
-
"internalType": "bytes4",
|
|
2825
|
-
"name": "handlerSelector",
|
|
2826
|
-
"type": "bytes4"
|
|
2827
|
-
},
|
|
2828
|
-
{
|
|
2829
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
2830
|
-
"name": "action",
|
|
2831
|
-
"type": "uint8"
|
|
2832
|
-
},
|
|
2833
|
-
{
|
|
2834
|
-
"internalType": "uint256",
|
|
2835
|
-
"name": "deadline",
|
|
2836
|
-
"type": "uint256"
|
|
2837
|
-
},
|
|
2838
|
-
{
|
|
2839
|
-
"internalType": "uint256",
|
|
2840
|
-
"name": "maxGasPrice",
|
|
2841
|
-
"type": "uint256"
|
|
2842
|
-
},
|
|
2843
|
-
{
|
|
2844
|
-
"internalType": "address",
|
|
2845
|
-
"name": "signer",
|
|
2846
|
-
"type": "address"
|
|
2847
|
-
}
|
|
2848
|
-
],
|
|
2849
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2850
|
-
"name": "params",
|
|
2851
|
-
"type": "tuple"
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"internalType": "bytes32",
|
|
2855
|
-
"name": "message",
|
|
2856
|
-
"type": "bytes32"
|
|
2857
|
-
},
|
|
2858
|
-
{
|
|
2859
|
-
"internalType": "bytes",
|
|
2860
|
-
"name": "signature",
|
|
2861
|
-
"type": "bytes"
|
|
2862
|
-
},
|
|
2863
|
-
{
|
|
2864
|
-
"internalType": "bytes",
|
|
2865
|
-
"name": "data",
|
|
2866
|
-
"type": "bytes"
|
|
2867
|
-
}
|
|
2868
|
-
],
|
|
2869
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2870
|
-
"name": "metaTx",
|
|
2871
|
-
"type": "tuple"
|
|
2872
|
-
}
|
|
2873
|
-
],
|
|
2874
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2875
|
-
"outputs": [
|
|
2876
|
-
{
|
|
2877
|
-
"components": [
|
|
2878
|
-
{
|
|
2879
|
-
"internalType": "uint256",
|
|
2880
|
-
"name": "txId",
|
|
2881
|
-
"type": "uint256"
|
|
2882
|
-
},
|
|
2883
|
-
{
|
|
2884
|
-
"internalType": "uint256",
|
|
2885
|
-
"name": "releaseTime",
|
|
2886
|
-
"type": "uint256"
|
|
2887
|
-
},
|
|
2888
|
-
{
|
|
2889
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2890
|
-
"name": "status",
|
|
2891
|
-
"type": "uint8"
|
|
2892
|
-
},
|
|
2893
|
-
{
|
|
2894
|
-
"components": [
|
|
2895
|
-
{
|
|
2896
|
-
"internalType": "address",
|
|
2897
|
-
"name": "requester",
|
|
2898
|
-
"type": "address"
|
|
2899
|
-
},
|
|
2900
|
-
{
|
|
2901
|
-
"internalType": "address",
|
|
2902
|
-
"name": "target",
|
|
2903
|
-
"type": "address"
|
|
2904
|
-
},
|
|
2905
|
-
{
|
|
2906
|
-
"internalType": "uint256",
|
|
2907
|
-
"name": "value",
|
|
2908
|
-
"type": "uint256"
|
|
2909
|
-
},
|
|
2910
|
-
{
|
|
2911
|
-
"internalType": "uint256",
|
|
2912
|
-
"name": "gasLimit",
|
|
2913
|
-
"type": "uint256"
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"internalType": "bytes32",
|
|
2917
|
-
"name": "operationType",
|
|
2918
|
-
"type": "bytes32"
|
|
2919
|
-
},
|
|
2920
|
-
{
|
|
2921
|
-
"internalType": "bytes4",
|
|
2922
|
-
"name": "executionSelector",
|
|
2923
|
-
"type": "bytes4"
|
|
2924
|
-
},
|
|
2925
|
-
{
|
|
2926
|
-
"internalType": "bytes",
|
|
2927
|
-
"name": "executionParams",
|
|
2928
|
-
"type": "bytes"
|
|
2929
|
-
}
|
|
2930
|
-
],
|
|
2931
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2932
|
-
"name": "params",
|
|
2933
|
-
"type": "tuple"
|
|
2934
|
-
},
|
|
2935
|
-
{
|
|
2936
|
-
"internalType": "bytes32",
|
|
2937
|
-
"name": "message",
|
|
2938
|
-
"type": "bytes32"
|
|
2939
|
-
},
|
|
2940
|
-
{
|
|
2941
|
-
"internalType": "bytes",
|
|
2942
|
-
"name": "result",
|
|
2943
|
-
"type": "bytes"
|
|
2944
|
-
},
|
|
2945
|
-
{
|
|
2946
|
-
"components": [
|
|
2947
|
-
{
|
|
2948
|
-
"internalType": "address",
|
|
2949
|
-
"name": "recipient",
|
|
2950
|
-
"type": "address"
|
|
2951
|
-
},
|
|
2952
|
-
{
|
|
2953
|
-
"internalType": "uint256",
|
|
2954
|
-
"name": "nativeTokenAmount",
|
|
2955
|
-
"type": "uint256"
|
|
2956
|
-
},
|
|
2957
|
-
{
|
|
2958
|
-
"internalType": "address",
|
|
2959
|
-
"name": "erc20TokenAddress",
|
|
2960
|
-
"type": "address"
|
|
2961
|
-
},
|
|
2962
|
-
{
|
|
2963
|
-
"internalType": "uint256",
|
|
2964
|
-
"name": "erc20TokenAmount",
|
|
2965
|
-
"type": "uint256"
|
|
2966
|
-
}
|
|
2967
|
-
],
|
|
2968
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2969
|
-
"name": "payment",
|
|
2970
|
-
"type": "tuple"
|
|
2971
|
-
}
|
|
2972
|
-
],
|
|
2973
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2974
|
-
"name": "",
|
|
2975
|
-
"type": "tuple"
|
|
2976
|
-
}
|
|
2977
|
-
],
|
|
2978
|
-
"stateMutability": "nonpayable",
|
|
2979
|
-
"type": "function"
|
|
2980
|
-
},
|
|
2981
|
-
{
|
|
2982
|
-
"inputs": [
|
|
2983
|
-
{
|
|
2984
|
-
"internalType": "uint256",
|
|
2985
|
-
"name": "txId",
|
|
2986
|
-
"type": "uint256"
|
|
2987
|
-
}
|
|
2988
|
-
],
|
|
2989
|
-
"name": "updateBroadcasterCancellation",
|
|
2990
|
-
"outputs": [
|
|
2991
|
-
{
|
|
2992
|
-
"components": [
|
|
2993
|
-
{
|
|
2994
|
-
"internalType": "uint256",
|
|
2995
|
-
"name": "txId",
|
|
2996
|
-
"type": "uint256"
|
|
2997
|
-
},
|
|
2998
|
-
{
|
|
2999
|
-
"internalType": "uint256",
|
|
3000
|
-
"name": "releaseTime",
|
|
3001
|
-
"type": "uint256"
|
|
3002
|
-
},
|
|
3003
|
-
{
|
|
3004
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3005
|
-
"name": "status",
|
|
3006
|
-
"type": "uint8"
|
|
3007
|
-
},
|
|
3008
|
-
{
|
|
3009
|
-
"components": [
|
|
3010
|
-
{
|
|
3011
|
-
"internalType": "address",
|
|
3012
|
-
"name": "requester",
|
|
3013
|
-
"type": "address"
|
|
3014
|
-
},
|
|
3015
|
-
{
|
|
3016
|
-
"internalType": "address",
|
|
3017
|
-
"name": "target",
|
|
3018
|
-
"type": "address"
|
|
3019
|
-
},
|
|
3020
|
-
{
|
|
3021
|
-
"internalType": "uint256",
|
|
3022
|
-
"name": "value",
|
|
3023
|
-
"type": "uint256"
|
|
3024
|
-
},
|
|
3025
|
-
{
|
|
3026
|
-
"internalType": "uint256",
|
|
3027
|
-
"name": "gasLimit",
|
|
3028
|
-
"type": "uint256"
|
|
3029
|
-
},
|
|
3030
|
-
{
|
|
3031
|
-
"internalType": "bytes32",
|
|
3032
|
-
"name": "operationType",
|
|
3033
|
-
"type": "bytes32"
|
|
3034
|
-
},
|
|
3035
|
-
{
|
|
3036
|
-
"internalType": "bytes4",
|
|
3037
|
-
"name": "executionSelector",
|
|
3038
|
-
"type": "bytes4"
|
|
3039
|
-
},
|
|
3040
|
-
{
|
|
3041
|
-
"internalType": "bytes",
|
|
3042
|
-
"name": "executionParams",
|
|
3043
|
-
"type": "bytes"
|
|
3044
|
-
}
|
|
3045
|
-
],
|
|
3046
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3047
|
-
"name": "params",
|
|
3048
|
-
"type": "tuple"
|
|
3049
|
-
},
|
|
3050
|
-
{
|
|
3051
|
-
"internalType": "bytes32",
|
|
3052
|
-
"name": "message",
|
|
3053
|
-
"type": "bytes32"
|
|
3054
|
-
},
|
|
3055
|
-
{
|
|
3056
|
-
"internalType": "bytes",
|
|
3057
|
-
"name": "result",
|
|
3058
|
-
"type": "bytes"
|
|
3059
|
-
},
|
|
3060
|
-
{
|
|
3061
|
-
"components": [
|
|
3062
|
-
{
|
|
3063
|
-
"internalType": "address",
|
|
3064
|
-
"name": "recipient",
|
|
3065
|
-
"type": "address"
|
|
3066
|
-
},
|
|
3067
|
-
{
|
|
3068
|
-
"internalType": "uint256",
|
|
3069
|
-
"name": "nativeTokenAmount",
|
|
3070
|
-
"type": "uint256"
|
|
3071
|
-
},
|
|
3072
|
-
{
|
|
3073
|
-
"internalType": "address",
|
|
3074
|
-
"name": "erc20TokenAddress",
|
|
3075
|
-
"type": "address"
|
|
3076
|
-
},
|
|
3077
|
-
{
|
|
3078
|
-
"internalType": "uint256",
|
|
3079
|
-
"name": "erc20TokenAmount",
|
|
3080
|
-
"type": "uint256"
|
|
3081
|
-
}
|
|
3082
|
-
],
|
|
3083
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3084
|
-
"name": "payment",
|
|
3085
|
-
"type": "tuple"
|
|
3086
|
-
}
|
|
3087
|
-
],
|
|
3088
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3089
|
-
"name": "",
|
|
3090
|
-
"type": "tuple"
|
|
3091
|
-
}
|
|
3092
|
-
],
|
|
3093
|
-
"stateMutability": "nonpayable",
|
|
3094
|
-
"type": "function"
|
|
3095
|
-
},
|
|
3096
|
-
{
|
|
3097
|
-
"inputs": [
|
|
3098
|
-
{
|
|
3099
|
-
"components": [
|
|
3100
|
-
{
|
|
3101
|
-
"components": [
|
|
3102
|
-
{
|
|
3103
|
-
"internalType": "uint256",
|
|
3104
|
-
"name": "txId",
|
|
3105
|
-
"type": "uint256"
|
|
3106
|
-
},
|
|
3107
|
-
{
|
|
3108
|
-
"internalType": "uint256",
|
|
3109
|
-
"name": "releaseTime",
|
|
3110
|
-
"type": "uint256"
|
|
3111
|
-
},
|
|
3112
|
-
{
|
|
3113
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3114
|
-
"name": "status",
|
|
3115
|
-
"type": "uint8"
|
|
3116
|
-
},
|
|
3117
|
-
{
|
|
3118
|
-
"components": [
|
|
3119
|
-
{
|
|
3120
|
-
"internalType": "address",
|
|
3121
|
-
"name": "requester",
|
|
3122
|
-
"type": "address"
|
|
3123
|
-
},
|
|
3124
|
-
{
|
|
3125
|
-
"internalType": "address",
|
|
3126
|
-
"name": "target",
|
|
3127
|
-
"type": "address"
|
|
3128
|
-
},
|
|
3129
|
-
{
|
|
3130
|
-
"internalType": "uint256",
|
|
3131
|
-
"name": "value",
|
|
3132
|
-
"type": "uint256"
|
|
3133
|
-
},
|
|
3134
|
-
{
|
|
3135
|
-
"internalType": "uint256",
|
|
3136
|
-
"name": "gasLimit",
|
|
3137
|
-
"type": "uint256"
|
|
3138
|
-
},
|
|
3139
|
-
{
|
|
3140
|
-
"internalType": "bytes32",
|
|
3141
|
-
"name": "operationType",
|
|
3142
|
-
"type": "bytes32"
|
|
3143
|
-
},
|
|
3144
|
-
{
|
|
3145
|
-
"internalType": "bytes4",
|
|
3146
|
-
"name": "executionSelector",
|
|
3147
|
-
"type": "bytes4"
|
|
3148
|
-
},
|
|
3149
|
-
{
|
|
3150
|
-
"internalType": "bytes",
|
|
3151
|
-
"name": "executionParams",
|
|
3152
|
-
"type": "bytes"
|
|
3153
|
-
}
|
|
3154
|
-
],
|
|
3155
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3156
|
-
"name": "params",
|
|
3157
|
-
"type": "tuple"
|
|
3158
|
-
},
|
|
3159
|
-
{
|
|
3160
|
-
"internalType": "bytes32",
|
|
3161
|
-
"name": "message",
|
|
3162
|
-
"type": "bytes32"
|
|
3163
|
-
},
|
|
3164
|
-
{
|
|
3165
|
-
"internalType": "bytes",
|
|
3166
|
-
"name": "result",
|
|
3167
|
-
"type": "bytes"
|
|
3168
|
-
},
|
|
3169
|
-
{
|
|
3170
|
-
"components": [
|
|
3171
|
-
{
|
|
3172
|
-
"internalType": "address",
|
|
3173
|
-
"name": "recipient",
|
|
3174
|
-
"type": "address"
|
|
3175
|
-
},
|
|
3176
|
-
{
|
|
3177
|
-
"internalType": "uint256",
|
|
3178
|
-
"name": "nativeTokenAmount",
|
|
3179
|
-
"type": "uint256"
|
|
3180
|
-
},
|
|
3181
|
-
{
|
|
3182
|
-
"internalType": "address",
|
|
3183
|
-
"name": "erc20TokenAddress",
|
|
3184
|
-
"type": "address"
|
|
3185
|
-
},
|
|
3186
|
-
{
|
|
3187
|
-
"internalType": "uint256",
|
|
3188
|
-
"name": "erc20TokenAmount",
|
|
3189
|
-
"type": "uint256"
|
|
3190
|
-
}
|
|
3191
|
-
],
|
|
3192
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3193
|
-
"name": "payment",
|
|
3194
|
-
"type": "tuple"
|
|
3195
|
-
}
|
|
3196
|
-
],
|
|
3197
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3198
|
-
"name": "txRecord",
|
|
3199
|
-
"type": "tuple"
|
|
3200
|
-
},
|
|
3201
|
-
{
|
|
3202
|
-
"components": [
|
|
3203
|
-
{
|
|
3204
|
-
"internalType": "uint256",
|
|
3205
|
-
"name": "chainId",
|
|
3206
|
-
"type": "uint256"
|
|
3207
|
-
},
|
|
3208
|
-
{
|
|
3209
|
-
"internalType": "uint256",
|
|
3210
|
-
"name": "nonce",
|
|
3211
|
-
"type": "uint256"
|
|
3212
|
-
},
|
|
3213
|
-
{
|
|
3214
|
-
"internalType": "address",
|
|
3215
|
-
"name": "handlerContract",
|
|
3216
|
-
"type": "address"
|
|
3217
|
-
},
|
|
3218
|
-
{
|
|
3219
|
-
"internalType": "bytes4",
|
|
3220
|
-
"name": "handlerSelector",
|
|
3221
|
-
"type": "bytes4"
|
|
3222
|
-
},
|
|
3223
|
-
{
|
|
3224
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
3225
|
-
"name": "action",
|
|
3226
|
-
"type": "uint8"
|
|
3227
|
-
},
|
|
3228
|
-
{
|
|
3229
|
-
"internalType": "uint256",
|
|
3230
|
-
"name": "deadline",
|
|
3231
|
-
"type": "uint256"
|
|
3232
|
-
},
|
|
3233
|
-
{
|
|
3234
|
-
"internalType": "uint256",
|
|
3235
|
-
"name": "maxGasPrice",
|
|
3236
|
-
"type": "uint256"
|
|
3237
|
-
},
|
|
3238
|
-
{
|
|
3239
|
-
"internalType": "address",
|
|
3240
|
-
"name": "signer",
|
|
3241
|
-
"type": "address"
|
|
3242
|
-
}
|
|
3243
|
-
],
|
|
3244
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3245
|
-
"name": "params",
|
|
3246
|
-
"type": "tuple"
|
|
3247
|
-
},
|
|
3248
|
-
{
|
|
3249
|
-
"internalType": "bytes32",
|
|
3250
|
-
"name": "message",
|
|
3251
|
-
"type": "bytes32"
|
|
3252
|
-
},
|
|
3253
|
-
{
|
|
3254
|
-
"internalType": "bytes",
|
|
3255
|
-
"name": "signature",
|
|
3256
|
-
"type": "bytes"
|
|
3257
|
-
},
|
|
3258
|
-
{
|
|
3259
|
-
"internalType": "bytes",
|
|
3260
|
-
"name": "data",
|
|
3261
|
-
"type": "bytes"
|
|
3262
|
-
}
|
|
3263
|
-
],
|
|
3264
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3265
|
-
"name": "metaTx",
|
|
3266
|
-
"type": "tuple"
|
|
3267
|
-
}
|
|
3268
|
-
],
|
|
3269
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3270
|
-
"outputs": [
|
|
3271
|
-
{
|
|
3272
|
-
"components": [
|
|
3273
|
-
{
|
|
3274
|
-
"internalType": "uint256",
|
|
3275
|
-
"name": "txId",
|
|
3276
|
-
"type": "uint256"
|
|
3277
|
-
},
|
|
3278
|
-
{
|
|
3279
|
-
"internalType": "uint256",
|
|
3280
|
-
"name": "releaseTime",
|
|
3281
|
-
"type": "uint256"
|
|
3282
|
-
},
|
|
3283
|
-
{
|
|
3284
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3285
|
-
"name": "status",
|
|
3286
|
-
"type": "uint8"
|
|
3287
|
-
},
|
|
3288
|
-
{
|
|
3289
|
-
"components": [
|
|
3290
|
-
{
|
|
3291
|
-
"internalType": "address",
|
|
3292
|
-
"name": "requester",
|
|
3293
|
-
"type": "address"
|
|
3294
|
-
},
|
|
3295
|
-
{
|
|
3296
|
-
"internalType": "address",
|
|
3297
|
-
"name": "target",
|
|
3298
|
-
"type": "address"
|
|
3299
|
-
},
|
|
3300
|
-
{
|
|
3301
|
-
"internalType": "uint256",
|
|
3302
|
-
"name": "value",
|
|
3303
|
-
"type": "uint256"
|
|
3304
|
-
},
|
|
3305
|
-
{
|
|
3306
|
-
"internalType": "uint256",
|
|
3307
|
-
"name": "gasLimit",
|
|
3308
|
-
"type": "uint256"
|
|
3309
|
-
},
|
|
3310
|
-
{
|
|
3311
|
-
"internalType": "bytes32",
|
|
3312
|
-
"name": "operationType",
|
|
3313
|
-
"type": "bytes32"
|
|
3314
|
-
},
|
|
3315
|
-
{
|
|
3316
|
-
"internalType": "bytes4",
|
|
3317
|
-
"name": "executionSelector",
|
|
3318
|
-
"type": "bytes4"
|
|
3319
|
-
},
|
|
3320
|
-
{
|
|
3321
|
-
"internalType": "bytes",
|
|
3322
|
-
"name": "executionParams",
|
|
3323
|
-
"type": "bytes"
|
|
3324
|
-
}
|
|
3325
|
-
],
|
|
3326
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3327
|
-
"name": "params",
|
|
3328
|
-
"type": "tuple"
|
|
3329
|
-
},
|
|
3330
|
-
{
|
|
3331
|
-
"internalType": "bytes32",
|
|
3332
|
-
"name": "message",
|
|
3333
|
-
"type": "bytes32"
|
|
3334
|
-
},
|
|
3335
|
-
{
|
|
3336
|
-
"internalType": "bytes",
|
|
3337
|
-
"name": "result",
|
|
3338
|
-
"type": "bytes"
|
|
3339
|
-
},
|
|
3340
|
-
{
|
|
3341
|
-
"components": [
|
|
3342
|
-
{
|
|
3343
|
-
"internalType": "address",
|
|
3344
|
-
"name": "recipient",
|
|
3345
|
-
"type": "address"
|
|
3346
|
-
},
|
|
3347
|
-
{
|
|
3348
|
-
"internalType": "uint256",
|
|
3349
|
-
"name": "nativeTokenAmount",
|
|
3350
|
-
"type": "uint256"
|
|
3351
|
-
},
|
|
3352
|
-
{
|
|
3353
|
-
"internalType": "address",
|
|
3354
|
-
"name": "erc20TokenAddress",
|
|
3355
|
-
"type": "address"
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
"internalType": "uint256",
|
|
3359
|
-
"name": "erc20TokenAmount",
|
|
3360
|
-
"type": "uint256"
|
|
3361
|
-
}
|
|
3362
|
-
],
|
|
3363
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3364
|
-
"name": "payment",
|
|
3365
|
-
"type": "tuple"
|
|
3366
|
-
}
|
|
3367
|
-
],
|
|
3368
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3369
|
-
"name": "",
|
|
3370
|
-
"type": "tuple"
|
|
3371
|
-
}
|
|
3372
|
-
],
|
|
3373
|
-
"stateMutability": "nonpayable",
|
|
3374
|
-
"type": "function"
|
|
3375
|
-
},
|
|
3376
|
-
{
|
|
3377
|
-
"inputs": [
|
|
3378
|
-
{
|
|
3379
|
-
"internalType": "uint256",
|
|
3380
|
-
"name": "txId",
|
|
3381
|
-
"type": "uint256"
|
|
3382
|
-
}
|
|
3383
|
-
],
|
|
3384
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
3385
|
-
"outputs": [
|
|
3386
|
-
{
|
|
3387
|
-
"components": [
|
|
3388
|
-
{
|
|
3389
|
-
"internalType": "uint256",
|
|
3390
|
-
"name": "txId",
|
|
3391
|
-
"type": "uint256"
|
|
3392
|
-
},
|
|
3393
|
-
{
|
|
3394
|
-
"internalType": "uint256",
|
|
3395
|
-
"name": "releaseTime",
|
|
3396
|
-
"type": "uint256"
|
|
3397
|
-
},
|
|
3398
|
-
{
|
|
3399
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3400
|
-
"name": "status",
|
|
3401
|
-
"type": "uint8"
|
|
3402
|
-
},
|
|
3403
|
-
{
|
|
3404
|
-
"components": [
|
|
3405
|
-
{
|
|
3406
|
-
"internalType": "address",
|
|
3407
|
-
"name": "requester",
|
|
3408
|
-
"type": "address"
|
|
3409
|
-
},
|
|
3410
|
-
{
|
|
3411
|
-
"internalType": "address",
|
|
3412
|
-
"name": "target",
|
|
3413
|
-
"type": "address"
|
|
3414
|
-
},
|
|
3415
2342
|
{
|
|
3416
2343
|
"internalType": "uint256",
|
|
3417
|
-
"name": "
|
|
2344
|
+
"name": "txId",
|
|
3418
2345
|
"type": "uint256"
|
|
3419
2346
|
},
|
|
3420
2347
|
{
|
|
3421
2348
|
"internalType": "uint256",
|
|
3422
|
-
"name": "
|
|
2349
|
+
"name": "releaseTime",
|
|
3423
2350
|
"type": "uint256"
|
|
3424
2351
|
},
|
|
3425
2352
|
{
|
|
3426
|
-
"internalType": "
|
|
3427
|
-
"name": "
|
|
3428
|
-
"type": "
|
|
2353
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2354
|
+
"name": "status",
|
|
2355
|
+
"type": "uint8"
|
|
3429
2356
|
},
|
|
3430
2357
|
{
|
|
3431
|
-
"
|
|
3432
|
-
|
|
3433
|
-
|
|
2358
|
+
"components": [
|
|
2359
|
+
{
|
|
2360
|
+
"internalType": "address",
|
|
2361
|
+
"name": "requester",
|
|
2362
|
+
"type": "address"
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"internalType": "address",
|
|
2366
|
+
"name": "target",
|
|
2367
|
+
"type": "address"
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"internalType": "uint256",
|
|
2371
|
+
"name": "value",
|
|
2372
|
+
"type": "uint256"
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
"internalType": "uint256",
|
|
2376
|
+
"name": "gasLimit",
|
|
2377
|
+
"type": "uint256"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"internalType": "bytes32",
|
|
2381
|
+
"name": "operationType",
|
|
2382
|
+
"type": "bytes32"
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"internalType": "bytes4",
|
|
2386
|
+
"name": "executionSelector",
|
|
2387
|
+
"type": "bytes4"
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"internalType": "bytes",
|
|
2391
|
+
"name": "executionParams",
|
|
2392
|
+
"type": "bytes"
|
|
2393
|
+
}
|
|
2394
|
+
],
|
|
2395
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2396
|
+
"name": "params",
|
|
2397
|
+
"type": "tuple"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"internalType": "bytes32",
|
|
2401
|
+
"name": "message",
|
|
2402
|
+
"type": "bytes32"
|
|
3434
2403
|
},
|
|
3435
2404
|
{
|
|
3436
2405
|
"internalType": "bytes",
|
|
3437
|
-
"name": "
|
|
2406
|
+
"name": "result",
|
|
3438
2407
|
"type": "bytes"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"components": [
|
|
2411
|
+
{
|
|
2412
|
+
"internalType": "address",
|
|
2413
|
+
"name": "recipient",
|
|
2414
|
+
"type": "address"
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"internalType": "uint256",
|
|
2418
|
+
"name": "nativeTokenAmount",
|
|
2419
|
+
"type": "uint256"
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"internalType": "address",
|
|
2423
|
+
"name": "erc20TokenAddress",
|
|
2424
|
+
"type": "address"
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
"internalType": "uint256",
|
|
2428
|
+
"name": "erc20TokenAmount",
|
|
2429
|
+
"type": "uint256"
|
|
2430
|
+
}
|
|
2431
|
+
],
|
|
2432
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2433
|
+
"name": "payment",
|
|
2434
|
+
"type": "tuple"
|
|
3439
2435
|
}
|
|
3440
2436
|
],
|
|
3441
|
-
"internalType": "struct EngineBlox.
|
|
3442
|
-
"name": "
|
|
2437
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2438
|
+
"name": "txRecord",
|
|
3443
2439
|
"type": "tuple"
|
|
3444
2440
|
},
|
|
3445
|
-
{
|
|
3446
|
-
"internalType": "bytes32",
|
|
3447
|
-
"name": "message",
|
|
3448
|
-
"type": "bytes32"
|
|
3449
|
-
},
|
|
3450
|
-
{
|
|
3451
|
-
"internalType": "bytes",
|
|
3452
|
-
"name": "result",
|
|
3453
|
-
"type": "bytes"
|
|
3454
|
-
},
|
|
3455
2441
|
{
|
|
3456
2442
|
"components": [
|
|
3457
2443
|
{
|
|
3458
|
-
"internalType": "
|
|
3459
|
-
"name": "
|
|
3460
|
-
"type": "
|
|
2444
|
+
"internalType": "uint256",
|
|
2445
|
+
"name": "chainId",
|
|
2446
|
+
"type": "uint256"
|
|
3461
2447
|
},
|
|
3462
2448
|
{
|
|
3463
2449
|
"internalType": "uint256",
|
|
3464
|
-
"name": "
|
|
2450
|
+
"name": "nonce",
|
|
3465
2451
|
"type": "uint256"
|
|
3466
2452
|
},
|
|
3467
2453
|
{
|
|
3468
2454
|
"internalType": "address",
|
|
3469
|
-
"name": "
|
|
2455
|
+
"name": "handlerContract",
|
|
3470
2456
|
"type": "address"
|
|
3471
2457
|
},
|
|
3472
2458
|
{
|
|
3473
|
-
"internalType": "
|
|
3474
|
-
"name": "
|
|
3475
|
-
"type": "
|
|
3476
|
-
}
|
|
3477
|
-
],
|
|
3478
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3479
|
-
"name": "payment",
|
|
3480
|
-
"type": "tuple"
|
|
3481
|
-
}
|
|
3482
|
-
],
|
|
3483
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3484
|
-
"name": "",
|
|
3485
|
-
"type": "tuple"
|
|
3486
|
-
}
|
|
3487
|
-
],
|
|
3488
|
-
"stateMutability": "nonpayable",
|
|
3489
|
-
"type": "function"
|
|
3490
|
-
},
|
|
3491
|
-
{
|
|
3492
|
-
"inputs": [
|
|
3493
|
-
{
|
|
3494
|
-
"internalType": "address",
|
|
3495
|
-
"name": "newBroadcaster",
|
|
3496
|
-
"type": "address"
|
|
3497
|
-
},
|
|
3498
|
-
{
|
|
3499
|
-
"internalType": "uint256",
|
|
3500
|
-
"name": "location",
|
|
3501
|
-
"type": "uint256"
|
|
3502
|
-
}
|
|
3503
|
-
],
|
|
3504
|
-
"name": "updateBroadcasterRequest",
|
|
3505
|
-
"outputs": [
|
|
3506
|
-
{
|
|
3507
|
-
"components": [
|
|
3508
|
-
{
|
|
3509
|
-
"internalType": "uint256",
|
|
3510
|
-
"name": "txId",
|
|
3511
|
-
"type": "uint256"
|
|
3512
|
-
},
|
|
3513
|
-
{
|
|
3514
|
-
"internalType": "uint256",
|
|
3515
|
-
"name": "releaseTime",
|
|
3516
|
-
"type": "uint256"
|
|
3517
|
-
},
|
|
3518
|
-
{
|
|
3519
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3520
|
-
"name": "status",
|
|
3521
|
-
"type": "uint8"
|
|
3522
|
-
},
|
|
3523
|
-
{
|
|
3524
|
-
"components": [
|
|
3525
|
-
{
|
|
3526
|
-
"internalType": "address",
|
|
3527
|
-
"name": "requester",
|
|
3528
|
-
"type": "address"
|
|
2459
|
+
"internalType": "bytes4",
|
|
2460
|
+
"name": "handlerSelector",
|
|
2461
|
+
"type": "bytes4"
|
|
3529
2462
|
},
|
|
3530
2463
|
{
|
|
3531
|
-
"internalType": "
|
|
3532
|
-
"name": "
|
|
3533
|
-
"type": "
|
|
2464
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2465
|
+
"name": "action",
|
|
2466
|
+
"type": "uint8"
|
|
3534
2467
|
},
|
|
3535
2468
|
{
|
|
3536
2469
|
"internalType": "uint256",
|
|
3537
|
-
"name": "
|
|
2470
|
+
"name": "deadline",
|
|
3538
2471
|
"type": "uint256"
|
|
3539
2472
|
},
|
|
3540
2473
|
{
|
|
3541
2474
|
"internalType": "uint256",
|
|
3542
|
-
"name": "
|
|
2475
|
+
"name": "maxGasPrice",
|
|
3543
2476
|
"type": "uint256"
|
|
3544
2477
|
},
|
|
3545
2478
|
{
|
|
3546
|
-
"internalType": "
|
|
3547
|
-
"name": "
|
|
3548
|
-
"type": "
|
|
3549
|
-
},
|
|
3550
|
-
{
|
|
3551
|
-
"internalType": "bytes4",
|
|
3552
|
-
"name": "executionSelector",
|
|
3553
|
-
"type": "bytes4"
|
|
3554
|
-
},
|
|
3555
|
-
{
|
|
3556
|
-
"internalType": "bytes",
|
|
3557
|
-
"name": "executionParams",
|
|
3558
|
-
"type": "bytes"
|
|
2479
|
+
"internalType": "address",
|
|
2480
|
+
"name": "signer",
|
|
2481
|
+
"type": "address"
|
|
3559
2482
|
}
|
|
3560
2483
|
],
|
|
3561
|
-
"internalType": "struct EngineBlox.
|
|
2484
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3562
2485
|
"name": "params",
|
|
3563
2486
|
"type": "tuple"
|
|
3564
2487
|
},
|
|
@@ -3569,42 +2492,71 @@
|
|
|
3569
2492
|
},
|
|
3570
2493
|
{
|
|
3571
2494
|
"internalType": "bytes",
|
|
3572
|
-
"name": "
|
|
2495
|
+
"name": "signature",
|
|
3573
2496
|
"type": "bytes"
|
|
3574
2497
|
},
|
|
3575
2498
|
{
|
|
3576
|
-
"
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
"name": "recipient",
|
|
3580
|
-
"type": "address"
|
|
3581
|
-
},
|
|
3582
|
-
{
|
|
3583
|
-
"internalType": "uint256",
|
|
3584
|
-
"name": "nativeTokenAmount",
|
|
3585
|
-
"type": "uint256"
|
|
3586
|
-
},
|
|
3587
|
-
{
|
|
3588
|
-
"internalType": "address",
|
|
3589
|
-
"name": "erc20TokenAddress",
|
|
3590
|
-
"type": "address"
|
|
3591
|
-
},
|
|
3592
|
-
{
|
|
3593
|
-
"internalType": "uint256",
|
|
3594
|
-
"name": "erc20TokenAmount",
|
|
3595
|
-
"type": "uint256"
|
|
3596
|
-
}
|
|
3597
|
-
],
|
|
3598
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3599
|
-
"name": "payment",
|
|
3600
|
-
"type": "tuple"
|
|
2499
|
+
"internalType": "bytes",
|
|
2500
|
+
"name": "data",
|
|
2501
|
+
"type": "bytes"
|
|
3601
2502
|
}
|
|
3602
2503
|
],
|
|
3603
|
-
"internalType": "struct EngineBlox.
|
|
3604
|
-
"name": "",
|
|
2504
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2505
|
+
"name": "metaTx",
|
|
3605
2506
|
"type": "tuple"
|
|
3606
2507
|
}
|
|
3607
2508
|
],
|
|
2509
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2510
|
+
"outputs": [
|
|
2511
|
+
{
|
|
2512
|
+
"internalType": "uint256",
|
|
2513
|
+
"name": "",
|
|
2514
|
+
"type": "uint256"
|
|
2515
|
+
}
|
|
2516
|
+
],
|
|
2517
|
+
"stateMutability": "nonpayable",
|
|
2518
|
+
"type": "function"
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"inputs": [
|
|
2522
|
+
{
|
|
2523
|
+
"internalType": "uint256",
|
|
2524
|
+
"name": "txId",
|
|
2525
|
+
"type": "uint256"
|
|
2526
|
+
}
|
|
2527
|
+
],
|
|
2528
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
2529
|
+
"outputs": [
|
|
2530
|
+
{
|
|
2531
|
+
"internalType": "uint256",
|
|
2532
|
+
"name": "",
|
|
2533
|
+
"type": "uint256"
|
|
2534
|
+
}
|
|
2535
|
+
],
|
|
2536
|
+
"stateMutability": "nonpayable",
|
|
2537
|
+
"type": "function"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"inputs": [
|
|
2541
|
+
{
|
|
2542
|
+
"internalType": "address",
|
|
2543
|
+
"name": "newBroadcaster",
|
|
2544
|
+
"type": "address"
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
"internalType": "uint256",
|
|
2548
|
+
"name": "location",
|
|
2549
|
+
"type": "uint256"
|
|
2550
|
+
}
|
|
2551
|
+
],
|
|
2552
|
+
"name": "updateBroadcasterRequest",
|
|
2553
|
+
"outputs": [
|
|
2554
|
+
{
|
|
2555
|
+
"internalType": "uint256",
|
|
2556
|
+
"name": "txId",
|
|
2557
|
+
"type": "uint256"
|
|
2558
|
+
}
|
|
2559
|
+
],
|
|
3608
2560
|
"stateMutability": "nonpayable",
|
|
3609
2561
|
"type": "function"
|
|
3610
2562
|
},
|
|
@@ -3784,105 +2736,9 @@
|
|
|
3784
2736
|
"name": "updateRecoveryRequestAndApprove",
|
|
3785
2737
|
"outputs": [
|
|
3786
2738
|
{
|
|
3787
|
-
"
|
|
3788
|
-
{
|
|
3789
|
-
"internalType": "uint256",
|
|
3790
|
-
"name": "txId",
|
|
3791
|
-
"type": "uint256"
|
|
3792
|
-
},
|
|
3793
|
-
{
|
|
3794
|
-
"internalType": "uint256",
|
|
3795
|
-
"name": "releaseTime",
|
|
3796
|
-
"type": "uint256"
|
|
3797
|
-
},
|
|
3798
|
-
{
|
|
3799
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3800
|
-
"name": "status",
|
|
3801
|
-
"type": "uint8"
|
|
3802
|
-
},
|
|
3803
|
-
{
|
|
3804
|
-
"components": [
|
|
3805
|
-
{
|
|
3806
|
-
"internalType": "address",
|
|
3807
|
-
"name": "requester",
|
|
3808
|
-
"type": "address"
|
|
3809
|
-
},
|
|
3810
|
-
{
|
|
3811
|
-
"internalType": "address",
|
|
3812
|
-
"name": "target",
|
|
3813
|
-
"type": "address"
|
|
3814
|
-
},
|
|
3815
|
-
{
|
|
3816
|
-
"internalType": "uint256",
|
|
3817
|
-
"name": "value",
|
|
3818
|
-
"type": "uint256"
|
|
3819
|
-
},
|
|
3820
|
-
{
|
|
3821
|
-
"internalType": "uint256",
|
|
3822
|
-
"name": "gasLimit",
|
|
3823
|
-
"type": "uint256"
|
|
3824
|
-
},
|
|
3825
|
-
{
|
|
3826
|
-
"internalType": "bytes32",
|
|
3827
|
-
"name": "operationType",
|
|
3828
|
-
"type": "bytes32"
|
|
3829
|
-
},
|
|
3830
|
-
{
|
|
3831
|
-
"internalType": "bytes4",
|
|
3832
|
-
"name": "executionSelector",
|
|
3833
|
-
"type": "bytes4"
|
|
3834
|
-
},
|
|
3835
|
-
{
|
|
3836
|
-
"internalType": "bytes",
|
|
3837
|
-
"name": "executionParams",
|
|
3838
|
-
"type": "bytes"
|
|
3839
|
-
}
|
|
3840
|
-
],
|
|
3841
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3842
|
-
"name": "params",
|
|
3843
|
-
"type": "tuple"
|
|
3844
|
-
},
|
|
3845
|
-
{
|
|
3846
|
-
"internalType": "bytes32",
|
|
3847
|
-
"name": "message",
|
|
3848
|
-
"type": "bytes32"
|
|
3849
|
-
},
|
|
3850
|
-
{
|
|
3851
|
-
"internalType": "bytes",
|
|
3852
|
-
"name": "result",
|
|
3853
|
-
"type": "bytes"
|
|
3854
|
-
},
|
|
3855
|
-
{
|
|
3856
|
-
"components": [
|
|
3857
|
-
{
|
|
3858
|
-
"internalType": "address",
|
|
3859
|
-
"name": "recipient",
|
|
3860
|
-
"type": "address"
|
|
3861
|
-
},
|
|
3862
|
-
{
|
|
3863
|
-
"internalType": "uint256",
|
|
3864
|
-
"name": "nativeTokenAmount",
|
|
3865
|
-
"type": "uint256"
|
|
3866
|
-
},
|
|
3867
|
-
{
|
|
3868
|
-
"internalType": "address",
|
|
3869
|
-
"name": "erc20TokenAddress",
|
|
3870
|
-
"type": "address"
|
|
3871
|
-
},
|
|
3872
|
-
{
|
|
3873
|
-
"internalType": "uint256",
|
|
3874
|
-
"name": "erc20TokenAmount",
|
|
3875
|
-
"type": "uint256"
|
|
3876
|
-
}
|
|
3877
|
-
],
|
|
3878
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3879
|
-
"name": "payment",
|
|
3880
|
-
"type": "tuple"
|
|
3881
|
-
}
|
|
3882
|
-
],
|
|
3883
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2739
|
+
"internalType": "uint256",
|
|
3884
2740
|
"name": "",
|
|
3885
|
-
"type": "
|
|
2741
|
+
"type": "uint256"
|
|
3886
2742
|
}
|
|
3887
2743
|
],
|
|
3888
2744
|
"stateMutability": "nonpayable",
|
|
@@ -4064,105 +2920,9 @@
|
|
|
4064
2920
|
"name": "updateTimeLockRequestAndApprove",
|
|
4065
2921
|
"outputs": [
|
|
4066
2922
|
{
|
|
4067
|
-
"
|
|
4068
|
-
{
|
|
4069
|
-
"internalType": "uint256",
|
|
4070
|
-
"name": "txId",
|
|
4071
|
-
"type": "uint256"
|
|
4072
|
-
},
|
|
4073
|
-
{
|
|
4074
|
-
"internalType": "uint256",
|
|
4075
|
-
"name": "releaseTime",
|
|
4076
|
-
"type": "uint256"
|
|
4077
|
-
},
|
|
4078
|
-
{
|
|
4079
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4080
|
-
"name": "status",
|
|
4081
|
-
"type": "uint8"
|
|
4082
|
-
},
|
|
4083
|
-
{
|
|
4084
|
-
"components": [
|
|
4085
|
-
{
|
|
4086
|
-
"internalType": "address",
|
|
4087
|
-
"name": "requester",
|
|
4088
|
-
"type": "address"
|
|
4089
|
-
},
|
|
4090
|
-
{
|
|
4091
|
-
"internalType": "address",
|
|
4092
|
-
"name": "target",
|
|
4093
|
-
"type": "address"
|
|
4094
|
-
},
|
|
4095
|
-
{
|
|
4096
|
-
"internalType": "uint256",
|
|
4097
|
-
"name": "value",
|
|
4098
|
-
"type": "uint256"
|
|
4099
|
-
},
|
|
4100
|
-
{
|
|
4101
|
-
"internalType": "uint256",
|
|
4102
|
-
"name": "gasLimit",
|
|
4103
|
-
"type": "uint256"
|
|
4104
|
-
},
|
|
4105
|
-
{
|
|
4106
|
-
"internalType": "bytes32",
|
|
4107
|
-
"name": "operationType",
|
|
4108
|
-
"type": "bytes32"
|
|
4109
|
-
},
|
|
4110
|
-
{
|
|
4111
|
-
"internalType": "bytes4",
|
|
4112
|
-
"name": "executionSelector",
|
|
4113
|
-
"type": "bytes4"
|
|
4114
|
-
},
|
|
4115
|
-
{
|
|
4116
|
-
"internalType": "bytes",
|
|
4117
|
-
"name": "executionParams",
|
|
4118
|
-
"type": "bytes"
|
|
4119
|
-
}
|
|
4120
|
-
],
|
|
4121
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4122
|
-
"name": "params",
|
|
4123
|
-
"type": "tuple"
|
|
4124
|
-
},
|
|
4125
|
-
{
|
|
4126
|
-
"internalType": "bytes32",
|
|
4127
|
-
"name": "message",
|
|
4128
|
-
"type": "bytes32"
|
|
4129
|
-
},
|
|
4130
|
-
{
|
|
4131
|
-
"internalType": "bytes",
|
|
4132
|
-
"name": "result",
|
|
4133
|
-
"type": "bytes"
|
|
4134
|
-
},
|
|
4135
|
-
{
|
|
4136
|
-
"components": [
|
|
4137
|
-
{
|
|
4138
|
-
"internalType": "address",
|
|
4139
|
-
"name": "recipient",
|
|
4140
|
-
"type": "address"
|
|
4141
|
-
},
|
|
4142
|
-
{
|
|
4143
|
-
"internalType": "uint256",
|
|
4144
|
-
"name": "nativeTokenAmount",
|
|
4145
|
-
"type": "uint256"
|
|
4146
|
-
},
|
|
4147
|
-
{
|
|
4148
|
-
"internalType": "address",
|
|
4149
|
-
"name": "erc20TokenAddress",
|
|
4150
|
-
"type": "address"
|
|
4151
|
-
},
|
|
4152
|
-
{
|
|
4153
|
-
"internalType": "uint256",
|
|
4154
|
-
"name": "erc20TokenAmount",
|
|
4155
|
-
"type": "uint256"
|
|
4156
|
-
}
|
|
4157
|
-
],
|
|
4158
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4159
|
-
"name": "payment",
|
|
4160
|
-
"type": "tuple"
|
|
4161
|
-
}
|
|
4162
|
-
],
|
|
4163
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2923
|
+
"internalType": "uint256",
|
|
4164
2924
|
"name": "",
|
|
4165
|
-
"type": "
|
|
2925
|
+
"type": "uint256"
|
|
4166
2926
|
}
|
|
4167
2927
|
],
|
|
4168
2928
|
"stateMutability": "nonpayable",
|