@bloxchain/sdk 1.0.0-alpha.3 → 1.0.0-alpha.5
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 +420 -2293
- package/abi/BareBlox.abi.json +19 -0
- package/abi/BaseStateMachine.abi.json +19 -0
- package/abi/EngineBlox.abi.json +0 -31
- package/abi/GuardController.abi.json +142 -724
- package/abi/RoleBlox.abi.json +393 -1639
- package/abi/RuntimeRBAC.abi.json +21 -98
- package/abi/SecureBlox.abi.json +276 -1426
- package/abi/SecureOwnable.abi.json +276 -1426
- package/abi/SimpleRWA20.abi.json +313 -1644
- package/abi/SimpleVault.abi.json +498 -2117
- package/dist/abi/BaseStateMachine.abi.json +19 -0
- package/dist/abi/GuardController.abi.json +142 -724
- package/dist/abi/RuntimeRBAC.abi.json +21 -98
- package/dist/abi/SecureOwnable.abi.json +276 -1426
- package/dist/contracts/SecureOwnable.d.ts +1 -1
- package/dist/contracts/SecureOwnable.d.ts.map +1 -1
- package/dist/contracts/SecureOwnable.js +2 -2
- package/dist/contracts/SecureOwnable.js.map +1 -1
- 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/interfaces/core.security.index.d.ts +1 -1
- package/dist/interfaces/core.security.index.d.ts.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/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/dist/types/core.security.index.d.ts.map +1 -1
- package/dist/types/core.security.index.js +2 -2
- package/dist/types/core.security.index.js.map +1 -1
- package/dist/utils/contract-errors.d.ts +0 -1
- package/dist/utils/contract-errors.d.ts.map +1 -1
- package/dist/utils/contract-errors.js +4 -4
- package/dist/utils/contract-errors.js.map +1 -1
- package/dist/utils/interface-ids.js +1 -1
- package/dist/utils/interface-ids.js.map +1 -1
- package/package.json +71 -71
package/abi/RoleBlox.abi.json
CHANGED
|
@@ -42,17 +42,6 @@
|
|
|
42
42
|
"name": "CannotModifyProtected",
|
|
43
43
|
"type": "error"
|
|
44
44
|
},
|
|
45
|
-
{
|
|
46
|
-
"inputs": [
|
|
47
|
-
{
|
|
48
|
-
"internalType": "address",
|
|
49
|
-
"name": "provided",
|
|
50
|
-
"type": "address"
|
|
51
|
-
}
|
|
52
|
-
],
|
|
53
|
-
"name": "InvalidAddress",
|
|
54
|
-
"type": "error"
|
|
55
|
-
},
|
|
56
45
|
{
|
|
57
46
|
"inputs": [],
|
|
58
47
|
"name": "InvalidInitialization",
|
|
@@ -101,22 +90,6 @@
|
|
|
101
90
|
"name": "NotInitializing",
|
|
102
91
|
"type": "error"
|
|
103
92
|
},
|
|
104
|
-
{
|
|
105
|
-
"inputs": [
|
|
106
|
-
{
|
|
107
|
-
"internalType": "address",
|
|
108
|
-
"name": "newAddress",
|
|
109
|
-
"type": "address"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"internalType": "address",
|
|
113
|
-
"name": "currentAddress",
|
|
114
|
-
"type": "address"
|
|
115
|
-
}
|
|
116
|
-
],
|
|
117
|
-
"name": "NotNewAddress",
|
|
118
|
-
"type": "error"
|
|
119
|
-
},
|
|
120
93
|
{
|
|
121
94
|
"inputs": [],
|
|
122
95
|
"name": "NotSupported",
|
|
@@ -352,6 +325,11 @@
|
|
|
352
325
|
"internalType": "address",
|
|
353
326
|
"name": "newBroadcaster",
|
|
354
327
|
"type": "address"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"internalType": "uint256",
|
|
331
|
+
"name": "location",
|
|
332
|
+
"type": "uint256"
|
|
355
333
|
}
|
|
356
334
|
],
|
|
357
335
|
"name": "executeBroadcasterUpdate",
|
|
@@ -1058,6 +1036,25 @@
|
|
|
1058
1036
|
"stateMutability": "view",
|
|
1059
1037
|
"type": "function"
|
|
1060
1038
|
},
|
|
1039
|
+
{
|
|
1040
|
+
"inputs": [
|
|
1041
|
+
{
|
|
1042
|
+
"internalType": "bytes4",
|
|
1043
|
+
"name": "functionSelector",
|
|
1044
|
+
"type": "bytes4"
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"name": "getHooks",
|
|
1048
|
+
"outputs": [
|
|
1049
|
+
{
|
|
1050
|
+
"internalType": "address[]",
|
|
1051
|
+
"name": "hooks",
|
|
1052
|
+
"type": "address[]"
|
|
1053
|
+
}
|
|
1054
|
+
],
|
|
1055
|
+
"stateMutability": "view",
|
|
1056
|
+
"type": "function"
|
|
1057
|
+
},
|
|
1061
1058
|
{
|
|
1062
1059
|
"inputs": [],
|
|
1063
1060
|
"name": "getPendingTransactions",
|
|
@@ -1717,105 +1714,9 @@
|
|
|
1717
1714
|
"name": "roleConfigBatchRequestAndApprove",
|
|
1718
1715
|
"outputs": [
|
|
1719
1716
|
{
|
|
1720
|
-
"
|
|
1721
|
-
{
|
|
1722
|
-
"internalType": "uint256",
|
|
1723
|
-
"name": "txId",
|
|
1724
|
-
"type": "uint256"
|
|
1725
|
-
},
|
|
1726
|
-
{
|
|
1727
|
-
"internalType": "uint256",
|
|
1728
|
-
"name": "releaseTime",
|
|
1729
|
-
"type": "uint256"
|
|
1730
|
-
},
|
|
1731
|
-
{
|
|
1732
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1733
|
-
"name": "status",
|
|
1734
|
-
"type": "uint8"
|
|
1735
|
-
},
|
|
1736
|
-
{
|
|
1737
|
-
"components": [
|
|
1738
|
-
{
|
|
1739
|
-
"internalType": "address",
|
|
1740
|
-
"name": "requester",
|
|
1741
|
-
"type": "address"
|
|
1742
|
-
},
|
|
1743
|
-
{
|
|
1744
|
-
"internalType": "address",
|
|
1745
|
-
"name": "target",
|
|
1746
|
-
"type": "address"
|
|
1747
|
-
},
|
|
1748
|
-
{
|
|
1749
|
-
"internalType": "uint256",
|
|
1750
|
-
"name": "value",
|
|
1751
|
-
"type": "uint256"
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
"internalType": "uint256",
|
|
1755
|
-
"name": "gasLimit",
|
|
1756
|
-
"type": "uint256"
|
|
1757
|
-
},
|
|
1758
|
-
{
|
|
1759
|
-
"internalType": "bytes32",
|
|
1760
|
-
"name": "operationType",
|
|
1761
|
-
"type": "bytes32"
|
|
1762
|
-
},
|
|
1763
|
-
{
|
|
1764
|
-
"internalType": "bytes4",
|
|
1765
|
-
"name": "executionSelector",
|
|
1766
|
-
"type": "bytes4"
|
|
1767
|
-
},
|
|
1768
|
-
{
|
|
1769
|
-
"internalType": "bytes",
|
|
1770
|
-
"name": "executionParams",
|
|
1771
|
-
"type": "bytes"
|
|
1772
|
-
}
|
|
1773
|
-
],
|
|
1774
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1775
|
-
"name": "params",
|
|
1776
|
-
"type": "tuple"
|
|
1777
|
-
},
|
|
1778
|
-
{
|
|
1779
|
-
"internalType": "bytes32",
|
|
1780
|
-
"name": "message",
|
|
1781
|
-
"type": "bytes32"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"internalType": "bytes",
|
|
1785
|
-
"name": "result",
|
|
1786
|
-
"type": "bytes"
|
|
1787
|
-
},
|
|
1788
|
-
{
|
|
1789
|
-
"components": [
|
|
1790
|
-
{
|
|
1791
|
-
"internalType": "address",
|
|
1792
|
-
"name": "recipient",
|
|
1793
|
-
"type": "address"
|
|
1794
|
-
},
|
|
1795
|
-
{
|
|
1796
|
-
"internalType": "uint256",
|
|
1797
|
-
"name": "nativeTokenAmount",
|
|
1798
|
-
"type": "uint256"
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
"internalType": "address",
|
|
1802
|
-
"name": "erc20TokenAddress",
|
|
1803
|
-
"type": "address"
|
|
1804
|
-
},
|
|
1805
|
-
{
|
|
1806
|
-
"internalType": "uint256",
|
|
1807
|
-
"name": "erc20TokenAmount",
|
|
1808
|
-
"type": "uint256"
|
|
1809
|
-
}
|
|
1810
|
-
],
|
|
1811
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1812
|
-
"name": "payment",
|
|
1813
|
-
"type": "tuple"
|
|
1814
|
-
}
|
|
1815
|
-
],
|
|
1816
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
1717
|
+
"internalType": "uint256",
|
|
1817
1718
|
"name": "",
|
|
1818
|
-
"type": "
|
|
1719
|
+
"type": "uint256"
|
|
1819
1720
|
}
|
|
1820
1721
|
],
|
|
1821
1722
|
"stateMutability": "nonpayable",
|
|
@@ -1997,105 +1898,9 @@
|
|
|
1997
1898
|
"name": "transferOwnershipApprovalWithMetaTx",
|
|
1998
1899
|
"outputs": [
|
|
1999
1900
|
{
|
|
2000
|
-
"
|
|
2001
|
-
{
|
|
2002
|
-
"internalType": "uint256",
|
|
2003
|
-
"name": "txId",
|
|
2004
|
-
"type": "uint256"
|
|
2005
|
-
},
|
|
2006
|
-
{
|
|
2007
|
-
"internalType": "uint256",
|
|
2008
|
-
"name": "releaseTime",
|
|
2009
|
-
"type": "uint256"
|
|
2010
|
-
},
|
|
2011
|
-
{
|
|
2012
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2013
|
-
"name": "status",
|
|
2014
|
-
"type": "uint8"
|
|
2015
|
-
},
|
|
2016
|
-
{
|
|
2017
|
-
"components": [
|
|
2018
|
-
{
|
|
2019
|
-
"internalType": "address",
|
|
2020
|
-
"name": "requester",
|
|
2021
|
-
"type": "address"
|
|
2022
|
-
},
|
|
2023
|
-
{
|
|
2024
|
-
"internalType": "address",
|
|
2025
|
-
"name": "target",
|
|
2026
|
-
"type": "address"
|
|
2027
|
-
},
|
|
2028
|
-
{
|
|
2029
|
-
"internalType": "uint256",
|
|
2030
|
-
"name": "value",
|
|
2031
|
-
"type": "uint256"
|
|
2032
|
-
},
|
|
2033
|
-
{
|
|
2034
|
-
"internalType": "uint256",
|
|
2035
|
-
"name": "gasLimit",
|
|
2036
|
-
"type": "uint256"
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"internalType": "bytes32",
|
|
2040
|
-
"name": "operationType",
|
|
2041
|
-
"type": "bytes32"
|
|
2042
|
-
},
|
|
2043
|
-
{
|
|
2044
|
-
"internalType": "bytes4",
|
|
2045
|
-
"name": "executionSelector",
|
|
2046
|
-
"type": "bytes4"
|
|
2047
|
-
},
|
|
2048
|
-
{
|
|
2049
|
-
"internalType": "bytes",
|
|
2050
|
-
"name": "executionParams",
|
|
2051
|
-
"type": "bytes"
|
|
2052
|
-
}
|
|
2053
|
-
],
|
|
2054
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2055
|
-
"name": "params",
|
|
2056
|
-
"type": "tuple"
|
|
2057
|
-
},
|
|
2058
|
-
{
|
|
2059
|
-
"internalType": "bytes32",
|
|
2060
|
-
"name": "message",
|
|
2061
|
-
"type": "bytes32"
|
|
2062
|
-
},
|
|
2063
|
-
{
|
|
2064
|
-
"internalType": "bytes",
|
|
2065
|
-
"name": "result",
|
|
2066
|
-
"type": "bytes"
|
|
2067
|
-
},
|
|
2068
|
-
{
|
|
2069
|
-
"components": [
|
|
2070
|
-
{
|
|
2071
|
-
"internalType": "address",
|
|
2072
|
-
"name": "recipient",
|
|
2073
|
-
"type": "address"
|
|
2074
|
-
},
|
|
2075
|
-
{
|
|
2076
|
-
"internalType": "uint256",
|
|
2077
|
-
"name": "nativeTokenAmount",
|
|
2078
|
-
"type": "uint256"
|
|
2079
|
-
},
|
|
2080
|
-
{
|
|
2081
|
-
"internalType": "address",
|
|
2082
|
-
"name": "erc20TokenAddress",
|
|
2083
|
-
"type": "address"
|
|
2084
|
-
},
|
|
2085
|
-
{
|
|
2086
|
-
"internalType": "uint256",
|
|
2087
|
-
"name": "erc20TokenAmount",
|
|
2088
|
-
"type": "uint256"
|
|
2089
|
-
}
|
|
2090
|
-
],
|
|
2091
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2092
|
-
"name": "payment",
|
|
2093
|
-
"type": "tuple"
|
|
2094
|
-
}
|
|
2095
|
-
],
|
|
2096
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
1901
|
+
"internalType": "uint256",
|
|
2097
1902
|
"name": "",
|
|
2098
|
-
"type": "
|
|
1903
|
+
"type": "uint256"
|
|
2099
1904
|
}
|
|
2100
1905
|
],
|
|
2101
1906
|
"stateMutability": "nonpayable",
|
|
@@ -2111,108 +1916,228 @@
|
|
|
2111
1916
|
],
|
|
2112
1917
|
"name": "transferOwnershipCancellation",
|
|
2113
1918
|
"outputs": [
|
|
1919
|
+
{
|
|
1920
|
+
"internalType": "uint256",
|
|
1921
|
+
"name": "",
|
|
1922
|
+
"type": "uint256"
|
|
1923
|
+
}
|
|
1924
|
+
],
|
|
1925
|
+
"stateMutability": "nonpayable",
|
|
1926
|
+
"type": "function"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"inputs": [
|
|
2114
1930
|
{
|
|
2115
1931
|
"components": [
|
|
2116
|
-
{
|
|
2117
|
-
"internalType": "uint256",
|
|
2118
|
-
"name": "txId",
|
|
2119
|
-
"type": "uint256"
|
|
2120
|
-
},
|
|
2121
|
-
{
|
|
2122
|
-
"internalType": "uint256",
|
|
2123
|
-
"name": "releaseTime",
|
|
2124
|
-
"type": "uint256"
|
|
2125
|
-
},
|
|
2126
|
-
{
|
|
2127
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2128
|
-
"name": "status",
|
|
2129
|
-
"type": "uint8"
|
|
2130
|
-
},
|
|
2131
1932
|
{
|
|
2132
1933
|
"components": [
|
|
2133
|
-
{
|
|
2134
|
-
"internalType": "address",
|
|
2135
|
-
"name": "requester",
|
|
2136
|
-
"type": "address"
|
|
2137
|
-
},
|
|
2138
|
-
{
|
|
2139
|
-
"internalType": "address",
|
|
2140
|
-
"name": "target",
|
|
2141
|
-
"type": "address"
|
|
2142
|
-
},
|
|
2143
1934
|
{
|
|
2144
1935
|
"internalType": "uint256",
|
|
2145
|
-
"name": "
|
|
1936
|
+
"name": "txId",
|
|
2146
1937
|
"type": "uint256"
|
|
2147
1938
|
},
|
|
2148
1939
|
{
|
|
2149
1940
|
"internalType": "uint256",
|
|
2150
|
-
"name": "
|
|
1941
|
+
"name": "releaseTime",
|
|
2151
1942
|
"type": "uint256"
|
|
2152
1943
|
},
|
|
2153
1944
|
{
|
|
2154
|
-
"internalType": "
|
|
2155
|
-
"name": "
|
|
2156
|
-
"type": "
|
|
1945
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
1946
|
+
"name": "status",
|
|
1947
|
+
"type": "uint8"
|
|
2157
1948
|
},
|
|
2158
1949
|
{
|
|
2159
|
-
"
|
|
2160
|
-
|
|
2161
|
-
|
|
1950
|
+
"components": [
|
|
1951
|
+
{
|
|
1952
|
+
"internalType": "address",
|
|
1953
|
+
"name": "requester",
|
|
1954
|
+
"type": "address"
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"internalType": "address",
|
|
1958
|
+
"name": "target",
|
|
1959
|
+
"type": "address"
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"internalType": "uint256",
|
|
1963
|
+
"name": "value",
|
|
1964
|
+
"type": "uint256"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"internalType": "uint256",
|
|
1968
|
+
"name": "gasLimit",
|
|
1969
|
+
"type": "uint256"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"internalType": "bytes32",
|
|
1973
|
+
"name": "operationType",
|
|
1974
|
+
"type": "bytes32"
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
"internalType": "bytes4",
|
|
1978
|
+
"name": "executionSelector",
|
|
1979
|
+
"type": "bytes4"
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"internalType": "bytes",
|
|
1983
|
+
"name": "executionParams",
|
|
1984
|
+
"type": "bytes"
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
1988
|
+
"name": "params",
|
|
1989
|
+
"type": "tuple"
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"internalType": "bytes32",
|
|
1993
|
+
"name": "message",
|
|
1994
|
+
"type": "bytes32"
|
|
2162
1995
|
},
|
|
2163
1996
|
{
|
|
2164
1997
|
"internalType": "bytes",
|
|
2165
|
-
"name": "
|
|
1998
|
+
"name": "result",
|
|
2166
1999
|
"type": "bytes"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"components": [
|
|
2003
|
+
{
|
|
2004
|
+
"internalType": "address",
|
|
2005
|
+
"name": "recipient",
|
|
2006
|
+
"type": "address"
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"internalType": "uint256",
|
|
2010
|
+
"name": "nativeTokenAmount",
|
|
2011
|
+
"type": "uint256"
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"internalType": "address",
|
|
2015
|
+
"name": "erc20TokenAddress",
|
|
2016
|
+
"type": "address"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"internalType": "uint256",
|
|
2020
|
+
"name": "erc20TokenAmount",
|
|
2021
|
+
"type": "uint256"
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
2024
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2025
|
+
"name": "payment",
|
|
2026
|
+
"type": "tuple"
|
|
2167
2027
|
}
|
|
2168
2028
|
],
|
|
2169
|
-
"internalType": "struct EngineBlox.
|
|
2170
|
-
"name": "
|
|
2029
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2030
|
+
"name": "txRecord",
|
|
2171
2031
|
"type": "tuple"
|
|
2172
2032
|
},
|
|
2173
|
-
{
|
|
2174
|
-
"internalType": "bytes32",
|
|
2175
|
-
"name": "message",
|
|
2176
|
-
"type": "bytes32"
|
|
2177
|
-
},
|
|
2178
|
-
{
|
|
2179
|
-
"internalType": "bytes",
|
|
2180
|
-
"name": "result",
|
|
2181
|
-
"type": "bytes"
|
|
2182
|
-
},
|
|
2183
2033
|
{
|
|
2184
2034
|
"components": [
|
|
2185
2035
|
{
|
|
2186
|
-
"internalType": "
|
|
2187
|
-
"name": "
|
|
2188
|
-
"type": "
|
|
2036
|
+
"internalType": "uint256",
|
|
2037
|
+
"name": "chainId",
|
|
2038
|
+
"type": "uint256"
|
|
2189
2039
|
},
|
|
2190
2040
|
{
|
|
2191
2041
|
"internalType": "uint256",
|
|
2192
|
-
"name": "
|
|
2042
|
+
"name": "nonce",
|
|
2193
2043
|
"type": "uint256"
|
|
2194
2044
|
},
|
|
2195
2045
|
{
|
|
2196
2046
|
"internalType": "address",
|
|
2197
|
-
"name": "
|
|
2047
|
+
"name": "handlerContract",
|
|
2198
2048
|
"type": "address"
|
|
2199
2049
|
},
|
|
2050
|
+
{
|
|
2051
|
+
"internalType": "bytes4",
|
|
2052
|
+
"name": "handlerSelector",
|
|
2053
|
+
"type": "bytes4"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2057
|
+
"name": "action",
|
|
2058
|
+
"type": "uint8"
|
|
2059
|
+
},
|
|
2200
2060
|
{
|
|
2201
2061
|
"internalType": "uint256",
|
|
2202
|
-
"name": "
|
|
2062
|
+
"name": "deadline",
|
|
2063
|
+
"type": "uint256"
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
"internalType": "uint256",
|
|
2067
|
+
"name": "maxGasPrice",
|
|
2203
2068
|
"type": "uint256"
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"internalType": "address",
|
|
2072
|
+
"name": "signer",
|
|
2073
|
+
"type": "address"
|
|
2204
2074
|
}
|
|
2205
2075
|
],
|
|
2206
|
-
"internalType": "struct EngineBlox.
|
|
2207
|
-
"name": "
|
|
2076
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2077
|
+
"name": "params",
|
|
2208
2078
|
"type": "tuple"
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"internalType": "bytes32",
|
|
2082
|
+
"name": "message",
|
|
2083
|
+
"type": "bytes32"
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"internalType": "bytes",
|
|
2087
|
+
"name": "signature",
|
|
2088
|
+
"type": "bytes"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"internalType": "bytes",
|
|
2092
|
+
"name": "data",
|
|
2093
|
+
"type": "bytes"
|
|
2209
2094
|
}
|
|
2210
2095
|
],
|
|
2211
|
-
"internalType": "struct EngineBlox.
|
|
2212
|
-
"name": "",
|
|
2096
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2097
|
+
"name": "metaTx",
|
|
2213
2098
|
"type": "tuple"
|
|
2214
2099
|
}
|
|
2215
2100
|
],
|
|
2101
|
+
"name": "transferOwnershipCancellationWithMetaTx",
|
|
2102
|
+
"outputs": [
|
|
2103
|
+
{
|
|
2104
|
+
"internalType": "uint256",
|
|
2105
|
+
"name": "",
|
|
2106
|
+
"type": "uint256"
|
|
2107
|
+
}
|
|
2108
|
+
],
|
|
2109
|
+
"stateMutability": "nonpayable",
|
|
2110
|
+
"type": "function"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"inputs": [
|
|
2114
|
+
{
|
|
2115
|
+
"internalType": "uint256",
|
|
2116
|
+
"name": "txId",
|
|
2117
|
+
"type": "uint256"
|
|
2118
|
+
}
|
|
2119
|
+
],
|
|
2120
|
+
"name": "transferOwnershipDelayedApproval",
|
|
2121
|
+
"outputs": [
|
|
2122
|
+
{
|
|
2123
|
+
"internalType": "uint256",
|
|
2124
|
+
"name": "",
|
|
2125
|
+
"type": "uint256"
|
|
2126
|
+
}
|
|
2127
|
+
],
|
|
2128
|
+
"stateMutability": "nonpayable",
|
|
2129
|
+
"type": "function"
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"inputs": [],
|
|
2133
|
+
"name": "transferOwnershipRequest",
|
|
2134
|
+
"outputs": [
|
|
2135
|
+
{
|
|
2136
|
+
"internalType": "uint256",
|
|
2137
|
+
"name": "txId",
|
|
2138
|
+
"type": "uint256"
|
|
2139
|
+
}
|
|
2140
|
+
],
|
|
2216
2141
|
"stateMutability": "nonpayable",
|
|
2217
2142
|
"type": "function"
|
|
2218
2143
|
},
|
|
@@ -2389,1193 +2314,185 @@
|
|
|
2389
2314
|
"type": "tuple"
|
|
2390
2315
|
}
|
|
2391
2316
|
],
|
|
2392
|
-
"name": "
|
|
2317
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2318
|
+
"outputs": [
|
|
2319
|
+
{
|
|
2320
|
+
"internalType": "uint256",
|
|
2321
|
+
"name": "",
|
|
2322
|
+
"type": "uint256"
|
|
2323
|
+
}
|
|
2324
|
+
],
|
|
2325
|
+
"stateMutability": "nonpayable",
|
|
2326
|
+
"type": "function"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"inputs": [
|
|
2330
|
+
{
|
|
2331
|
+
"internalType": "uint256",
|
|
2332
|
+
"name": "txId",
|
|
2333
|
+
"type": "uint256"
|
|
2334
|
+
}
|
|
2335
|
+
],
|
|
2336
|
+
"name": "updateBroadcasterCancellation",
|
|
2393
2337
|
"outputs": [
|
|
2338
|
+
{
|
|
2339
|
+
"internalType": "uint256",
|
|
2340
|
+
"name": "",
|
|
2341
|
+
"type": "uint256"
|
|
2342
|
+
}
|
|
2343
|
+
],
|
|
2344
|
+
"stateMutability": "nonpayable",
|
|
2345
|
+
"type": "function"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"inputs": [
|
|
2394
2349
|
{
|
|
2395
2350
|
"components": [
|
|
2396
|
-
{
|
|
2397
|
-
"internalType": "uint256",
|
|
2398
|
-
"name": "txId",
|
|
2399
|
-
"type": "uint256"
|
|
2400
|
-
},
|
|
2401
|
-
{
|
|
2402
|
-
"internalType": "uint256",
|
|
2403
|
-
"name": "releaseTime",
|
|
2404
|
-
"type": "uint256"
|
|
2405
|
-
},
|
|
2406
|
-
{
|
|
2407
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2408
|
-
"name": "status",
|
|
2409
|
-
"type": "uint8"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"components": [
|
|
2413
|
-
{
|
|
2414
|
-
"internalType": "address",
|
|
2415
|
-
"name": "requester",
|
|
2416
|
-
"type": "address"
|
|
2417
|
-
},
|
|
2418
|
-
{
|
|
2419
|
-
"internalType": "address",
|
|
2420
|
-
"name": "target",
|
|
2421
|
-
"type": "address"
|
|
2422
|
-
},
|
|
2423
|
-
{
|
|
2424
|
-
"internalType": "uint256",
|
|
2425
|
-
"name": "value",
|
|
2426
|
-
"type": "uint256"
|
|
2427
|
-
},
|
|
2428
|
-
{
|
|
2429
|
-
"internalType": "uint256",
|
|
2430
|
-
"name": "gasLimit",
|
|
2431
|
-
"type": "uint256"
|
|
2432
|
-
},
|
|
2433
|
-
{
|
|
2434
|
-
"internalType": "bytes32",
|
|
2435
|
-
"name": "operationType",
|
|
2436
|
-
"type": "bytes32"
|
|
2437
|
-
},
|
|
2438
|
-
{
|
|
2439
|
-
"internalType": "bytes4",
|
|
2440
|
-
"name": "executionSelector",
|
|
2441
|
-
"type": "bytes4"
|
|
2442
|
-
},
|
|
2443
|
-
{
|
|
2444
|
-
"internalType": "bytes",
|
|
2445
|
-
"name": "executionParams",
|
|
2446
|
-
"type": "bytes"
|
|
2447
|
-
}
|
|
2448
|
-
],
|
|
2449
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2450
|
-
"name": "params",
|
|
2451
|
-
"type": "tuple"
|
|
2452
|
-
},
|
|
2453
|
-
{
|
|
2454
|
-
"internalType": "bytes32",
|
|
2455
|
-
"name": "message",
|
|
2456
|
-
"type": "bytes32"
|
|
2457
|
-
},
|
|
2458
|
-
{
|
|
2459
|
-
"internalType": "bytes",
|
|
2460
|
-
"name": "result",
|
|
2461
|
-
"type": "bytes"
|
|
2462
|
-
},
|
|
2463
|
-
{
|
|
2464
|
-
"components": [
|
|
2465
|
-
{
|
|
2466
|
-
"internalType": "address",
|
|
2467
|
-
"name": "recipient",
|
|
2468
|
-
"type": "address"
|
|
2469
|
-
},
|
|
2470
|
-
{
|
|
2471
|
-
"internalType": "uint256",
|
|
2472
|
-
"name": "nativeTokenAmount",
|
|
2473
|
-
"type": "uint256"
|
|
2474
|
-
},
|
|
2475
|
-
{
|
|
2476
|
-
"internalType": "address",
|
|
2477
|
-
"name": "erc20TokenAddress",
|
|
2478
|
-
"type": "address"
|
|
2479
|
-
},
|
|
2480
|
-
{
|
|
2481
|
-
"internalType": "uint256",
|
|
2482
|
-
"name": "erc20TokenAmount",
|
|
2483
|
-
"type": "uint256"
|
|
2484
|
-
}
|
|
2485
|
-
],
|
|
2486
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2487
|
-
"name": "payment",
|
|
2488
|
-
"type": "tuple"
|
|
2489
|
-
}
|
|
2490
|
-
],
|
|
2491
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2492
|
-
"name": "",
|
|
2493
|
-
"type": "tuple"
|
|
2494
|
-
}
|
|
2495
|
-
],
|
|
2496
|
-
"stateMutability": "nonpayable",
|
|
2497
|
-
"type": "function"
|
|
2498
|
-
},
|
|
2499
|
-
{
|
|
2500
|
-
"inputs": [
|
|
2501
|
-
{
|
|
2502
|
-
"internalType": "uint256",
|
|
2503
|
-
"name": "txId",
|
|
2504
|
-
"type": "uint256"
|
|
2505
|
-
}
|
|
2506
|
-
],
|
|
2507
|
-
"name": "transferOwnershipDelayedApproval",
|
|
2508
|
-
"outputs": [
|
|
2509
|
-
{
|
|
2510
|
-
"components": [
|
|
2511
|
-
{
|
|
2512
|
-
"internalType": "uint256",
|
|
2513
|
-
"name": "txId",
|
|
2514
|
-
"type": "uint256"
|
|
2515
|
-
},
|
|
2516
|
-
{
|
|
2517
|
-
"internalType": "uint256",
|
|
2518
|
-
"name": "releaseTime",
|
|
2519
|
-
"type": "uint256"
|
|
2520
|
-
},
|
|
2521
|
-
{
|
|
2522
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2523
|
-
"name": "status",
|
|
2524
|
-
"type": "uint8"
|
|
2525
|
-
},
|
|
2526
|
-
{
|
|
2527
|
-
"components": [
|
|
2528
|
-
{
|
|
2529
|
-
"internalType": "address",
|
|
2530
|
-
"name": "requester",
|
|
2531
|
-
"type": "address"
|
|
2532
|
-
},
|
|
2533
|
-
{
|
|
2534
|
-
"internalType": "address",
|
|
2535
|
-
"name": "target",
|
|
2536
|
-
"type": "address"
|
|
2537
|
-
},
|
|
2538
|
-
{
|
|
2539
|
-
"internalType": "uint256",
|
|
2540
|
-
"name": "value",
|
|
2541
|
-
"type": "uint256"
|
|
2542
|
-
},
|
|
2543
|
-
{
|
|
2544
|
-
"internalType": "uint256",
|
|
2545
|
-
"name": "gasLimit",
|
|
2546
|
-
"type": "uint256"
|
|
2547
|
-
},
|
|
2548
|
-
{
|
|
2549
|
-
"internalType": "bytes32",
|
|
2550
|
-
"name": "operationType",
|
|
2551
|
-
"type": "bytes32"
|
|
2552
|
-
},
|
|
2553
|
-
{
|
|
2554
|
-
"internalType": "bytes4",
|
|
2555
|
-
"name": "executionSelector",
|
|
2556
|
-
"type": "bytes4"
|
|
2557
|
-
},
|
|
2558
|
-
{
|
|
2559
|
-
"internalType": "bytes",
|
|
2560
|
-
"name": "executionParams",
|
|
2561
|
-
"type": "bytes"
|
|
2562
|
-
}
|
|
2563
|
-
],
|
|
2564
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2565
|
-
"name": "params",
|
|
2566
|
-
"type": "tuple"
|
|
2567
|
-
},
|
|
2568
|
-
{
|
|
2569
|
-
"internalType": "bytes32",
|
|
2570
|
-
"name": "message",
|
|
2571
|
-
"type": "bytes32"
|
|
2572
|
-
},
|
|
2573
|
-
{
|
|
2574
|
-
"internalType": "bytes",
|
|
2575
|
-
"name": "result",
|
|
2576
|
-
"type": "bytes"
|
|
2577
|
-
},
|
|
2578
|
-
{
|
|
2579
|
-
"components": [
|
|
2580
|
-
{
|
|
2581
|
-
"internalType": "address",
|
|
2582
|
-
"name": "recipient",
|
|
2583
|
-
"type": "address"
|
|
2584
|
-
},
|
|
2585
|
-
{
|
|
2586
|
-
"internalType": "uint256",
|
|
2587
|
-
"name": "nativeTokenAmount",
|
|
2588
|
-
"type": "uint256"
|
|
2589
|
-
},
|
|
2590
|
-
{
|
|
2591
|
-
"internalType": "address",
|
|
2592
|
-
"name": "erc20TokenAddress",
|
|
2593
|
-
"type": "address"
|
|
2594
|
-
},
|
|
2595
|
-
{
|
|
2596
|
-
"internalType": "uint256",
|
|
2597
|
-
"name": "erc20TokenAmount",
|
|
2598
|
-
"type": "uint256"
|
|
2599
|
-
}
|
|
2600
|
-
],
|
|
2601
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2602
|
-
"name": "payment",
|
|
2603
|
-
"type": "tuple"
|
|
2604
|
-
}
|
|
2605
|
-
],
|
|
2606
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2607
|
-
"name": "",
|
|
2608
|
-
"type": "tuple"
|
|
2609
|
-
}
|
|
2610
|
-
],
|
|
2611
|
-
"stateMutability": "nonpayable",
|
|
2612
|
-
"type": "function"
|
|
2613
|
-
},
|
|
2614
|
-
{
|
|
2615
|
-
"inputs": [],
|
|
2616
|
-
"name": "transferOwnershipRequest",
|
|
2617
|
-
"outputs": [
|
|
2618
|
-
{
|
|
2619
|
-
"components": [
|
|
2620
|
-
{
|
|
2621
|
-
"internalType": "uint256",
|
|
2622
|
-
"name": "txId",
|
|
2623
|
-
"type": "uint256"
|
|
2624
|
-
},
|
|
2625
|
-
{
|
|
2626
|
-
"internalType": "uint256",
|
|
2627
|
-
"name": "releaseTime",
|
|
2628
|
-
"type": "uint256"
|
|
2629
|
-
},
|
|
2630
|
-
{
|
|
2631
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2632
|
-
"name": "status",
|
|
2633
|
-
"type": "uint8"
|
|
2634
|
-
},
|
|
2635
|
-
{
|
|
2636
|
-
"components": [
|
|
2637
|
-
{
|
|
2638
|
-
"internalType": "address",
|
|
2639
|
-
"name": "requester",
|
|
2640
|
-
"type": "address"
|
|
2641
|
-
},
|
|
2642
|
-
{
|
|
2643
|
-
"internalType": "address",
|
|
2644
|
-
"name": "target",
|
|
2645
|
-
"type": "address"
|
|
2646
|
-
},
|
|
2647
|
-
{
|
|
2648
|
-
"internalType": "uint256",
|
|
2649
|
-
"name": "value",
|
|
2650
|
-
"type": "uint256"
|
|
2651
|
-
},
|
|
2652
|
-
{
|
|
2653
|
-
"internalType": "uint256",
|
|
2654
|
-
"name": "gasLimit",
|
|
2655
|
-
"type": "uint256"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"internalType": "bytes32",
|
|
2659
|
-
"name": "operationType",
|
|
2660
|
-
"type": "bytes32"
|
|
2661
|
-
},
|
|
2662
|
-
{
|
|
2663
|
-
"internalType": "bytes4",
|
|
2664
|
-
"name": "executionSelector",
|
|
2665
|
-
"type": "bytes4"
|
|
2666
|
-
},
|
|
2667
|
-
{
|
|
2668
|
-
"internalType": "bytes",
|
|
2669
|
-
"name": "executionParams",
|
|
2670
|
-
"type": "bytes"
|
|
2671
|
-
}
|
|
2672
|
-
],
|
|
2673
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2674
|
-
"name": "params",
|
|
2675
|
-
"type": "tuple"
|
|
2676
|
-
},
|
|
2677
|
-
{
|
|
2678
|
-
"internalType": "bytes32",
|
|
2679
|
-
"name": "message",
|
|
2680
|
-
"type": "bytes32"
|
|
2681
|
-
},
|
|
2682
|
-
{
|
|
2683
|
-
"internalType": "bytes",
|
|
2684
|
-
"name": "result",
|
|
2685
|
-
"type": "bytes"
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"components": [
|
|
2689
|
-
{
|
|
2690
|
-
"internalType": "address",
|
|
2691
|
-
"name": "recipient",
|
|
2692
|
-
"type": "address"
|
|
2693
|
-
},
|
|
2694
|
-
{
|
|
2695
|
-
"internalType": "uint256",
|
|
2696
|
-
"name": "nativeTokenAmount",
|
|
2697
|
-
"type": "uint256"
|
|
2698
|
-
},
|
|
2699
|
-
{
|
|
2700
|
-
"internalType": "address",
|
|
2701
|
-
"name": "erc20TokenAddress",
|
|
2702
|
-
"type": "address"
|
|
2703
|
-
},
|
|
2704
|
-
{
|
|
2705
|
-
"internalType": "uint256",
|
|
2706
|
-
"name": "erc20TokenAmount",
|
|
2707
|
-
"type": "uint256"
|
|
2708
|
-
}
|
|
2709
|
-
],
|
|
2710
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2711
|
-
"name": "payment",
|
|
2712
|
-
"type": "tuple"
|
|
2713
|
-
}
|
|
2714
|
-
],
|
|
2715
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2716
|
-
"name": "",
|
|
2717
|
-
"type": "tuple"
|
|
2718
|
-
}
|
|
2719
|
-
],
|
|
2720
|
-
"stateMutability": "nonpayable",
|
|
2721
|
-
"type": "function"
|
|
2722
|
-
},
|
|
2723
|
-
{
|
|
2724
|
-
"inputs": [
|
|
2725
|
-
{
|
|
2726
|
-
"components": [
|
|
2727
|
-
{
|
|
2728
|
-
"components": [
|
|
2729
|
-
{
|
|
2730
|
-
"internalType": "uint256",
|
|
2731
|
-
"name": "txId",
|
|
2732
|
-
"type": "uint256"
|
|
2733
|
-
},
|
|
2734
|
-
{
|
|
2735
|
-
"internalType": "uint256",
|
|
2736
|
-
"name": "releaseTime",
|
|
2737
|
-
"type": "uint256"
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2741
|
-
"name": "status",
|
|
2742
|
-
"type": "uint8"
|
|
2743
|
-
},
|
|
2744
|
-
{
|
|
2745
|
-
"components": [
|
|
2746
|
-
{
|
|
2747
|
-
"internalType": "address",
|
|
2748
|
-
"name": "requester",
|
|
2749
|
-
"type": "address"
|
|
2750
|
-
},
|
|
2751
|
-
{
|
|
2752
|
-
"internalType": "address",
|
|
2753
|
-
"name": "target",
|
|
2754
|
-
"type": "address"
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"internalType": "uint256",
|
|
2758
|
-
"name": "value",
|
|
2759
|
-
"type": "uint256"
|
|
2760
|
-
},
|
|
2761
|
-
{
|
|
2762
|
-
"internalType": "uint256",
|
|
2763
|
-
"name": "gasLimit",
|
|
2764
|
-
"type": "uint256"
|
|
2765
|
-
},
|
|
2766
|
-
{
|
|
2767
|
-
"internalType": "bytes32",
|
|
2768
|
-
"name": "operationType",
|
|
2769
|
-
"type": "bytes32"
|
|
2770
|
-
},
|
|
2771
|
-
{
|
|
2772
|
-
"internalType": "bytes4",
|
|
2773
|
-
"name": "executionSelector",
|
|
2774
|
-
"type": "bytes4"
|
|
2775
|
-
},
|
|
2776
|
-
{
|
|
2777
|
-
"internalType": "bytes",
|
|
2778
|
-
"name": "executionParams",
|
|
2779
|
-
"type": "bytes"
|
|
2780
|
-
}
|
|
2781
|
-
],
|
|
2782
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2783
|
-
"name": "params",
|
|
2784
|
-
"type": "tuple"
|
|
2785
|
-
},
|
|
2786
|
-
{
|
|
2787
|
-
"internalType": "bytes32",
|
|
2788
|
-
"name": "message",
|
|
2789
|
-
"type": "bytes32"
|
|
2790
|
-
},
|
|
2791
|
-
{
|
|
2792
|
-
"internalType": "bytes",
|
|
2793
|
-
"name": "result",
|
|
2794
|
-
"type": "bytes"
|
|
2795
|
-
},
|
|
2796
|
-
{
|
|
2797
|
-
"components": [
|
|
2798
|
-
{
|
|
2799
|
-
"internalType": "address",
|
|
2800
|
-
"name": "recipient",
|
|
2801
|
-
"type": "address"
|
|
2802
|
-
},
|
|
2803
|
-
{
|
|
2804
|
-
"internalType": "uint256",
|
|
2805
|
-
"name": "nativeTokenAmount",
|
|
2806
|
-
"type": "uint256"
|
|
2807
|
-
},
|
|
2808
|
-
{
|
|
2809
|
-
"internalType": "address",
|
|
2810
|
-
"name": "erc20TokenAddress",
|
|
2811
|
-
"type": "address"
|
|
2812
|
-
},
|
|
2813
|
-
{
|
|
2814
|
-
"internalType": "uint256",
|
|
2815
|
-
"name": "erc20TokenAmount",
|
|
2816
|
-
"type": "uint256"
|
|
2817
|
-
}
|
|
2818
|
-
],
|
|
2819
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2820
|
-
"name": "payment",
|
|
2821
|
-
"type": "tuple"
|
|
2822
|
-
}
|
|
2823
|
-
],
|
|
2824
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2825
|
-
"name": "txRecord",
|
|
2826
|
-
"type": "tuple"
|
|
2827
|
-
},
|
|
2828
|
-
{
|
|
2829
|
-
"components": [
|
|
2830
|
-
{
|
|
2831
|
-
"internalType": "uint256",
|
|
2832
|
-
"name": "chainId",
|
|
2833
|
-
"type": "uint256"
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"internalType": "uint256",
|
|
2837
|
-
"name": "nonce",
|
|
2838
|
-
"type": "uint256"
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"internalType": "address",
|
|
2842
|
-
"name": "handlerContract",
|
|
2843
|
-
"type": "address"
|
|
2844
|
-
},
|
|
2845
|
-
{
|
|
2846
|
-
"internalType": "bytes4",
|
|
2847
|
-
"name": "handlerSelector",
|
|
2848
|
-
"type": "bytes4"
|
|
2849
|
-
},
|
|
2850
|
-
{
|
|
2851
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
2852
|
-
"name": "action",
|
|
2853
|
-
"type": "uint8"
|
|
2854
|
-
},
|
|
2855
|
-
{
|
|
2856
|
-
"internalType": "uint256",
|
|
2857
|
-
"name": "deadline",
|
|
2858
|
-
"type": "uint256"
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"internalType": "uint256",
|
|
2862
|
-
"name": "maxGasPrice",
|
|
2863
|
-
"type": "uint256"
|
|
2864
|
-
},
|
|
2865
|
-
{
|
|
2866
|
-
"internalType": "address",
|
|
2867
|
-
"name": "signer",
|
|
2868
|
-
"type": "address"
|
|
2869
|
-
}
|
|
2870
|
-
],
|
|
2871
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2872
|
-
"name": "params",
|
|
2873
|
-
"type": "tuple"
|
|
2874
|
-
},
|
|
2875
|
-
{
|
|
2876
|
-
"internalType": "bytes32",
|
|
2877
|
-
"name": "message",
|
|
2878
|
-
"type": "bytes32"
|
|
2879
|
-
},
|
|
2880
|
-
{
|
|
2881
|
-
"internalType": "bytes",
|
|
2882
|
-
"name": "signature",
|
|
2883
|
-
"type": "bytes"
|
|
2884
|
-
},
|
|
2885
|
-
{
|
|
2886
|
-
"internalType": "bytes",
|
|
2887
|
-
"name": "data",
|
|
2888
|
-
"type": "bytes"
|
|
2889
|
-
}
|
|
2890
|
-
],
|
|
2891
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2892
|
-
"name": "metaTx",
|
|
2893
|
-
"type": "tuple"
|
|
2894
|
-
}
|
|
2895
|
-
],
|
|
2896
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2897
|
-
"outputs": [
|
|
2898
|
-
{
|
|
2899
|
-
"components": [
|
|
2900
|
-
{
|
|
2901
|
-
"internalType": "uint256",
|
|
2902
|
-
"name": "txId",
|
|
2903
|
-
"type": "uint256"
|
|
2904
|
-
},
|
|
2905
|
-
{
|
|
2906
|
-
"internalType": "uint256",
|
|
2907
|
-
"name": "releaseTime",
|
|
2908
|
-
"type": "uint256"
|
|
2909
|
-
},
|
|
2910
|
-
{
|
|
2911
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2912
|
-
"name": "status",
|
|
2913
|
-
"type": "uint8"
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"components": [
|
|
2917
|
-
{
|
|
2918
|
-
"internalType": "address",
|
|
2919
|
-
"name": "requester",
|
|
2920
|
-
"type": "address"
|
|
2921
|
-
},
|
|
2922
|
-
{
|
|
2923
|
-
"internalType": "address",
|
|
2924
|
-
"name": "target",
|
|
2925
|
-
"type": "address"
|
|
2926
|
-
},
|
|
2927
|
-
{
|
|
2928
|
-
"internalType": "uint256",
|
|
2929
|
-
"name": "value",
|
|
2930
|
-
"type": "uint256"
|
|
2931
|
-
},
|
|
2932
|
-
{
|
|
2933
|
-
"internalType": "uint256",
|
|
2934
|
-
"name": "gasLimit",
|
|
2935
|
-
"type": "uint256"
|
|
2936
|
-
},
|
|
2937
|
-
{
|
|
2938
|
-
"internalType": "bytes32",
|
|
2939
|
-
"name": "operationType",
|
|
2940
|
-
"type": "bytes32"
|
|
2941
|
-
},
|
|
2942
|
-
{
|
|
2943
|
-
"internalType": "bytes4",
|
|
2944
|
-
"name": "executionSelector",
|
|
2945
|
-
"type": "bytes4"
|
|
2946
|
-
},
|
|
2947
|
-
{
|
|
2948
|
-
"internalType": "bytes",
|
|
2949
|
-
"name": "executionParams",
|
|
2950
|
-
"type": "bytes"
|
|
2951
|
-
}
|
|
2952
|
-
],
|
|
2953
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2954
|
-
"name": "params",
|
|
2955
|
-
"type": "tuple"
|
|
2956
|
-
},
|
|
2957
|
-
{
|
|
2958
|
-
"internalType": "bytes32",
|
|
2959
|
-
"name": "message",
|
|
2960
|
-
"type": "bytes32"
|
|
2961
|
-
},
|
|
2962
|
-
{
|
|
2963
|
-
"internalType": "bytes",
|
|
2964
|
-
"name": "result",
|
|
2965
|
-
"type": "bytes"
|
|
2966
|
-
},
|
|
2967
|
-
{
|
|
2968
|
-
"components": [
|
|
2969
|
-
{
|
|
2970
|
-
"internalType": "address",
|
|
2971
|
-
"name": "recipient",
|
|
2972
|
-
"type": "address"
|
|
2973
|
-
},
|
|
2974
|
-
{
|
|
2975
|
-
"internalType": "uint256",
|
|
2976
|
-
"name": "nativeTokenAmount",
|
|
2977
|
-
"type": "uint256"
|
|
2978
|
-
},
|
|
2979
|
-
{
|
|
2980
|
-
"internalType": "address",
|
|
2981
|
-
"name": "erc20TokenAddress",
|
|
2982
|
-
"type": "address"
|
|
2983
|
-
},
|
|
2984
|
-
{
|
|
2985
|
-
"internalType": "uint256",
|
|
2986
|
-
"name": "erc20TokenAmount",
|
|
2987
|
-
"type": "uint256"
|
|
2988
|
-
}
|
|
2989
|
-
],
|
|
2990
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2991
|
-
"name": "payment",
|
|
2992
|
-
"type": "tuple"
|
|
2993
|
-
}
|
|
2994
|
-
],
|
|
2995
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2996
|
-
"name": "",
|
|
2997
|
-
"type": "tuple"
|
|
2998
|
-
}
|
|
2999
|
-
],
|
|
3000
|
-
"stateMutability": "nonpayable",
|
|
3001
|
-
"type": "function"
|
|
3002
|
-
},
|
|
3003
|
-
{
|
|
3004
|
-
"inputs": [
|
|
3005
|
-
{
|
|
3006
|
-
"internalType": "uint256",
|
|
3007
|
-
"name": "txId",
|
|
3008
|
-
"type": "uint256"
|
|
3009
|
-
}
|
|
3010
|
-
],
|
|
3011
|
-
"name": "updateBroadcasterCancellation",
|
|
3012
|
-
"outputs": [
|
|
3013
|
-
{
|
|
3014
|
-
"components": [
|
|
3015
|
-
{
|
|
3016
|
-
"internalType": "uint256",
|
|
3017
|
-
"name": "txId",
|
|
3018
|
-
"type": "uint256"
|
|
3019
|
-
},
|
|
3020
|
-
{
|
|
3021
|
-
"internalType": "uint256",
|
|
3022
|
-
"name": "releaseTime",
|
|
3023
|
-
"type": "uint256"
|
|
3024
|
-
},
|
|
3025
|
-
{
|
|
3026
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3027
|
-
"name": "status",
|
|
3028
|
-
"type": "uint8"
|
|
3029
|
-
},
|
|
3030
|
-
{
|
|
3031
|
-
"components": [
|
|
3032
|
-
{
|
|
3033
|
-
"internalType": "address",
|
|
3034
|
-
"name": "requester",
|
|
3035
|
-
"type": "address"
|
|
3036
|
-
},
|
|
3037
|
-
{
|
|
3038
|
-
"internalType": "address",
|
|
3039
|
-
"name": "target",
|
|
3040
|
-
"type": "address"
|
|
3041
|
-
},
|
|
3042
|
-
{
|
|
3043
|
-
"internalType": "uint256",
|
|
3044
|
-
"name": "value",
|
|
3045
|
-
"type": "uint256"
|
|
3046
|
-
},
|
|
3047
|
-
{
|
|
3048
|
-
"internalType": "uint256",
|
|
3049
|
-
"name": "gasLimit",
|
|
3050
|
-
"type": "uint256"
|
|
3051
|
-
},
|
|
3052
|
-
{
|
|
3053
|
-
"internalType": "bytes32",
|
|
3054
|
-
"name": "operationType",
|
|
3055
|
-
"type": "bytes32"
|
|
3056
|
-
},
|
|
3057
|
-
{
|
|
3058
|
-
"internalType": "bytes4",
|
|
3059
|
-
"name": "executionSelector",
|
|
3060
|
-
"type": "bytes4"
|
|
3061
|
-
},
|
|
3062
|
-
{
|
|
3063
|
-
"internalType": "bytes",
|
|
3064
|
-
"name": "executionParams",
|
|
3065
|
-
"type": "bytes"
|
|
3066
|
-
}
|
|
3067
|
-
],
|
|
3068
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3069
|
-
"name": "params",
|
|
3070
|
-
"type": "tuple"
|
|
3071
|
-
},
|
|
3072
|
-
{
|
|
3073
|
-
"internalType": "bytes32",
|
|
3074
|
-
"name": "message",
|
|
3075
|
-
"type": "bytes32"
|
|
3076
|
-
},
|
|
3077
|
-
{
|
|
3078
|
-
"internalType": "bytes",
|
|
3079
|
-
"name": "result",
|
|
3080
|
-
"type": "bytes"
|
|
3081
|
-
},
|
|
3082
|
-
{
|
|
3083
|
-
"components": [
|
|
3084
|
-
{
|
|
3085
|
-
"internalType": "address",
|
|
3086
|
-
"name": "recipient",
|
|
3087
|
-
"type": "address"
|
|
3088
|
-
},
|
|
3089
|
-
{
|
|
3090
|
-
"internalType": "uint256",
|
|
3091
|
-
"name": "nativeTokenAmount",
|
|
3092
|
-
"type": "uint256"
|
|
3093
|
-
},
|
|
3094
|
-
{
|
|
3095
|
-
"internalType": "address",
|
|
3096
|
-
"name": "erc20TokenAddress",
|
|
3097
|
-
"type": "address"
|
|
3098
|
-
},
|
|
3099
|
-
{
|
|
3100
|
-
"internalType": "uint256",
|
|
3101
|
-
"name": "erc20TokenAmount",
|
|
3102
|
-
"type": "uint256"
|
|
3103
|
-
}
|
|
3104
|
-
],
|
|
3105
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3106
|
-
"name": "payment",
|
|
3107
|
-
"type": "tuple"
|
|
3108
|
-
}
|
|
3109
|
-
],
|
|
3110
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3111
|
-
"name": "",
|
|
3112
|
-
"type": "tuple"
|
|
3113
|
-
}
|
|
3114
|
-
],
|
|
3115
|
-
"stateMutability": "nonpayable",
|
|
3116
|
-
"type": "function"
|
|
3117
|
-
},
|
|
3118
|
-
{
|
|
3119
|
-
"inputs": [
|
|
3120
|
-
{
|
|
3121
|
-
"components": [
|
|
3122
|
-
{
|
|
3123
|
-
"components": [
|
|
3124
|
-
{
|
|
3125
|
-
"internalType": "uint256",
|
|
3126
|
-
"name": "txId",
|
|
3127
|
-
"type": "uint256"
|
|
3128
|
-
},
|
|
3129
|
-
{
|
|
3130
|
-
"internalType": "uint256",
|
|
3131
|
-
"name": "releaseTime",
|
|
3132
|
-
"type": "uint256"
|
|
3133
|
-
},
|
|
3134
|
-
{
|
|
3135
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3136
|
-
"name": "status",
|
|
3137
|
-
"type": "uint8"
|
|
3138
|
-
},
|
|
3139
|
-
{
|
|
3140
|
-
"components": [
|
|
3141
|
-
{
|
|
3142
|
-
"internalType": "address",
|
|
3143
|
-
"name": "requester",
|
|
3144
|
-
"type": "address"
|
|
3145
|
-
},
|
|
3146
|
-
{
|
|
3147
|
-
"internalType": "address",
|
|
3148
|
-
"name": "target",
|
|
3149
|
-
"type": "address"
|
|
3150
|
-
},
|
|
3151
|
-
{
|
|
3152
|
-
"internalType": "uint256",
|
|
3153
|
-
"name": "value",
|
|
3154
|
-
"type": "uint256"
|
|
3155
|
-
},
|
|
3156
|
-
{
|
|
3157
|
-
"internalType": "uint256",
|
|
3158
|
-
"name": "gasLimit",
|
|
3159
|
-
"type": "uint256"
|
|
3160
|
-
},
|
|
3161
|
-
{
|
|
3162
|
-
"internalType": "bytes32",
|
|
3163
|
-
"name": "operationType",
|
|
3164
|
-
"type": "bytes32"
|
|
3165
|
-
},
|
|
3166
|
-
{
|
|
3167
|
-
"internalType": "bytes4",
|
|
3168
|
-
"name": "executionSelector",
|
|
3169
|
-
"type": "bytes4"
|
|
3170
|
-
},
|
|
3171
|
-
{
|
|
3172
|
-
"internalType": "bytes",
|
|
3173
|
-
"name": "executionParams",
|
|
3174
|
-
"type": "bytes"
|
|
3175
|
-
}
|
|
3176
|
-
],
|
|
3177
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3178
|
-
"name": "params",
|
|
3179
|
-
"type": "tuple"
|
|
3180
|
-
},
|
|
3181
|
-
{
|
|
3182
|
-
"internalType": "bytes32",
|
|
3183
|
-
"name": "message",
|
|
3184
|
-
"type": "bytes32"
|
|
3185
|
-
},
|
|
3186
|
-
{
|
|
3187
|
-
"internalType": "bytes",
|
|
3188
|
-
"name": "result",
|
|
3189
|
-
"type": "bytes"
|
|
3190
|
-
},
|
|
3191
|
-
{
|
|
3192
|
-
"components": [
|
|
3193
|
-
{
|
|
3194
|
-
"internalType": "address",
|
|
3195
|
-
"name": "recipient",
|
|
3196
|
-
"type": "address"
|
|
3197
|
-
},
|
|
3198
|
-
{
|
|
3199
|
-
"internalType": "uint256",
|
|
3200
|
-
"name": "nativeTokenAmount",
|
|
3201
|
-
"type": "uint256"
|
|
3202
|
-
},
|
|
3203
|
-
{
|
|
3204
|
-
"internalType": "address",
|
|
3205
|
-
"name": "erc20TokenAddress",
|
|
3206
|
-
"type": "address"
|
|
3207
|
-
},
|
|
3208
|
-
{
|
|
3209
|
-
"internalType": "uint256",
|
|
3210
|
-
"name": "erc20TokenAmount",
|
|
3211
|
-
"type": "uint256"
|
|
3212
|
-
}
|
|
3213
|
-
],
|
|
3214
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3215
|
-
"name": "payment",
|
|
3216
|
-
"type": "tuple"
|
|
3217
|
-
}
|
|
3218
|
-
],
|
|
3219
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3220
|
-
"name": "txRecord",
|
|
3221
|
-
"type": "tuple"
|
|
3222
|
-
},
|
|
3223
|
-
{
|
|
3224
|
-
"components": [
|
|
3225
|
-
{
|
|
3226
|
-
"internalType": "uint256",
|
|
3227
|
-
"name": "chainId",
|
|
3228
|
-
"type": "uint256"
|
|
3229
|
-
},
|
|
3230
|
-
{
|
|
3231
|
-
"internalType": "uint256",
|
|
3232
|
-
"name": "nonce",
|
|
3233
|
-
"type": "uint256"
|
|
3234
|
-
},
|
|
3235
|
-
{
|
|
3236
|
-
"internalType": "address",
|
|
3237
|
-
"name": "handlerContract",
|
|
3238
|
-
"type": "address"
|
|
3239
|
-
},
|
|
3240
|
-
{
|
|
3241
|
-
"internalType": "bytes4",
|
|
3242
|
-
"name": "handlerSelector",
|
|
3243
|
-
"type": "bytes4"
|
|
3244
|
-
},
|
|
3245
|
-
{
|
|
3246
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
3247
|
-
"name": "action",
|
|
3248
|
-
"type": "uint8"
|
|
3249
|
-
},
|
|
3250
|
-
{
|
|
3251
|
-
"internalType": "uint256",
|
|
3252
|
-
"name": "deadline",
|
|
3253
|
-
"type": "uint256"
|
|
3254
|
-
},
|
|
3255
|
-
{
|
|
3256
|
-
"internalType": "uint256",
|
|
3257
|
-
"name": "maxGasPrice",
|
|
3258
|
-
"type": "uint256"
|
|
3259
|
-
},
|
|
3260
|
-
{
|
|
3261
|
-
"internalType": "address",
|
|
3262
|
-
"name": "signer",
|
|
3263
|
-
"type": "address"
|
|
3264
|
-
}
|
|
3265
|
-
],
|
|
3266
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3267
|
-
"name": "params",
|
|
3268
|
-
"type": "tuple"
|
|
3269
|
-
},
|
|
3270
|
-
{
|
|
3271
|
-
"internalType": "bytes32",
|
|
3272
|
-
"name": "message",
|
|
3273
|
-
"type": "bytes32"
|
|
3274
|
-
},
|
|
3275
|
-
{
|
|
3276
|
-
"internalType": "bytes",
|
|
3277
|
-
"name": "signature",
|
|
3278
|
-
"type": "bytes"
|
|
3279
|
-
},
|
|
3280
|
-
{
|
|
3281
|
-
"internalType": "bytes",
|
|
3282
|
-
"name": "data",
|
|
3283
|
-
"type": "bytes"
|
|
3284
|
-
}
|
|
3285
|
-
],
|
|
3286
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3287
|
-
"name": "metaTx",
|
|
3288
|
-
"type": "tuple"
|
|
3289
|
-
}
|
|
3290
|
-
],
|
|
3291
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3292
|
-
"outputs": [
|
|
3293
|
-
{
|
|
3294
|
-
"components": [
|
|
3295
|
-
{
|
|
3296
|
-
"internalType": "uint256",
|
|
3297
|
-
"name": "txId",
|
|
3298
|
-
"type": "uint256"
|
|
3299
|
-
},
|
|
3300
|
-
{
|
|
3301
|
-
"internalType": "uint256",
|
|
3302
|
-
"name": "releaseTime",
|
|
3303
|
-
"type": "uint256"
|
|
3304
|
-
},
|
|
3305
|
-
{
|
|
3306
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3307
|
-
"name": "status",
|
|
3308
|
-
"type": "uint8"
|
|
3309
|
-
},
|
|
3310
|
-
{
|
|
3311
|
-
"components": [
|
|
3312
|
-
{
|
|
3313
|
-
"internalType": "address",
|
|
3314
|
-
"name": "requester",
|
|
3315
|
-
"type": "address"
|
|
3316
|
-
},
|
|
3317
|
-
{
|
|
3318
|
-
"internalType": "address",
|
|
3319
|
-
"name": "target",
|
|
3320
|
-
"type": "address"
|
|
3321
|
-
},
|
|
3322
|
-
{
|
|
3323
|
-
"internalType": "uint256",
|
|
3324
|
-
"name": "value",
|
|
3325
|
-
"type": "uint256"
|
|
3326
|
-
},
|
|
3327
|
-
{
|
|
3328
|
-
"internalType": "uint256",
|
|
3329
|
-
"name": "gasLimit",
|
|
3330
|
-
"type": "uint256"
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"internalType": "bytes32",
|
|
3334
|
-
"name": "operationType",
|
|
3335
|
-
"type": "bytes32"
|
|
3336
|
-
},
|
|
3337
|
-
{
|
|
3338
|
-
"internalType": "bytes4",
|
|
3339
|
-
"name": "executionSelector",
|
|
3340
|
-
"type": "bytes4"
|
|
3341
|
-
},
|
|
3342
|
-
{
|
|
3343
|
-
"internalType": "bytes",
|
|
3344
|
-
"name": "executionParams",
|
|
3345
|
-
"type": "bytes"
|
|
3346
|
-
}
|
|
3347
|
-
],
|
|
3348
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3349
|
-
"name": "params",
|
|
3350
|
-
"type": "tuple"
|
|
3351
|
-
},
|
|
3352
|
-
{
|
|
3353
|
-
"internalType": "bytes32",
|
|
3354
|
-
"name": "message",
|
|
3355
|
-
"type": "bytes32"
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
"internalType": "bytes",
|
|
3359
|
-
"name": "result",
|
|
3360
|
-
"type": "bytes"
|
|
3361
|
-
},
|
|
3362
|
-
{
|
|
3363
|
-
"components": [
|
|
3364
|
-
{
|
|
3365
|
-
"internalType": "address",
|
|
3366
|
-
"name": "recipient",
|
|
3367
|
-
"type": "address"
|
|
3368
|
-
},
|
|
3369
|
-
{
|
|
3370
|
-
"internalType": "uint256",
|
|
3371
|
-
"name": "nativeTokenAmount",
|
|
3372
|
-
"type": "uint256"
|
|
3373
|
-
},
|
|
3374
|
-
{
|
|
3375
|
-
"internalType": "address",
|
|
3376
|
-
"name": "erc20TokenAddress",
|
|
3377
|
-
"type": "address"
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
"internalType": "uint256",
|
|
3381
|
-
"name": "erc20TokenAmount",
|
|
3382
|
-
"type": "uint256"
|
|
3383
|
-
}
|
|
3384
|
-
],
|
|
3385
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3386
|
-
"name": "payment",
|
|
3387
|
-
"type": "tuple"
|
|
3388
|
-
}
|
|
3389
|
-
],
|
|
3390
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3391
|
-
"name": "",
|
|
3392
|
-
"type": "tuple"
|
|
3393
|
-
}
|
|
3394
|
-
],
|
|
3395
|
-
"stateMutability": "nonpayable",
|
|
3396
|
-
"type": "function"
|
|
3397
|
-
},
|
|
3398
|
-
{
|
|
3399
|
-
"inputs": [
|
|
3400
|
-
{
|
|
3401
|
-
"internalType": "uint256",
|
|
3402
|
-
"name": "txId",
|
|
3403
|
-
"type": "uint256"
|
|
3404
|
-
}
|
|
3405
|
-
],
|
|
3406
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
3407
|
-
"outputs": [
|
|
3408
|
-
{
|
|
3409
|
-
"components": [
|
|
3410
|
-
{
|
|
3411
|
-
"internalType": "uint256",
|
|
3412
|
-
"name": "txId",
|
|
3413
|
-
"type": "uint256"
|
|
3414
|
-
},
|
|
3415
|
-
{
|
|
3416
|
-
"internalType": "uint256",
|
|
3417
|
-
"name": "releaseTime",
|
|
3418
|
-
"type": "uint256"
|
|
3419
|
-
},
|
|
3420
|
-
{
|
|
3421
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3422
|
-
"name": "status",
|
|
3423
|
-
"type": "uint8"
|
|
3424
|
-
},
|
|
3425
2351
|
{
|
|
3426
2352
|
"components": [
|
|
3427
|
-
{
|
|
3428
|
-
"internalType": "address",
|
|
3429
|
-
"name": "requester",
|
|
3430
|
-
"type": "address"
|
|
3431
|
-
},
|
|
3432
|
-
{
|
|
3433
|
-
"internalType": "address",
|
|
3434
|
-
"name": "target",
|
|
3435
|
-
"type": "address"
|
|
3436
|
-
},
|
|
3437
2353
|
{
|
|
3438
2354
|
"internalType": "uint256",
|
|
3439
|
-
"name": "
|
|
2355
|
+
"name": "txId",
|
|
3440
2356
|
"type": "uint256"
|
|
3441
2357
|
},
|
|
3442
2358
|
{
|
|
3443
2359
|
"internalType": "uint256",
|
|
3444
|
-
"name": "
|
|
2360
|
+
"name": "releaseTime",
|
|
3445
2361
|
"type": "uint256"
|
|
3446
2362
|
},
|
|
3447
2363
|
{
|
|
3448
|
-
"internalType": "
|
|
3449
|
-
"name": "
|
|
3450
|
-
"type": "
|
|
2364
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2365
|
+
"name": "status",
|
|
2366
|
+
"type": "uint8"
|
|
3451
2367
|
},
|
|
3452
2368
|
{
|
|
3453
|
-
"
|
|
3454
|
-
|
|
3455
|
-
|
|
2369
|
+
"components": [
|
|
2370
|
+
{
|
|
2371
|
+
"internalType": "address",
|
|
2372
|
+
"name": "requester",
|
|
2373
|
+
"type": "address"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"internalType": "address",
|
|
2377
|
+
"name": "target",
|
|
2378
|
+
"type": "address"
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
"internalType": "uint256",
|
|
2382
|
+
"name": "value",
|
|
2383
|
+
"type": "uint256"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"internalType": "uint256",
|
|
2387
|
+
"name": "gasLimit",
|
|
2388
|
+
"type": "uint256"
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"internalType": "bytes32",
|
|
2392
|
+
"name": "operationType",
|
|
2393
|
+
"type": "bytes32"
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"internalType": "bytes4",
|
|
2397
|
+
"name": "executionSelector",
|
|
2398
|
+
"type": "bytes4"
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"internalType": "bytes",
|
|
2402
|
+
"name": "executionParams",
|
|
2403
|
+
"type": "bytes"
|
|
2404
|
+
}
|
|
2405
|
+
],
|
|
2406
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2407
|
+
"name": "params",
|
|
2408
|
+
"type": "tuple"
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
"internalType": "bytes32",
|
|
2412
|
+
"name": "message",
|
|
2413
|
+
"type": "bytes32"
|
|
3456
2414
|
},
|
|
3457
2415
|
{
|
|
3458
2416
|
"internalType": "bytes",
|
|
3459
|
-
"name": "
|
|
2417
|
+
"name": "result",
|
|
3460
2418
|
"type": "bytes"
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"components": [
|
|
2422
|
+
{
|
|
2423
|
+
"internalType": "address",
|
|
2424
|
+
"name": "recipient",
|
|
2425
|
+
"type": "address"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"internalType": "uint256",
|
|
2429
|
+
"name": "nativeTokenAmount",
|
|
2430
|
+
"type": "uint256"
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"internalType": "address",
|
|
2434
|
+
"name": "erc20TokenAddress",
|
|
2435
|
+
"type": "address"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"internalType": "uint256",
|
|
2439
|
+
"name": "erc20TokenAmount",
|
|
2440
|
+
"type": "uint256"
|
|
2441
|
+
}
|
|
2442
|
+
],
|
|
2443
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2444
|
+
"name": "payment",
|
|
2445
|
+
"type": "tuple"
|
|
3461
2446
|
}
|
|
3462
2447
|
],
|
|
3463
|
-
"internalType": "struct EngineBlox.
|
|
3464
|
-
"name": "
|
|
2448
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2449
|
+
"name": "txRecord",
|
|
3465
2450
|
"type": "tuple"
|
|
3466
2451
|
},
|
|
3467
|
-
{
|
|
3468
|
-
"internalType": "bytes32",
|
|
3469
|
-
"name": "message",
|
|
3470
|
-
"type": "bytes32"
|
|
3471
|
-
},
|
|
3472
|
-
{
|
|
3473
|
-
"internalType": "bytes",
|
|
3474
|
-
"name": "result",
|
|
3475
|
-
"type": "bytes"
|
|
3476
|
-
},
|
|
3477
2452
|
{
|
|
3478
2453
|
"components": [
|
|
3479
2454
|
{
|
|
3480
|
-
"internalType": "
|
|
3481
|
-
"name": "
|
|
3482
|
-
"type": "
|
|
2455
|
+
"internalType": "uint256",
|
|
2456
|
+
"name": "chainId",
|
|
2457
|
+
"type": "uint256"
|
|
3483
2458
|
},
|
|
3484
2459
|
{
|
|
3485
2460
|
"internalType": "uint256",
|
|
3486
|
-
"name": "
|
|
2461
|
+
"name": "nonce",
|
|
3487
2462
|
"type": "uint256"
|
|
3488
2463
|
},
|
|
3489
2464
|
{
|
|
3490
2465
|
"internalType": "address",
|
|
3491
|
-
"name": "
|
|
2466
|
+
"name": "handlerContract",
|
|
3492
2467
|
"type": "address"
|
|
3493
2468
|
},
|
|
3494
2469
|
{
|
|
3495
|
-
"internalType": "
|
|
3496
|
-
"name": "
|
|
3497
|
-
"type": "
|
|
3498
|
-
}
|
|
3499
|
-
],
|
|
3500
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3501
|
-
"name": "payment",
|
|
3502
|
-
"type": "tuple"
|
|
3503
|
-
}
|
|
3504
|
-
],
|
|
3505
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3506
|
-
"name": "",
|
|
3507
|
-
"type": "tuple"
|
|
3508
|
-
}
|
|
3509
|
-
],
|
|
3510
|
-
"stateMutability": "nonpayable",
|
|
3511
|
-
"type": "function"
|
|
3512
|
-
},
|
|
3513
|
-
{
|
|
3514
|
-
"inputs": [
|
|
3515
|
-
{
|
|
3516
|
-
"internalType": "address",
|
|
3517
|
-
"name": "newBroadcaster",
|
|
3518
|
-
"type": "address"
|
|
3519
|
-
}
|
|
3520
|
-
],
|
|
3521
|
-
"name": "updateBroadcasterRequest",
|
|
3522
|
-
"outputs": [
|
|
3523
|
-
{
|
|
3524
|
-
"components": [
|
|
3525
|
-
{
|
|
3526
|
-
"internalType": "uint256",
|
|
3527
|
-
"name": "txId",
|
|
3528
|
-
"type": "uint256"
|
|
3529
|
-
},
|
|
3530
|
-
{
|
|
3531
|
-
"internalType": "uint256",
|
|
3532
|
-
"name": "releaseTime",
|
|
3533
|
-
"type": "uint256"
|
|
3534
|
-
},
|
|
3535
|
-
{
|
|
3536
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3537
|
-
"name": "status",
|
|
3538
|
-
"type": "uint8"
|
|
3539
|
-
},
|
|
3540
|
-
{
|
|
3541
|
-
"components": [
|
|
3542
|
-
{
|
|
3543
|
-
"internalType": "address",
|
|
3544
|
-
"name": "requester",
|
|
3545
|
-
"type": "address"
|
|
2470
|
+
"internalType": "bytes4",
|
|
2471
|
+
"name": "handlerSelector",
|
|
2472
|
+
"type": "bytes4"
|
|
3546
2473
|
},
|
|
3547
2474
|
{
|
|
3548
|
-
"internalType": "
|
|
3549
|
-
"name": "
|
|
3550
|
-
"type": "
|
|
2475
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2476
|
+
"name": "action",
|
|
2477
|
+
"type": "uint8"
|
|
3551
2478
|
},
|
|
3552
2479
|
{
|
|
3553
2480
|
"internalType": "uint256",
|
|
3554
|
-
"name": "
|
|
2481
|
+
"name": "deadline",
|
|
3555
2482
|
"type": "uint256"
|
|
3556
2483
|
},
|
|
3557
2484
|
{
|
|
3558
2485
|
"internalType": "uint256",
|
|
3559
|
-
"name": "
|
|
2486
|
+
"name": "maxGasPrice",
|
|
3560
2487
|
"type": "uint256"
|
|
3561
2488
|
},
|
|
3562
2489
|
{
|
|
3563
|
-
"internalType": "
|
|
3564
|
-
"name": "
|
|
3565
|
-
"type": "
|
|
3566
|
-
},
|
|
3567
|
-
{
|
|
3568
|
-
"internalType": "bytes4",
|
|
3569
|
-
"name": "executionSelector",
|
|
3570
|
-
"type": "bytes4"
|
|
3571
|
-
},
|
|
3572
|
-
{
|
|
3573
|
-
"internalType": "bytes",
|
|
3574
|
-
"name": "executionParams",
|
|
3575
|
-
"type": "bytes"
|
|
2490
|
+
"internalType": "address",
|
|
2491
|
+
"name": "signer",
|
|
2492
|
+
"type": "address"
|
|
3576
2493
|
}
|
|
3577
2494
|
],
|
|
3578
|
-
"internalType": "struct EngineBlox.
|
|
2495
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3579
2496
|
"name": "params",
|
|
3580
2497
|
"type": "tuple"
|
|
3581
2498
|
},
|
|
@@ -3586,42 +2503,71 @@
|
|
|
3586
2503
|
},
|
|
3587
2504
|
{
|
|
3588
2505
|
"internalType": "bytes",
|
|
3589
|
-
"name": "
|
|
2506
|
+
"name": "signature",
|
|
3590
2507
|
"type": "bytes"
|
|
3591
2508
|
},
|
|
3592
2509
|
{
|
|
3593
|
-
"
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
"name": "recipient",
|
|
3597
|
-
"type": "address"
|
|
3598
|
-
},
|
|
3599
|
-
{
|
|
3600
|
-
"internalType": "uint256",
|
|
3601
|
-
"name": "nativeTokenAmount",
|
|
3602
|
-
"type": "uint256"
|
|
3603
|
-
},
|
|
3604
|
-
{
|
|
3605
|
-
"internalType": "address",
|
|
3606
|
-
"name": "erc20TokenAddress",
|
|
3607
|
-
"type": "address"
|
|
3608
|
-
},
|
|
3609
|
-
{
|
|
3610
|
-
"internalType": "uint256",
|
|
3611
|
-
"name": "erc20TokenAmount",
|
|
3612
|
-
"type": "uint256"
|
|
3613
|
-
}
|
|
3614
|
-
],
|
|
3615
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3616
|
-
"name": "payment",
|
|
3617
|
-
"type": "tuple"
|
|
2510
|
+
"internalType": "bytes",
|
|
2511
|
+
"name": "data",
|
|
2512
|
+
"type": "bytes"
|
|
3618
2513
|
}
|
|
3619
2514
|
],
|
|
3620
|
-
"internalType": "struct EngineBlox.
|
|
3621
|
-
"name": "",
|
|
2515
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2516
|
+
"name": "metaTx",
|
|
3622
2517
|
"type": "tuple"
|
|
3623
2518
|
}
|
|
3624
2519
|
],
|
|
2520
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2521
|
+
"outputs": [
|
|
2522
|
+
{
|
|
2523
|
+
"internalType": "uint256",
|
|
2524
|
+
"name": "",
|
|
2525
|
+
"type": "uint256"
|
|
2526
|
+
}
|
|
2527
|
+
],
|
|
2528
|
+
"stateMutability": "nonpayable",
|
|
2529
|
+
"type": "function"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"inputs": [
|
|
2533
|
+
{
|
|
2534
|
+
"internalType": "uint256",
|
|
2535
|
+
"name": "txId",
|
|
2536
|
+
"type": "uint256"
|
|
2537
|
+
}
|
|
2538
|
+
],
|
|
2539
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
2540
|
+
"outputs": [
|
|
2541
|
+
{
|
|
2542
|
+
"internalType": "uint256",
|
|
2543
|
+
"name": "",
|
|
2544
|
+
"type": "uint256"
|
|
2545
|
+
}
|
|
2546
|
+
],
|
|
2547
|
+
"stateMutability": "nonpayable",
|
|
2548
|
+
"type": "function"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"inputs": [
|
|
2552
|
+
{
|
|
2553
|
+
"internalType": "address",
|
|
2554
|
+
"name": "newBroadcaster",
|
|
2555
|
+
"type": "address"
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
"internalType": "uint256",
|
|
2559
|
+
"name": "location",
|
|
2560
|
+
"type": "uint256"
|
|
2561
|
+
}
|
|
2562
|
+
],
|
|
2563
|
+
"name": "updateBroadcasterRequest",
|
|
2564
|
+
"outputs": [
|
|
2565
|
+
{
|
|
2566
|
+
"internalType": "uint256",
|
|
2567
|
+
"name": "txId",
|
|
2568
|
+
"type": "uint256"
|
|
2569
|
+
}
|
|
2570
|
+
],
|
|
3625
2571
|
"stateMutability": "nonpayable",
|
|
3626
2572
|
"type": "function"
|
|
3627
2573
|
},
|
|
@@ -3801,105 +2747,9 @@
|
|
|
3801
2747
|
"name": "updateRecoveryRequestAndApprove",
|
|
3802
2748
|
"outputs": [
|
|
3803
2749
|
{
|
|
3804
|
-
"
|
|
3805
|
-
{
|
|
3806
|
-
"internalType": "uint256",
|
|
3807
|
-
"name": "txId",
|
|
3808
|
-
"type": "uint256"
|
|
3809
|
-
},
|
|
3810
|
-
{
|
|
3811
|
-
"internalType": "uint256",
|
|
3812
|
-
"name": "releaseTime",
|
|
3813
|
-
"type": "uint256"
|
|
3814
|
-
},
|
|
3815
|
-
{
|
|
3816
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3817
|
-
"name": "status",
|
|
3818
|
-
"type": "uint8"
|
|
3819
|
-
},
|
|
3820
|
-
{
|
|
3821
|
-
"components": [
|
|
3822
|
-
{
|
|
3823
|
-
"internalType": "address",
|
|
3824
|
-
"name": "requester",
|
|
3825
|
-
"type": "address"
|
|
3826
|
-
},
|
|
3827
|
-
{
|
|
3828
|
-
"internalType": "address",
|
|
3829
|
-
"name": "target",
|
|
3830
|
-
"type": "address"
|
|
3831
|
-
},
|
|
3832
|
-
{
|
|
3833
|
-
"internalType": "uint256",
|
|
3834
|
-
"name": "value",
|
|
3835
|
-
"type": "uint256"
|
|
3836
|
-
},
|
|
3837
|
-
{
|
|
3838
|
-
"internalType": "uint256",
|
|
3839
|
-
"name": "gasLimit",
|
|
3840
|
-
"type": "uint256"
|
|
3841
|
-
},
|
|
3842
|
-
{
|
|
3843
|
-
"internalType": "bytes32",
|
|
3844
|
-
"name": "operationType",
|
|
3845
|
-
"type": "bytes32"
|
|
3846
|
-
},
|
|
3847
|
-
{
|
|
3848
|
-
"internalType": "bytes4",
|
|
3849
|
-
"name": "executionSelector",
|
|
3850
|
-
"type": "bytes4"
|
|
3851
|
-
},
|
|
3852
|
-
{
|
|
3853
|
-
"internalType": "bytes",
|
|
3854
|
-
"name": "executionParams",
|
|
3855
|
-
"type": "bytes"
|
|
3856
|
-
}
|
|
3857
|
-
],
|
|
3858
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3859
|
-
"name": "params",
|
|
3860
|
-
"type": "tuple"
|
|
3861
|
-
},
|
|
3862
|
-
{
|
|
3863
|
-
"internalType": "bytes32",
|
|
3864
|
-
"name": "message",
|
|
3865
|
-
"type": "bytes32"
|
|
3866
|
-
},
|
|
3867
|
-
{
|
|
3868
|
-
"internalType": "bytes",
|
|
3869
|
-
"name": "result",
|
|
3870
|
-
"type": "bytes"
|
|
3871
|
-
},
|
|
3872
|
-
{
|
|
3873
|
-
"components": [
|
|
3874
|
-
{
|
|
3875
|
-
"internalType": "address",
|
|
3876
|
-
"name": "recipient",
|
|
3877
|
-
"type": "address"
|
|
3878
|
-
},
|
|
3879
|
-
{
|
|
3880
|
-
"internalType": "uint256",
|
|
3881
|
-
"name": "nativeTokenAmount",
|
|
3882
|
-
"type": "uint256"
|
|
3883
|
-
},
|
|
3884
|
-
{
|
|
3885
|
-
"internalType": "address",
|
|
3886
|
-
"name": "erc20TokenAddress",
|
|
3887
|
-
"type": "address"
|
|
3888
|
-
},
|
|
3889
|
-
{
|
|
3890
|
-
"internalType": "uint256",
|
|
3891
|
-
"name": "erc20TokenAmount",
|
|
3892
|
-
"type": "uint256"
|
|
3893
|
-
}
|
|
3894
|
-
],
|
|
3895
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3896
|
-
"name": "payment",
|
|
3897
|
-
"type": "tuple"
|
|
3898
|
-
}
|
|
3899
|
-
],
|
|
3900
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2750
|
+
"internalType": "uint256",
|
|
3901
2751
|
"name": "",
|
|
3902
|
-
"type": "
|
|
2752
|
+
"type": "uint256"
|
|
3903
2753
|
}
|
|
3904
2754
|
],
|
|
3905
2755
|
"stateMutability": "nonpayable",
|
|
@@ -4081,105 +2931,9 @@
|
|
|
4081
2931
|
"name": "updateTimeLockRequestAndApprove",
|
|
4082
2932
|
"outputs": [
|
|
4083
2933
|
{
|
|
4084
|
-
"
|
|
4085
|
-
{
|
|
4086
|
-
"internalType": "uint256",
|
|
4087
|
-
"name": "txId",
|
|
4088
|
-
"type": "uint256"
|
|
4089
|
-
},
|
|
4090
|
-
{
|
|
4091
|
-
"internalType": "uint256",
|
|
4092
|
-
"name": "releaseTime",
|
|
4093
|
-
"type": "uint256"
|
|
4094
|
-
},
|
|
4095
|
-
{
|
|
4096
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4097
|
-
"name": "status",
|
|
4098
|
-
"type": "uint8"
|
|
4099
|
-
},
|
|
4100
|
-
{
|
|
4101
|
-
"components": [
|
|
4102
|
-
{
|
|
4103
|
-
"internalType": "address",
|
|
4104
|
-
"name": "requester",
|
|
4105
|
-
"type": "address"
|
|
4106
|
-
},
|
|
4107
|
-
{
|
|
4108
|
-
"internalType": "address",
|
|
4109
|
-
"name": "target",
|
|
4110
|
-
"type": "address"
|
|
4111
|
-
},
|
|
4112
|
-
{
|
|
4113
|
-
"internalType": "uint256",
|
|
4114
|
-
"name": "value",
|
|
4115
|
-
"type": "uint256"
|
|
4116
|
-
},
|
|
4117
|
-
{
|
|
4118
|
-
"internalType": "uint256",
|
|
4119
|
-
"name": "gasLimit",
|
|
4120
|
-
"type": "uint256"
|
|
4121
|
-
},
|
|
4122
|
-
{
|
|
4123
|
-
"internalType": "bytes32",
|
|
4124
|
-
"name": "operationType",
|
|
4125
|
-
"type": "bytes32"
|
|
4126
|
-
},
|
|
4127
|
-
{
|
|
4128
|
-
"internalType": "bytes4",
|
|
4129
|
-
"name": "executionSelector",
|
|
4130
|
-
"type": "bytes4"
|
|
4131
|
-
},
|
|
4132
|
-
{
|
|
4133
|
-
"internalType": "bytes",
|
|
4134
|
-
"name": "executionParams",
|
|
4135
|
-
"type": "bytes"
|
|
4136
|
-
}
|
|
4137
|
-
],
|
|
4138
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4139
|
-
"name": "params",
|
|
4140
|
-
"type": "tuple"
|
|
4141
|
-
},
|
|
4142
|
-
{
|
|
4143
|
-
"internalType": "bytes32",
|
|
4144
|
-
"name": "message",
|
|
4145
|
-
"type": "bytes32"
|
|
4146
|
-
},
|
|
4147
|
-
{
|
|
4148
|
-
"internalType": "bytes",
|
|
4149
|
-
"name": "result",
|
|
4150
|
-
"type": "bytes"
|
|
4151
|
-
},
|
|
4152
|
-
{
|
|
4153
|
-
"components": [
|
|
4154
|
-
{
|
|
4155
|
-
"internalType": "address",
|
|
4156
|
-
"name": "recipient",
|
|
4157
|
-
"type": "address"
|
|
4158
|
-
},
|
|
4159
|
-
{
|
|
4160
|
-
"internalType": "uint256",
|
|
4161
|
-
"name": "nativeTokenAmount",
|
|
4162
|
-
"type": "uint256"
|
|
4163
|
-
},
|
|
4164
|
-
{
|
|
4165
|
-
"internalType": "address",
|
|
4166
|
-
"name": "erc20TokenAddress",
|
|
4167
|
-
"type": "address"
|
|
4168
|
-
},
|
|
4169
|
-
{
|
|
4170
|
-
"internalType": "uint256",
|
|
4171
|
-
"name": "erc20TokenAmount",
|
|
4172
|
-
"type": "uint256"
|
|
4173
|
-
}
|
|
4174
|
-
],
|
|
4175
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4176
|
-
"name": "payment",
|
|
4177
|
-
"type": "tuple"
|
|
4178
|
-
}
|
|
4179
|
-
],
|
|
4180
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2934
|
+
"internalType": "uint256",
|
|
4181
2935
|
"name": "",
|
|
4182
|
-
"type": "
|
|
2936
|
+
"type": "uint256"
|
|
4183
2937
|
}
|
|
4184
2938
|
],
|
|
4185
2939
|
"stateMutability": "nonpayable",
|