@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/SecureBlox.abi.json
CHANGED
|
@@ -979,6 +979,25 @@
|
|
|
979
979
|
"stateMutability": "view",
|
|
980
980
|
"type": "function"
|
|
981
981
|
},
|
|
982
|
+
{
|
|
983
|
+
"inputs": [
|
|
984
|
+
{
|
|
985
|
+
"internalType": "bytes4",
|
|
986
|
+
"name": "functionSelector",
|
|
987
|
+
"type": "bytes4"
|
|
988
|
+
}
|
|
989
|
+
],
|
|
990
|
+
"name": "getHooks",
|
|
991
|
+
"outputs": [
|
|
992
|
+
{
|
|
993
|
+
"internalType": "address[]",
|
|
994
|
+
"name": "hooks",
|
|
995
|
+
"type": "address[]"
|
|
996
|
+
}
|
|
997
|
+
],
|
|
998
|
+
"stateMutability": "view",
|
|
999
|
+
"type": "function"
|
|
1000
|
+
},
|
|
982
1001
|
{
|
|
983
1002
|
"inputs": [],
|
|
984
1003
|
"name": "getPendingTransactions",
|
|
@@ -1657,105 +1676,9 @@
|
|
|
1657
1676
|
"name": "transferOwnershipApprovalWithMetaTx",
|
|
1658
1677
|
"outputs": [
|
|
1659
1678
|
{
|
|
1660
|
-
"
|
|
1661
|
-
{
|
|
1662
|
-
"internalType": "uint256",
|
|
1663
|
-
"name": "txId",
|
|
1664
|
-
"type": "uint256"
|
|
1665
|
-
},
|
|
1666
|
-
{
|
|
1667
|
-
"internalType": "uint256",
|
|
1668
|
-
"name": "releaseTime",
|
|
1669
|
-
"type": "uint256"
|
|
1670
|
-
},
|
|
1671
|
-
{
|
|
1672
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1673
|
-
"name": "status",
|
|
1674
|
-
"type": "uint8"
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
"components": [
|
|
1678
|
-
{
|
|
1679
|
-
"internalType": "address",
|
|
1680
|
-
"name": "requester",
|
|
1681
|
-
"type": "address"
|
|
1682
|
-
},
|
|
1683
|
-
{
|
|
1684
|
-
"internalType": "address",
|
|
1685
|
-
"name": "target",
|
|
1686
|
-
"type": "address"
|
|
1687
|
-
},
|
|
1688
|
-
{
|
|
1689
|
-
"internalType": "uint256",
|
|
1690
|
-
"name": "value",
|
|
1691
|
-
"type": "uint256"
|
|
1692
|
-
},
|
|
1693
|
-
{
|
|
1694
|
-
"internalType": "uint256",
|
|
1695
|
-
"name": "gasLimit",
|
|
1696
|
-
"type": "uint256"
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
"internalType": "bytes32",
|
|
1700
|
-
"name": "operationType",
|
|
1701
|
-
"type": "bytes32"
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"internalType": "bytes4",
|
|
1705
|
-
"name": "executionSelector",
|
|
1706
|
-
"type": "bytes4"
|
|
1707
|
-
},
|
|
1708
|
-
{
|
|
1709
|
-
"internalType": "bytes",
|
|
1710
|
-
"name": "executionParams",
|
|
1711
|
-
"type": "bytes"
|
|
1712
|
-
}
|
|
1713
|
-
],
|
|
1714
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1715
|
-
"name": "params",
|
|
1716
|
-
"type": "tuple"
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
"internalType": "bytes32",
|
|
1720
|
-
"name": "message",
|
|
1721
|
-
"type": "bytes32"
|
|
1722
|
-
},
|
|
1723
|
-
{
|
|
1724
|
-
"internalType": "bytes",
|
|
1725
|
-
"name": "result",
|
|
1726
|
-
"type": "bytes"
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
"components": [
|
|
1730
|
-
{
|
|
1731
|
-
"internalType": "address",
|
|
1732
|
-
"name": "recipient",
|
|
1733
|
-
"type": "address"
|
|
1734
|
-
},
|
|
1735
|
-
{
|
|
1736
|
-
"internalType": "uint256",
|
|
1737
|
-
"name": "nativeTokenAmount",
|
|
1738
|
-
"type": "uint256"
|
|
1739
|
-
},
|
|
1740
|
-
{
|
|
1741
|
-
"internalType": "address",
|
|
1742
|
-
"name": "erc20TokenAddress",
|
|
1743
|
-
"type": "address"
|
|
1744
|
-
},
|
|
1745
|
-
{
|
|
1746
|
-
"internalType": "uint256",
|
|
1747
|
-
"name": "erc20TokenAmount",
|
|
1748
|
-
"type": "uint256"
|
|
1749
|
-
}
|
|
1750
|
-
],
|
|
1751
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1752
|
-
"name": "payment",
|
|
1753
|
-
"type": "tuple"
|
|
1754
|
-
}
|
|
1755
|
-
],
|
|
1756
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
1679
|
+
"internalType": "uint256",
|
|
1757
1680
|
"name": "",
|
|
1758
|
-
"type": "
|
|
1681
|
+
"type": "uint256"
|
|
1759
1682
|
}
|
|
1760
1683
|
],
|
|
1761
1684
|
"stateMutability": "nonpayable",
|
|
@@ -1772,105 +1695,9 @@
|
|
|
1772
1695
|
"name": "transferOwnershipCancellation",
|
|
1773
1696
|
"outputs": [
|
|
1774
1697
|
{
|
|
1775
|
-
"
|
|
1776
|
-
{
|
|
1777
|
-
"internalType": "uint256",
|
|
1778
|
-
"name": "txId",
|
|
1779
|
-
"type": "uint256"
|
|
1780
|
-
},
|
|
1781
|
-
{
|
|
1782
|
-
"internalType": "uint256",
|
|
1783
|
-
"name": "releaseTime",
|
|
1784
|
-
"type": "uint256"
|
|
1785
|
-
},
|
|
1786
|
-
{
|
|
1787
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1788
|
-
"name": "status",
|
|
1789
|
-
"type": "uint8"
|
|
1790
|
-
},
|
|
1791
|
-
{
|
|
1792
|
-
"components": [
|
|
1793
|
-
{
|
|
1794
|
-
"internalType": "address",
|
|
1795
|
-
"name": "requester",
|
|
1796
|
-
"type": "address"
|
|
1797
|
-
},
|
|
1798
|
-
{
|
|
1799
|
-
"internalType": "address",
|
|
1800
|
-
"name": "target",
|
|
1801
|
-
"type": "address"
|
|
1802
|
-
},
|
|
1803
|
-
{
|
|
1804
|
-
"internalType": "uint256",
|
|
1805
|
-
"name": "value",
|
|
1806
|
-
"type": "uint256"
|
|
1807
|
-
},
|
|
1808
|
-
{
|
|
1809
|
-
"internalType": "uint256",
|
|
1810
|
-
"name": "gasLimit",
|
|
1811
|
-
"type": "uint256"
|
|
1812
|
-
},
|
|
1813
|
-
{
|
|
1814
|
-
"internalType": "bytes32",
|
|
1815
|
-
"name": "operationType",
|
|
1816
|
-
"type": "bytes32"
|
|
1817
|
-
},
|
|
1818
|
-
{
|
|
1819
|
-
"internalType": "bytes4",
|
|
1820
|
-
"name": "executionSelector",
|
|
1821
|
-
"type": "bytes4"
|
|
1822
|
-
},
|
|
1823
|
-
{
|
|
1824
|
-
"internalType": "bytes",
|
|
1825
|
-
"name": "executionParams",
|
|
1826
|
-
"type": "bytes"
|
|
1827
|
-
}
|
|
1828
|
-
],
|
|
1829
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1830
|
-
"name": "params",
|
|
1831
|
-
"type": "tuple"
|
|
1832
|
-
},
|
|
1833
|
-
{
|
|
1834
|
-
"internalType": "bytes32",
|
|
1835
|
-
"name": "message",
|
|
1836
|
-
"type": "bytes32"
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"internalType": "bytes",
|
|
1840
|
-
"name": "result",
|
|
1841
|
-
"type": "bytes"
|
|
1842
|
-
},
|
|
1843
|
-
{
|
|
1844
|
-
"components": [
|
|
1845
|
-
{
|
|
1846
|
-
"internalType": "address",
|
|
1847
|
-
"name": "recipient",
|
|
1848
|
-
"type": "address"
|
|
1849
|
-
},
|
|
1850
|
-
{
|
|
1851
|
-
"internalType": "uint256",
|
|
1852
|
-
"name": "nativeTokenAmount",
|
|
1853
|
-
"type": "uint256"
|
|
1854
|
-
},
|
|
1855
|
-
{
|
|
1856
|
-
"internalType": "address",
|
|
1857
|
-
"name": "erc20TokenAddress",
|
|
1858
|
-
"type": "address"
|
|
1859
|
-
},
|
|
1860
|
-
{
|
|
1861
|
-
"internalType": "uint256",
|
|
1862
|
-
"name": "erc20TokenAmount",
|
|
1863
|
-
"type": "uint256"
|
|
1864
|
-
}
|
|
1865
|
-
],
|
|
1866
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1867
|
-
"name": "payment",
|
|
1868
|
-
"type": "tuple"
|
|
1869
|
-
}
|
|
1870
|
-
],
|
|
1871
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
1698
|
+
"internalType": "uint256",
|
|
1872
1699
|
"name": "",
|
|
1873
|
-
"type": "
|
|
1700
|
+
"type": "uint256"
|
|
1874
1701
|
}
|
|
1875
1702
|
],
|
|
1876
1703
|
"stateMutability": "nonpayable",
|
|
@@ -2052,724 +1879,41 @@
|
|
|
2052
1879
|
"name": "transferOwnershipCancellationWithMetaTx",
|
|
2053
1880
|
"outputs": [
|
|
2054
1881
|
{
|
|
2055
|
-
"
|
|
2056
|
-
{
|
|
2057
|
-
"internalType": "uint256",
|
|
2058
|
-
"name": "txId",
|
|
2059
|
-
"type": "uint256"
|
|
2060
|
-
},
|
|
2061
|
-
{
|
|
2062
|
-
"internalType": "uint256",
|
|
2063
|
-
"name": "releaseTime",
|
|
2064
|
-
"type": "uint256"
|
|
2065
|
-
},
|
|
2066
|
-
{
|
|
2067
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2068
|
-
"name": "status",
|
|
2069
|
-
"type": "uint8"
|
|
2070
|
-
},
|
|
2071
|
-
{
|
|
2072
|
-
"components": [
|
|
2073
|
-
{
|
|
2074
|
-
"internalType": "address",
|
|
2075
|
-
"name": "requester",
|
|
2076
|
-
"type": "address"
|
|
2077
|
-
},
|
|
2078
|
-
{
|
|
2079
|
-
"internalType": "address",
|
|
2080
|
-
"name": "target",
|
|
2081
|
-
"type": "address"
|
|
2082
|
-
},
|
|
2083
|
-
{
|
|
2084
|
-
"internalType": "uint256",
|
|
2085
|
-
"name": "value",
|
|
2086
|
-
"type": "uint256"
|
|
2087
|
-
},
|
|
2088
|
-
{
|
|
2089
|
-
"internalType": "uint256",
|
|
2090
|
-
"name": "gasLimit",
|
|
2091
|
-
"type": "uint256"
|
|
2092
|
-
},
|
|
2093
|
-
{
|
|
2094
|
-
"internalType": "bytes32",
|
|
2095
|
-
"name": "operationType",
|
|
2096
|
-
"type": "bytes32"
|
|
2097
|
-
},
|
|
2098
|
-
{
|
|
2099
|
-
"internalType": "bytes4",
|
|
2100
|
-
"name": "executionSelector",
|
|
2101
|
-
"type": "bytes4"
|
|
2102
|
-
},
|
|
2103
|
-
{
|
|
2104
|
-
"internalType": "bytes",
|
|
2105
|
-
"name": "executionParams",
|
|
2106
|
-
"type": "bytes"
|
|
2107
|
-
}
|
|
2108
|
-
],
|
|
2109
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2110
|
-
"name": "params",
|
|
2111
|
-
"type": "tuple"
|
|
2112
|
-
},
|
|
2113
|
-
{
|
|
2114
|
-
"internalType": "bytes32",
|
|
2115
|
-
"name": "message",
|
|
2116
|
-
"type": "bytes32"
|
|
2117
|
-
},
|
|
2118
|
-
{
|
|
2119
|
-
"internalType": "bytes",
|
|
2120
|
-
"name": "result",
|
|
2121
|
-
"type": "bytes"
|
|
2122
|
-
},
|
|
2123
|
-
{
|
|
2124
|
-
"components": [
|
|
2125
|
-
{
|
|
2126
|
-
"internalType": "address",
|
|
2127
|
-
"name": "recipient",
|
|
2128
|
-
"type": "address"
|
|
2129
|
-
},
|
|
2130
|
-
{
|
|
2131
|
-
"internalType": "uint256",
|
|
2132
|
-
"name": "nativeTokenAmount",
|
|
2133
|
-
"type": "uint256"
|
|
2134
|
-
},
|
|
2135
|
-
{
|
|
2136
|
-
"internalType": "address",
|
|
2137
|
-
"name": "erc20TokenAddress",
|
|
2138
|
-
"type": "address"
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
"internalType": "uint256",
|
|
2142
|
-
"name": "erc20TokenAmount",
|
|
2143
|
-
"type": "uint256"
|
|
2144
|
-
}
|
|
2145
|
-
],
|
|
2146
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2147
|
-
"name": "payment",
|
|
2148
|
-
"type": "tuple"
|
|
2149
|
-
}
|
|
2150
|
-
],
|
|
2151
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2152
|
-
"name": "",
|
|
2153
|
-
"type": "tuple"
|
|
2154
|
-
}
|
|
2155
|
-
],
|
|
2156
|
-
"stateMutability": "nonpayable",
|
|
2157
|
-
"type": "function"
|
|
2158
|
-
},
|
|
2159
|
-
{
|
|
2160
|
-
"inputs": [
|
|
2161
|
-
{
|
|
2162
|
-
"internalType": "uint256",
|
|
2163
|
-
"name": "txId",
|
|
2164
|
-
"type": "uint256"
|
|
2165
|
-
}
|
|
2166
|
-
],
|
|
2167
|
-
"name": "transferOwnershipDelayedApproval",
|
|
2168
|
-
"outputs": [
|
|
2169
|
-
{
|
|
2170
|
-
"components": [
|
|
2171
|
-
{
|
|
2172
|
-
"internalType": "uint256",
|
|
2173
|
-
"name": "txId",
|
|
2174
|
-
"type": "uint256"
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
"internalType": "uint256",
|
|
2178
|
-
"name": "releaseTime",
|
|
2179
|
-
"type": "uint256"
|
|
2180
|
-
},
|
|
2181
|
-
{
|
|
2182
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2183
|
-
"name": "status",
|
|
2184
|
-
"type": "uint8"
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
"components": [
|
|
2188
|
-
{
|
|
2189
|
-
"internalType": "address",
|
|
2190
|
-
"name": "requester",
|
|
2191
|
-
"type": "address"
|
|
2192
|
-
},
|
|
2193
|
-
{
|
|
2194
|
-
"internalType": "address",
|
|
2195
|
-
"name": "target",
|
|
2196
|
-
"type": "address"
|
|
2197
|
-
},
|
|
2198
|
-
{
|
|
2199
|
-
"internalType": "uint256",
|
|
2200
|
-
"name": "value",
|
|
2201
|
-
"type": "uint256"
|
|
2202
|
-
},
|
|
2203
|
-
{
|
|
2204
|
-
"internalType": "uint256",
|
|
2205
|
-
"name": "gasLimit",
|
|
2206
|
-
"type": "uint256"
|
|
2207
|
-
},
|
|
2208
|
-
{
|
|
2209
|
-
"internalType": "bytes32",
|
|
2210
|
-
"name": "operationType",
|
|
2211
|
-
"type": "bytes32"
|
|
2212
|
-
},
|
|
2213
|
-
{
|
|
2214
|
-
"internalType": "bytes4",
|
|
2215
|
-
"name": "executionSelector",
|
|
2216
|
-
"type": "bytes4"
|
|
2217
|
-
},
|
|
2218
|
-
{
|
|
2219
|
-
"internalType": "bytes",
|
|
2220
|
-
"name": "executionParams",
|
|
2221
|
-
"type": "bytes"
|
|
2222
|
-
}
|
|
2223
|
-
],
|
|
2224
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2225
|
-
"name": "params",
|
|
2226
|
-
"type": "tuple"
|
|
2227
|
-
},
|
|
2228
|
-
{
|
|
2229
|
-
"internalType": "bytes32",
|
|
2230
|
-
"name": "message",
|
|
2231
|
-
"type": "bytes32"
|
|
2232
|
-
},
|
|
2233
|
-
{
|
|
2234
|
-
"internalType": "bytes",
|
|
2235
|
-
"name": "result",
|
|
2236
|
-
"type": "bytes"
|
|
2237
|
-
},
|
|
2238
|
-
{
|
|
2239
|
-
"components": [
|
|
2240
|
-
{
|
|
2241
|
-
"internalType": "address",
|
|
2242
|
-
"name": "recipient",
|
|
2243
|
-
"type": "address"
|
|
2244
|
-
},
|
|
2245
|
-
{
|
|
2246
|
-
"internalType": "uint256",
|
|
2247
|
-
"name": "nativeTokenAmount",
|
|
2248
|
-
"type": "uint256"
|
|
2249
|
-
},
|
|
2250
|
-
{
|
|
2251
|
-
"internalType": "address",
|
|
2252
|
-
"name": "erc20TokenAddress",
|
|
2253
|
-
"type": "address"
|
|
2254
|
-
},
|
|
2255
|
-
{
|
|
2256
|
-
"internalType": "uint256",
|
|
2257
|
-
"name": "erc20TokenAmount",
|
|
2258
|
-
"type": "uint256"
|
|
2259
|
-
}
|
|
2260
|
-
],
|
|
2261
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2262
|
-
"name": "payment",
|
|
2263
|
-
"type": "tuple"
|
|
2264
|
-
}
|
|
2265
|
-
],
|
|
2266
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2267
|
-
"name": "",
|
|
2268
|
-
"type": "tuple"
|
|
2269
|
-
}
|
|
2270
|
-
],
|
|
2271
|
-
"stateMutability": "nonpayable",
|
|
2272
|
-
"type": "function"
|
|
2273
|
-
},
|
|
2274
|
-
{
|
|
2275
|
-
"inputs": [],
|
|
2276
|
-
"name": "transferOwnershipRequest",
|
|
2277
|
-
"outputs": [
|
|
2278
|
-
{
|
|
2279
|
-
"components": [
|
|
2280
|
-
{
|
|
2281
|
-
"internalType": "uint256",
|
|
2282
|
-
"name": "txId",
|
|
2283
|
-
"type": "uint256"
|
|
2284
|
-
},
|
|
2285
|
-
{
|
|
2286
|
-
"internalType": "uint256",
|
|
2287
|
-
"name": "releaseTime",
|
|
2288
|
-
"type": "uint256"
|
|
2289
|
-
},
|
|
2290
|
-
{
|
|
2291
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2292
|
-
"name": "status",
|
|
2293
|
-
"type": "uint8"
|
|
2294
|
-
},
|
|
2295
|
-
{
|
|
2296
|
-
"components": [
|
|
2297
|
-
{
|
|
2298
|
-
"internalType": "address",
|
|
2299
|
-
"name": "requester",
|
|
2300
|
-
"type": "address"
|
|
2301
|
-
},
|
|
2302
|
-
{
|
|
2303
|
-
"internalType": "address",
|
|
2304
|
-
"name": "target",
|
|
2305
|
-
"type": "address"
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"internalType": "uint256",
|
|
2309
|
-
"name": "value",
|
|
2310
|
-
"type": "uint256"
|
|
2311
|
-
},
|
|
2312
|
-
{
|
|
2313
|
-
"internalType": "uint256",
|
|
2314
|
-
"name": "gasLimit",
|
|
2315
|
-
"type": "uint256"
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
"internalType": "bytes32",
|
|
2319
|
-
"name": "operationType",
|
|
2320
|
-
"type": "bytes32"
|
|
2321
|
-
},
|
|
2322
|
-
{
|
|
2323
|
-
"internalType": "bytes4",
|
|
2324
|
-
"name": "executionSelector",
|
|
2325
|
-
"type": "bytes4"
|
|
2326
|
-
},
|
|
2327
|
-
{
|
|
2328
|
-
"internalType": "bytes",
|
|
2329
|
-
"name": "executionParams",
|
|
2330
|
-
"type": "bytes"
|
|
2331
|
-
}
|
|
2332
|
-
],
|
|
2333
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2334
|
-
"name": "params",
|
|
2335
|
-
"type": "tuple"
|
|
2336
|
-
},
|
|
2337
|
-
{
|
|
2338
|
-
"internalType": "bytes32",
|
|
2339
|
-
"name": "message",
|
|
2340
|
-
"type": "bytes32"
|
|
2341
|
-
},
|
|
2342
|
-
{
|
|
2343
|
-
"internalType": "bytes",
|
|
2344
|
-
"name": "result",
|
|
2345
|
-
"type": "bytes"
|
|
2346
|
-
},
|
|
2347
|
-
{
|
|
2348
|
-
"components": [
|
|
2349
|
-
{
|
|
2350
|
-
"internalType": "address",
|
|
2351
|
-
"name": "recipient",
|
|
2352
|
-
"type": "address"
|
|
2353
|
-
},
|
|
2354
|
-
{
|
|
2355
|
-
"internalType": "uint256",
|
|
2356
|
-
"name": "nativeTokenAmount",
|
|
2357
|
-
"type": "uint256"
|
|
2358
|
-
},
|
|
2359
|
-
{
|
|
2360
|
-
"internalType": "address",
|
|
2361
|
-
"name": "erc20TokenAddress",
|
|
2362
|
-
"type": "address"
|
|
2363
|
-
},
|
|
2364
|
-
{
|
|
2365
|
-
"internalType": "uint256",
|
|
2366
|
-
"name": "erc20TokenAmount",
|
|
2367
|
-
"type": "uint256"
|
|
2368
|
-
}
|
|
2369
|
-
],
|
|
2370
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2371
|
-
"name": "payment",
|
|
2372
|
-
"type": "tuple"
|
|
2373
|
-
}
|
|
2374
|
-
],
|
|
2375
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2376
|
-
"name": "",
|
|
2377
|
-
"type": "tuple"
|
|
2378
|
-
}
|
|
2379
|
-
],
|
|
2380
|
-
"stateMutability": "nonpayable",
|
|
2381
|
-
"type": "function"
|
|
2382
|
-
},
|
|
2383
|
-
{
|
|
2384
|
-
"inputs": [
|
|
2385
|
-
{
|
|
2386
|
-
"components": [
|
|
2387
|
-
{
|
|
2388
|
-
"components": [
|
|
2389
|
-
{
|
|
2390
|
-
"internalType": "uint256",
|
|
2391
|
-
"name": "txId",
|
|
2392
|
-
"type": "uint256"
|
|
2393
|
-
},
|
|
2394
|
-
{
|
|
2395
|
-
"internalType": "uint256",
|
|
2396
|
-
"name": "releaseTime",
|
|
2397
|
-
"type": "uint256"
|
|
2398
|
-
},
|
|
2399
|
-
{
|
|
2400
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2401
|
-
"name": "status",
|
|
2402
|
-
"type": "uint8"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"components": [
|
|
2406
|
-
{
|
|
2407
|
-
"internalType": "address",
|
|
2408
|
-
"name": "requester",
|
|
2409
|
-
"type": "address"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"internalType": "address",
|
|
2413
|
-
"name": "target",
|
|
2414
|
-
"type": "address"
|
|
2415
|
-
},
|
|
2416
|
-
{
|
|
2417
|
-
"internalType": "uint256",
|
|
2418
|
-
"name": "value",
|
|
2419
|
-
"type": "uint256"
|
|
2420
|
-
},
|
|
2421
|
-
{
|
|
2422
|
-
"internalType": "uint256",
|
|
2423
|
-
"name": "gasLimit",
|
|
2424
|
-
"type": "uint256"
|
|
2425
|
-
},
|
|
2426
|
-
{
|
|
2427
|
-
"internalType": "bytes32",
|
|
2428
|
-
"name": "operationType",
|
|
2429
|
-
"type": "bytes32"
|
|
2430
|
-
},
|
|
2431
|
-
{
|
|
2432
|
-
"internalType": "bytes4",
|
|
2433
|
-
"name": "executionSelector",
|
|
2434
|
-
"type": "bytes4"
|
|
2435
|
-
},
|
|
2436
|
-
{
|
|
2437
|
-
"internalType": "bytes",
|
|
2438
|
-
"name": "executionParams",
|
|
2439
|
-
"type": "bytes"
|
|
2440
|
-
}
|
|
2441
|
-
],
|
|
2442
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2443
|
-
"name": "params",
|
|
2444
|
-
"type": "tuple"
|
|
2445
|
-
},
|
|
2446
|
-
{
|
|
2447
|
-
"internalType": "bytes32",
|
|
2448
|
-
"name": "message",
|
|
2449
|
-
"type": "bytes32"
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"internalType": "bytes",
|
|
2453
|
-
"name": "result",
|
|
2454
|
-
"type": "bytes"
|
|
2455
|
-
},
|
|
2456
|
-
{
|
|
2457
|
-
"components": [
|
|
2458
|
-
{
|
|
2459
|
-
"internalType": "address",
|
|
2460
|
-
"name": "recipient",
|
|
2461
|
-
"type": "address"
|
|
2462
|
-
},
|
|
2463
|
-
{
|
|
2464
|
-
"internalType": "uint256",
|
|
2465
|
-
"name": "nativeTokenAmount",
|
|
2466
|
-
"type": "uint256"
|
|
2467
|
-
},
|
|
2468
|
-
{
|
|
2469
|
-
"internalType": "address",
|
|
2470
|
-
"name": "erc20TokenAddress",
|
|
2471
|
-
"type": "address"
|
|
2472
|
-
},
|
|
2473
|
-
{
|
|
2474
|
-
"internalType": "uint256",
|
|
2475
|
-
"name": "erc20TokenAmount",
|
|
2476
|
-
"type": "uint256"
|
|
2477
|
-
}
|
|
2478
|
-
],
|
|
2479
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2480
|
-
"name": "payment",
|
|
2481
|
-
"type": "tuple"
|
|
2482
|
-
}
|
|
2483
|
-
],
|
|
2484
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2485
|
-
"name": "txRecord",
|
|
2486
|
-
"type": "tuple"
|
|
2487
|
-
},
|
|
2488
|
-
{
|
|
2489
|
-
"components": [
|
|
2490
|
-
{
|
|
2491
|
-
"internalType": "uint256",
|
|
2492
|
-
"name": "chainId",
|
|
2493
|
-
"type": "uint256"
|
|
2494
|
-
},
|
|
2495
|
-
{
|
|
2496
|
-
"internalType": "uint256",
|
|
2497
|
-
"name": "nonce",
|
|
2498
|
-
"type": "uint256"
|
|
2499
|
-
},
|
|
2500
|
-
{
|
|
2501
|
-
"internalType": "address",
|
|
2502
|
-
"name": "handlerContract",
|
|
2503
|
-
"type": "address"
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"internalType": "bytes4",
|
|
2507
|
-
"name": "handlerSelector",
|
|
2508
|
-
"type": "bytes4"
|
|
2509
|
-
},
|
|
2510
|
-
{
|
|
2511
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
2512
|
-
"name": "action",
|
|
2513
|
-
"type": "uint8"
|
|
2514
|
-
},
|
|
2515
|
-
{
|
|
2516
|
-
"internalType": "uint256",
|
|
2517
|
-
"name": "deadline",
|
|
2518
|
-
"type": "uint256"
|
|
2519
|
-
},
|
|
2520
|
-
{
|
|
2521
|
-
"internalType": "uint256",
|
|
2522
|
-
"name": "maxGasPrice",
|
|
2523
|
-
"type": "uint256"
|
|
2524
|
-
},
|
|
2525
|
-
{
|
|
2526
|
-
"internalType": "address",
|
|
2527
|
-
"name": "signer",
|
|
2528
|
-
"type": "address"
|
|
2529
|
-
}
|
|
2530
|
-
],
|
|
2531
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2532
|
-
"name": "params",
|
|
2533
|
-
"type": "tuple"
|
|
2534
|
-
},
|
|
2535
|
-
{
|
|
2536
|
-
"internalType": "bytes32",
|
|
2537
|
-
"name": "message",
|
|
2538
|
-
"type": "bytes32"
|
|
2539
|
-
},
|
|
2540
|
-
{
|
|
2541
|
-
"internalType": "bytes",
|
|
2542
|
-
"name": "signature",
|
|
2543
|
-
"type": "bytes"
|
|
2544
|
-
},
|
|
2545
|
-
{
|
|
2546
|
-
"internalType": "bytes",
|
|
2547
|
-
"name": "data",
|
|
2548
|
-
"type": "bytes"
|
|
2549
|
-
}
|
|
2550
|
-
],
|
|
2551
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2552
|
-
"name": "metaTx",
|
|
2553
|
-
"type": "tuple"
|
|
2554
|
-
}
|
|
2555
|
-
],
|
|
2556
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2557
|
-
"outputs": [
|
|
2558
|
-
{
|
|
2559
|
-
"components": [
|
|
2560
|
-
{
|
|
2561
|
-
"internalType": "uint256",
|
|
2562
|
-
"name": "txId",
|
|
2563
|
-
"type": "uint256"
|
|
2564
|
-
},
|
|
2565
|
-
{
|
|
2566
|
-
"internalType": "uint256",
|
|
2567
|
-
"name": "releaseTime",
|
|
2568
|
-
"type": "uint256"
|
|
2569
|
-
},
|
|
2570
|
-
{
|
|
2571
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2572
|
-
"name": "status",
|
|
2573
|
-
"type": "uint8"
|
|
2574
|
-
},
|
|
2575
|
-
{
|
|
2576
|
-
"components": [
|
|
2577
|
-
{
|
|
2578
|
-
"internalType": "address",
|
|
2579
|
-
"name": "requester",
|
|
2580
|
-
"type": "address"
|
|
2581
|
-
},
|
|
2582
|
-
{
|
|
2583
|
-
"internalType": "address",
|
|
2584
|
-
"name": "target",
|
|
2585
|
-
"type": "address"
|
|
2586
|
-
},
|
|
2587
|
-
{
|
|
2588
|
-
"internalType": "uint256",
|
|
2589
|
-
"name": "value",
|
|
2590
|
-
"type": "uint256"
|
|
2591
|
-
},
|
|
2592
|
-
{
|
|
2593
|
-
"internalType": "uint256",
|
|
2594
|
-
"name": "gasLimit",
|
|
2595
|
-
"type": "uint256"
|
|
2596
|
-
},
|
|
2597
|
-
{
|
|
2598
|
-
"internalType": "bytes32",
|
|
2599
|
-
"name": "operationType",
|
|
2600
|
-
"type": "bytes32"
|
|
2601
|
-
},
|
|
2602
|
-
{
|
|
2603
|
-
"internalType": "bytes4",
|
|
2604
|
-
"name": "executionSelector",
|
|
2605
|
-
"type": "bytes4"
|
|
2606
|
-
},
|
|
2607
|
-
{
|
|
2608
|
-
"internalType": "bytes",
|
|
2609
|
-
"name": "executionParams",
|
|
2610
|
-
"type": "bytes"
|
|
2611
|
-
}
|
|
2612
|
-
],
|
|
2613
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2614
|
-
"name": "params",
|
|
2615
|
-
"type": "tuple"
|
|
2616
|
-
},
|
|
2617
|
-
{
|
|
2618
|
-
"internalType": "bytes32",
|
|
2619
|
-
"name": "message",
|
|
2620
|
-
"type": "bytes32"
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
"internalType": "bytes",
|
|
2624
|
-
"name": "result",
|
|
2625
|
-
"type": "bytes"
|
|
2626
|
-
},
|
|
2627
|
-
{
|
|
2628
|
-
"components": [
|
|
2629
|
-
{
|
|
2630
|
-
"internalType": "address",
|
|
2631
|
-
"name": "recipient",
|
|
2632
|
-
"type": "address"
|
|
2633
|
-
},
|
|
2634
|
-
{
|
|
2635
|
-
"internalType": "uint256",
|
|
2636
|
-
"name": "nativeTokenAmount",
|
|
2637
|
-
"type": "uint256"
|
|
2638
|
-
},
|
|
2639
|
-
{
|
|
2640
|
-
"internalType": "address",
|
|
2641
|
-
"name": "erc20TokenAddress",
|
|
2642
|
-
"type": "address"
|
|
2643
|
-
},
|
|
2644
|
-
{
|
|
2645
|
-
"internalType": "uint256",
|
|
2646
|
-
"name": "erc20TokenAmount",
|
|
2647
|
-
"type": "uint256"
|
|
2648
|
-
}
|
|
2649
|
-
],
|
|
2650
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2651
|
-
"name": "payment",
|
|
2652
|
-
"type": "tuple"
|
|
2653
|
-
}
|
|
2654
|
-
],
|
|
2655
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2656
|
-
"name": "",
|
|
2657
|
-
"type": "tuple"
|
|
2658
|
-
}
|
|
2659
|
-
],
|
|
2660
|
-
"stateMutability": "nonpayable",
|
|
2661
|
-
"type": "function"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
"inputs": [
|
|
2665
|
-
{
|
|
2666
|
-
"internalType": "uint256",
|
|
2667
|
-
"name": "txId",
|
|
2668
|
-
"type": "uint256"
|
|
2669
|
-
}
|
|
2670
|
-
],
|
|
2671
|
-
"name": "updateBroadcasterCancellation",
|
|
2672
|
-
"outputs": [
|
|
2673
|
-
{
|
|
2674
|
-
"components": [
|
|
2675
|
-
{
|
|
2676
|
-
"internalType": "uint256",
|
|
2677
|
-
"name": "txId",
|
|
2678
|
-
"type": "uint256"
|
|
2679
|
-
},
|
|
2680
|
-
{
|
|
2681
|
-
"internalType": "uint256",
|
|
2682
|
-
"name": "releaseTime",
|
|
2683
|
-
"type": "uint256"
|
|
2684
|
-
},
|
|
2685
|
-
{
|
|
2686
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2687
|
-
"name": "status",
|
|
2688
|
-
"type": "uint8"
|
|
2689
|
-
},
|
|
2690
|
-
{
|
|
2691
|
-
"components": [
|
|
2692
|
-
{
|
|
2693
|
-
"internalType": "address",
|
|
2694
|
-
"name": "requester",
|
|
2695
|
-
"type": "address"
|
|
2696
|
-
},
|
|
2697
|
-
{
|
|
2698
|
-
"internalType": "address",
|
|
2699
|
-
"name": "target",
|
|
2700
|
-
"type": "address"
|
|
2701
|
-
},
|
|
2702
|
-
{
|
|
2703
|
-
"internalType": "uint256",
|
|
2704
|
-
"name": "value",
|
|
2705
|
-
"type": "uint256"
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
"internalType": "uint256",
|
|
2709
|
-
"name": "gasLimit",
|
|
2710
|
-
"type": "uint256"
|
|
2711
|
-
},
|
|
2712
|
-
{
|
|
2713
|
-
"internalType": "bytes32",
|
|
2714
|
-
"name": "operationType",
|
|
2715
|
-
"type": "bytes32"
|
|
2716
|
-
},
|
|
2717
|
-
{
|
|
2718
|
-
"internalType": "bytes4",
|
|
2719
|
-
"name": "executionSelector",
|
|
2720
|
-
"type": "bytes4"
|
|
2721
|
-
},
|
|
2722
|
-
{
|
|
2723
|
-
"internalType": "bytes",
|
|
2724
|
-
"name": "executionParams",
|
|
2725
|
-
"type": "bytes"
|
|
2726
|
-
}
|
|
2727
|
-
],
|
|
2728
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2729
|
-
"name": "params",
|
|
2730
|
-
"type": "tuple"
|
|
2731
|
-
},
|
|
2732
|
-
{
|
|
2733
|
-
"internalType": "bytes32",
|
|
2734
|
-
"name": "message",
|
|
2735
|
-
"type": "bytes32"
|
|
2736
|
-
},
|
|
2737
|
-
{
|
|
2738
|
-
"internalType": "bytes",
|
|
2739
|
-
"name": "result",
|
|
2740
|
-
"type": "bytes"
|
|
2741
|
-
},
|
|
2742
|
-
{
|
|
2743
|
-
"components": [
|
|
2744
|
-
{
|
|
2745
|
-
"internalType": "address",
|
|
2746
|
-
"name": "recipient",
|
|
2747
|
-
"type": "address"
|
|
2748
|
-
},
|
|
2749
|
-
{
|
|
2750
|
-
"internalType": "uint256",
|
|
2751
|
-
"name": "nativeTokenAmount",
|
|
2752
|
-
"type": "uint256"
|
|
2753
|
-
},
|
|
2754
|
-
{
|
|
2755
|
-
"internalType": "address",
|
|
2756
|
-
"name": "erc20TokenAddress",
|
|
2757
|
-
"type": "address"
|
|
2758
|
-
},
|
|
2759
|
-
{
|
|
2760
|
-
"internalType": "uint256",
|
|
2761
|
-
"name": "erc20TokenAmount",
|
|
2762
|
-
"type": "uint256"
|
|
2763
|
-
}
|
|
2764
|
-
],
|
|
2765
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2766
|
-
"name": "payment",
|
|
2767
|
-
"type": "tuple"
|
|
2768
|
-
}
|
|
2769
|
-
],
|
|
2770
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
1882
|
+
"internalType": "uint256",
|
|
2771
1883
|
"name": "",
|
|
2772
|
-
"type": "
|
|
1884
|
+
"type": "uint256"
|
|
1885
|
+
}
|
|
1886
|
+
],
|
|
1887
|
+
"stateMutability": "nonpayable",
|
|
1888
|
+
"type": "function"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"inputs": [
|
|
1892
|
+
{
|
|
1893
|
+
"internalType": "uint256",
|
|
1894
|
+
"name": "txId",
|
|
1895
|
+
"type": "uint256"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
|
+
"name": "transferOwnershipDelayedApproval",
|
|
1899
|
+
"outputs": [
|
|
1900
|
+
{
|
|
1901
|
+
"internalType": "uint256",
|
|
1902
|
+
"name": "",
|
|
1903
|
+
"type": "uint256"
|
|
1904
|
+
}
|
|
1905
|
+
],
|
|
1906
|
+
"stateMutability": "nonpayable",
|
|
1907
|
+
"type": "function"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"inputs": [],
|
|
1911
|
+
"name": "transferOwnershipRequest",
|
|
1912
|
+
"outputs": [
|
|
1913
|
+
{
|
|
1914
|
+
"internalType": "uint256",
|
|
1915
|
+
"name": "txId",
|
|
1916
|
+
"type": "uint256"
|
|
2773
1917
|
}
|
|
2774
1918
|
],
|
|
2775
1919
|
"stateMutability": "nonpayable",
|
|
@@ -2907,220 +2051,23 @@
|
|
|
2907
2051
|
"name": "action",
|
|
2908
2052
|
"type": "uint8"
|
|
2909
2053
|
},
|
|
2910
|
-
{
|
|
2911
|
-
"internalType": "uint256",
|
|
2912
|
-
"name": "deadline",
|
|
2913
|
-
"type": "uint256"
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"internalType": "uint256",
|
|
2917
|
-
"name": "maxGasPrice",
|
|
2918
|
-
"type": "uint256"
|
|
2919
|
-
},
|
|
2920
|
-
{
|
|
2921
|
-
"internalType": "address",
|
|
2922
|
-
"name": "signer",
|
|
2923
|
-
"type": "address"
|
|
2924
|
-
}
|
|
2925
|
-
],
|
|
2926
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2927
|
-
"name": "params",
|
|
2928
|
-
"type": "tuple"
|
|
2929
|
-
},
|
|
2930
|
-
{
|
|
2931
|
-
"internalType": "bytes32",
|
|
2932
|
-
"name": "message",
|
|
2933
|
-
"type": "bytes32"
|
|
2934
|
-
},
|
|
2935
|
-
{
|
|
2936
|
-
"internalType": "bytes",
|
|
2937
|
-
"name": "signature",
|
|
2938
|
-
"type": "bytes"
|
|
2939
|
-
},
|
|
2940
|
-
{
|
|
2941
|
-
"internalType": "bytes",
|
|
2942
|
-
"name": "data",
|
|
2943
|
-
"type": "bytes"
|
|
2944
|
-
}
|
|
2945
|
-
],
|
|
2946
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2947
|
-
"name": "metaTx",
|
|
2948
|
-
"type": "tuple"
|
|
2949
|
-
}
|
|
2950
|
-
],
|
|
2951
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2952
|
-
"outputs": [
|
|
2953
|
-
{
|
|
2954
|
-
"components": [
|
|
2955
|
-
{
|
|
2956
|
-
"internalType": "uint256",
|
|
2957
|
-
"name": "txId",
|
|
2958
|
-
"type": "uint256"
|
|
2959
|
-
},
|
|
2960
|
-
{
|
|
2961
|
-
"internalType": "uint256",
|
|
2962
|
-
"name": "releaseTime",
|
|
2963
|
-
"type": "uint256"
|
|
2964
|
-
},
|
|
2965
|
-
{
|
|
2966
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2967
|
-
"name": "status",
|
|
2968
|
-
"type": "uint8"
|
|
2969
|
-
},
|
|
2970
|
-
{
|
|
2971
|
-
"components": [
|
|
2972
|
-
{
|
|
2973
|
-
"internalType": "address",
|
|
2974
|
-
"name": "requester",
|
|
2975
|
-
"type": "address"
|
|
2976
|
-
},
|
|
2977
|
-
{
|
|
2978
|
-
"internalType": "address",
|
|
2979
|
-
"name": "target",
|
|
2980
|
-
"type": "address"
|
|
2981
|
-
},
|
|
2982
|
-
{
|
|
2983
|
-
"internalType": "uint256",
|
|
2984
|
-
"name": "value",
|
|
2985
|
-
"type": "uint256"
|
|
2986
|
-
},
|
|
2987
|
-
{
|
|
2988
|
-
"internalType": "uint256",
|
|
2989
|
-
"name": "gasLimit",
|
|
2990
|
-
"type": "uint256"
|
|
2991
|
-
},
|
|
2992
|
-
{
|
|
2993
|
-
"internalType": "bytes32",
|
|
2994
|
-
"name": "operationType",
|
|
2995
|
-
"type": "bytes32"
|
|
2996
|
-
},
|
|
2997
|
-
{
|
|
2998
|
-
"internalType": "bytes4",
|
|
2999
|
-
"name": "executionSelector",
|
|
3000
|
-
"type": "bytes4"
|
|
3001
|
-
},
|
|
3002
|
-
{
|
|
3003
|
-
"internalType": "bytes",
|
|
3004
|
-
"name": "executionParams",
|
|
3005
|
-
"type": "bytes"
|
|
3006
|
-
}
|
|
3007
|
-
],
|
|
3008
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3009
|
-
"name": "params",
|
|
3010
|
-
"type": "tuple"
|
|
3011
|
-
},
|
|
3012
|
-
{
|
|
3013
|
-
"internalType": "bytes32",
|
|
3014
|
-
"name": "message",
|
|
3015
|
-
"type": "bytes32"
|
|
3016
|
-
},
|
|
3017
|
-
{
|
|
3018
|
-
"internalType": "bytes",
|
|
3019
|
-
"name": "result",
|
|
3020
|
-
"type": "bytes"
|
|
3021
|
-
},
|
|
3022
|
-
{
|
|
3023
|
-
"components": [
|
|
3024
|
-
{
|
|
3025
|
-
"internalType": "address",
|
|
3026
|
-
"name": "recipient",
|
|
3027
|
-
"type": "address"
|
|
3028
|
-
},
|
|
3029
|
-
{
|
|
3030
|
-
"internalType": "uint256",
|
|
3031
|
-
"name": "nativeTokenAmount",
|
|
3032
|
-
"type": "uint256"
|
|
3033
|
-
},
|
|
3034
|
-
{
|
|
3035
|
-
"internalType": "address",
|
|
3036
|
-
"name": "erc20TokenAddress",
|
|
3037
|
-
"type": "address"
|
|
3038
|
-
},
|
|
3039
|
-
{
|
|
3040
|
-
"internalType": "uint256",
|
|
3041
|
-
"name": "erc20TokenAmount",
|
|
3042
|
-
"type": "uint256"
|
|
3043
|
-
}
|
|
3044
|
-
],
|
|
3045
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3046
|
-
"name": "payment",
|
|
3047
|
-
"type": "tuple"
|
|
3048
|
-
}
|
|
3049
|
-
],
|
|
3050
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3051
|
-
"name": "",
|
|
3052
|
-
"type": "tuple"
|
|
3053
|
-
}
|
|
3054
|
-
],
|
|
3055
|
-
"stateMutability": "nonpayable",
|
|
3056
|
-
"type": "function"
|
|
3057
|
-
},
|
|
3058
|
-
{
|
|
3059
|
-
"inputs": [
|
|
3060
|
-
{
|
|
3061
|
-
"internalType": "uint256",
|
|
3062
|
-
"name": "txId",
|
|
3063
|
-
"type": "uint256"
|
|
3064
|
-
}
|
|
3065
|
-
],
|
|
3066
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
3067
|
-
"outputs": [
|
|
3068
|
-
{
|
|
3069
|
-
"components": [
|
|
3070
|
-
{
|
|
3071
|
-
"internalType": "uint256",
|
|
3072
|
-
"name": "txId",
|
|
3073
|
-
"type": "uint256"
|
|
3074
|
-
},
|
|
3075
|
-
{
|
|
3076
|
-
"internalType": "uint256",
|
|
3077
|
-
"name": "releaseTime",
|
|
3078
|
-
"type": "uint256"
|
|
3079
|
-
},
|
|
3080
|
-
{
|
|
3081
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3082
|
-
"name": "status",
|
|
3083
|
-
"type": "uint8"
|
|
3084
|
-
},
|
|
3085
|
-
{
|
|
3086
|
-
"components": [
|
|
3087
|
-
{
|
|
3088
|
-
"internalType": "address",
|
|
3089
|
-
"name": "requester",
|
|
3090
|
-
"type": "address"
|
|
3091
|
-
},
|
|
3092
|
-
{
|
|
3093
|
-
"internalType": "address",
|
|
3094
|
-
"name": "target",
|
|
3095
|
-
"type": "address"
|
|
3096
|
-
},
|
|
3097
|
-
{
|
|
3098
|
-
"internalType": "uint256",
|
|
3099
|
-
"name": "value",
|
|
3100
|
-
"type": "uint256"
|
|
3101
|
-
},
|
|
3102
|
-
{
|
|
3103
|
-
"internalType": "uint256",
|
|
3104
|
-
"name": "gasLimit",
|
|
3105
|
-
"type": "uint256"
|
|
3106
|
-
},
|
|
3107
|
-
{
|
|
3108
|
-
"internalType": "bytes32",
|
|
3109
|
-
"name": "operationType",
|
|
3110
|
-
"type": "bytes32"
|
|
2054
|
+
{
|
|
2055
|
+
"internalType": "uint256",
|
|
2056
|
+
"name": "deadline",
|
|
2057
|
+
"type": "uint256"
|
|
3111
2058
|
},
|
|
3112
2059
|
{
|
|
3113
|
-
"internalType": "
|
|
3114
|
-
"name": "
|
|
3115
|
-
"type": "
|
|
2060
|
+
"internalType": "uint256",
|
|
2061
|
+
"name": "maxGasPrice",
|
|
2062
|
+
"type": "uint256"
|
|
3116
2063
|
},
|
|
3117
2064
|
{
|
|
3118
|
-
"internalType": "
|
|
3119
|
-
"name": "
|
|
3120
|
-
"type": "
|
|
2065
|
+
"internalType": "address",
|
|
2066
|
+
"name": "signer",
|
|
2067
|
+
"type": "address"
|
|
3121
2068
|
}
|
|
3122
2069
|
],
|
|
3123
|
-
"internalType": "struct EngineBlox.
|
|
2070
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3124
2071
|
"name": "params",
|
|
3125
2072
|
"type": "tuple"
|
|
3126
2073
|
},
|
|
@@ -3131,162 +2078,274 @@
|
|
|
3131
2078
|
},
|
|
3132
2079
|
{
|
|
3133
2080
|
"internalType": "bytes",
|
|
3134
|
-
"name": "
|
|
2081
|
+
"name": "signature",
|
|
3135
2082
|
"type": "bytes"
|
|
3136
2083
|
},
|
|
3137
2084
|
{
|
|
3138
|
-
"
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
"name": "recipient",
|
|
3142
|
-
"type": "address"
|
|
3143
|
-
},
|
|
3144
|
-
{
|
|
3145
|
-
"internalType": "uint256",
|
|
3146
|
-
"name": "nativeTokenAmount",
|
|
3147
|
-
"type": "uint256"
|
|
3148
|
-
},
|
|
3149
|
-
{
|
|
3150
|
-
"internalType": "address",
|
|
3151
|
-
"name": "erc20TokenAddress",
|
|
3152
|
-
"type": "address"
|
|
3153
|
-
},
|
|
3154
|
-
{
|
|
3155
|
-
"internalType": "uint256",
|
|
3156
|
-
"name": "erc20TokenAmount",
|
|
3157
|
-
"type": "uint256"
|
|
3158
|
-
}
|
|
3159
|
-
],
|
|
3160
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3161
|
-
"name": "payment",
|
|
3162
|
-
"type": "tuple"
|
|
2085
|
+
"internalType": "bytes",
|
|
2086
|
+
"name": "data",
|
|
2087
|
+
"type": "bytes"
|
|
3163
2088
|
}
|
|
3164
2089
|
],
|
|
3165
|
-
"internalType": "struct EngineBlox.
|
|
3166
|
-
"name": "",
|
|
2090
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2091
|
+
"name": "metaTx",
|
|
3167
2092
|
"type": "tuple"
|
|
3168
2093
|
}
|
|
3169
2094
|
],
|
|
2095
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2096
|
+
"outputs": [
|
|
2097
|
+
{
|
|
2098
|
+
"internalType": "uint256",
|
|
2099
|
+
"name": "",
|
|
2100
|
+
"type": "uint256"
|
|
2101
|
+
}
|
|
2102
|
+
],
|
|
3170
2103
|
"stateMutability": "nonpayable",
|
|
3171
2104
|
"type": "function"
|
|
3172
2105
|
},
|
|
3173
2106
|
{
|
|
3174
2107
|
"inputs": [
|
|
3175
|
-
{
|
|
3176
|
-
"internalType": "address",
|
|
3177
|
-
"name": "newBroadcaster",
|
|
3178
|
-
"type": "address"
|
|
3179
|
-
},
|
|
3180
2108
|
{
|
|
3181
2109
|
"internalType": "uint256",
|
|
3182
|
-
"name": "
|
|
2110
|
+
"name": "txId",
|
|
3183
2111
|
"type": "uint256"
|
|
3184
2112
|
}
|
|
3185
2113
|
],
|
|
3186
|
-
"name": "
|
|
2114
|
+
"name": "updateBroadcasterCancellation",
|
|
3187
2115
|
"outputs": [
|
|
2116
|
+
{
|
|
2117
|
+
"internalType": "uint256",
|
|
2118
|
+
"name": "",
|
|
2119
|
+
"type": "uint256"
|
|
2120
|
+
}
|
|
2121
|
+
],
|
|
2122
|
+
"stateMutability": "nonpayable",
|
|
2123
|
+
"type": "function"
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"inputs": [
|
|
3188
2127
|
{
|
|
3189
2128
|
"components": [
|
|
3190
|
-
{
|
|
3191
|
-
"internalType": "uint256",
|
|
3192
|
-
"name": "txId",
|
|
3193
|
-
"type": "uint256"
|
|
3194
|
-
},
|
|
3195
|
-
{
|
|
3196
|
-
"internalType": "uint256",
|
|
3197
|
-
"name": "releaseTime",
|
|
3198
|
-
"type": "uint256"
|
|
3199
|
-
},
|
|
3200
|
-
{
|
|
3201
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3202
|
-
"name": "status",
|
|
3203
|
-
"type": "uint8"
|
|
3204
|
-
},
|
|
3205
2129
|
{
|
|
3206
2130
|
"components": [
|
|
3207
|
-
{
|
|
3208
|
-
"internalType": "address",
|
|
3209
|
-
"name": "requester",
|
|
3210
|
-
"type": "address"
|
|
3211
|
-
},
|
|
3212
|
-
{
|
|
3213
|
-
"internalType": "address",
|
|
3214
|
-
"name": "target",
|
|
3215
|
-
"type": "address"
|
|
3216
|
-
},
|
|
3217
2131
|
{
|
|
3218
2132
|
"internalType": "uint256",
|
|
3219
|
-
"name": "
|
|
2133
|
+
"name": "txId",
|
|
3220
2134
|
"type": "uint256"
|
|
3221
2135
|
},
|
|
3222
2136
|
{
|
|
3223
2137
|
"internalType": "uint256",
|
|
3224
|
-
"name": "
|
|
2138
|
+
"name": "releaseTime",
|
|
3225
2139
|
"type": "uint256"
|
|
3226
2140
|
},
|
|
3227
2141
|
{
|
|
3228
|
-
"internalType": "
|
|
3229
|
-
"name": "
|
|
3230
|
-
"type": "
|
|
2142
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2143
|
+
"name": "status",
|
|
2144
|
+
"type": "uint8"
|
|
3231
2145
|
},
|
|
3232
2146
|
{
|
|
3233
|
-
"
|
|
3234
|
-
|
|
3235
|
-
|
|
2147
|
+
"components": [
|
|
2148
|
+
{
|
|
2149
|
+
"internalType": "address",
|
|
2150
|
+
"name": "requester",
|
|
2151
|
+
"type": "address"
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
"internalType": "address",
|
|
2155
|
+
"name": "target",
|
|
2156
|
+
"type": "address"
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"internalType": "uint256",
|
|
2160
|
+
"name": "value",
|
|
2161
|
+
"type": "uint256"
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"internalType": "uint256",
|
|
2165
|
+
"name": "gasLimit",
|
|
2166
|
+
"type": "uint256"
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
"internalType": "bytes32",
|
|
2170
|
+
"name": "operationType",
|
|
2171
|
+
"type": "bytes32"
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"internalType": "bytes4",
|
|
2175
|
+
"name": "executionSelector",
|
|
2176
|
+
"type": "bytes4"
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"internalType": "bytes",
|
|
2180
|
+
"name": "executionParams",
|
|
2181
|
+
"type": "bytes"
|
|
2182
|
+
}
|
|
2183
|
+
],
|
|
2184
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2185
|
+
"name": "params",
|
|
2186
|
+
"type": "tuple"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"internalType": "bytes32",
|
|
2190
|
+
"name": "message",
|
|
2191
|
+
"type": "bytes32"
|
|
3236
2192
|
},
|
|
3237
2193
|
{
|
|
3238
2194
|
"internalType": "bytes",
|
|
3239
|
-
"name": "
|
|
2195
|
+
"name": "result",
|
|
3240
2196
|
"type": "bytes"
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"components": [
|
|
2200
|
+
{
|
|
2201
|
+
"internalType": "address",
|
|
2202
|
+
"name": "recipient",
|
|
2203
|
+
"type": "address"
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"internalType": "uint256",
|
|
2207
|
+
"name": "nativeTokenAmount",
|
|
2208
|
+
"type": "uint256"
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"internalType": "address",
|
|
2212
|
+
"name": "erc20TokenAddress",
|
|
2213
|
+
"type": "address"
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"internalType": "uint256",
|
|
2217
|
+
"name": "erc20TokenAmount",
|
|
2218
|
+
"type": "uint256"
|
|
2219
|
+
}
|
|
2220
|
+
],
|
|
2221
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2222
|
+
"name": "payment",
|
|
2223
|
+
"type": "tuple"
|
|
3241
2224
|
}
|
|
3242
2225
|
],
|
|
3243
|
-
"internalType": "struct EngineBlox.
|
|
3244
|
-
"name": "
|
|
2226
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2227
|
+
"name": "txRecord",
|
|
3245
2228
|
"type": "tuple"
|
|
3246
2229
|
},
|
|
3247
|
-
{
|
|
3248
|
-
"internalType": "bytes32",
|
|
3249
|
-
"name": "message",
|
|
3250
|
-
"type": "bytes32"
|
|
3251
|
-
},
|
|
3252
|
-
{
|
|
3253
|
-
"internalType": "bytes",
|
|
3254
|
-
"name": "result",
|
|
3255
|
-
"type": "bytes"
|
|
3256
|
-
},
|
|
3257
2230
|
{
|
|
3258
2231
|
"components": [
|
|
3259
2232
|
{
|
|
3260
|
-
"internalType": "
|
|
3261
|
-
"name": "
|
|
3262
|
-
"type": "
|
|
2233
|
+
"internalType": "uint256",
|
|
2234
|
+
"name": "chainId",
|
|
2235
|
+
"type": "uint256"
|
|
3263
2236
|
},
|
|
3264
2237
|
{
|
|
3265
2238
|
"internalType": "uint256",
|
|
3266
|
-
"name": "
|
|
2239
|
+
"name": "nonce",
|
|
3267
2240
|
"type": "uint256"
|
|
3268
2241
|
},
|
|
3269
2242
|
{
|
|
3270
2243
|
"internalType": "address",
|
|
3271
|
-
"name": "
|
|
2244
|
+
"name": "handlerContract",
|
|
3272
2245
|
"type": "address"
|
|
3273
2246
|
},
|
|
2247
|
+
{
|
|
2248
|
+
"internalType": "bytes4",
|
|
2249
|
+
"name": "handlerSelector",
|
|
2250
|
+
"type": "bytes4"
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2254
|
+
"name": "action",
|
|
2255
|
+
"type": "uint8"
|
|
2256
|
+
},
|
|
3274
2257
|
{
|
|
3275
2258
|
"internalType": "uint256",
|
|
3276
|
-
"name": "
|
|
2259
|
+
"name": "deadline",
|
|
2260
|
+
"type": "uint256"
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"internalType": "uint256",
|
|
2264
|
+
"name": "maxGasPrice",
|
|
3277
2265
|
"type": "uint256"
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
"internalType": "address",
|
|
2269
|
+
"name": "signer",
|
|
2270
|
+
"type": "address"
|
|
3278
2271
|
}
|
|
3279
2272
|
],
|
|
3280
|
-
"internalType": "struct EngineBlox.
|
|
3281
|
-
"name": "
|
|
2273
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2274
|
+
"name": "params",
|
|
3282
2275
|
"type": "tuple"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"internalType": "bytes32",
|
|
2279
|
+
"name": "message",
|
|
2280
|
+
"type": "bytes32"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"internalType": "bytes",
|
|
2284
|
+
"name": "signature",
|
|
2285
|
+
"type": "bytes"
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
"internalType": "bytes",
|
|
2289
|
+
"name": "data",
|
|
2290
|
+
"type": "bytes"
|
|
3283
2291
|
}
|
|
3284
2292
|
],
|
|
3285
|
-
"internalType": "struct EngineBlox.
|
|
3286
|
-
"name": "",
|
|
2293
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2294
|
+
"name": "metaTx",
|
|
3287
2295
|
"type": "tuple"
|
|
3288
2296
|
}
|
|
3289
2297
|
],
|
|
2298
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2299
|
+
"outputs": [
|
|
2300
|
+
{
|
|
2301
|
+
"internalType": "uint256",
|
|
2302
|
+
"name": "",
|
|
2303
|
+
"type": "uint256"
|
|
2304
|
+
}
|
|
2305
|
+
],
|
|
2306
|
+
"stateMutability": "nonpayable",
|
|
2307
|
+
"type": "function"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"inputs": [
|
|
2311
|
+
{
|
|
2312
|
+
"internalType": "uint256",
|
|
2313
|
+
"name": "txId",
|
|
2314
|
+
"type": "uint256"
|
|
2315
|
+
}
|
|
2316
|
+
],
|
|
2317
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
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": "address",
|
|
2332
|
+
"name": "newBroadcaster",
|
|
2333
|
+
"type": "address"
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"internalType": "uint256",
|
|
2337
|
+
"name": "location",
|
|
2338
|
+
"type": "uint256"
|
|
2339
|
+
}
|
|
2340
|
+
],
|
|
2341
|
+
"name": "updateBroadcasterRequest",
|
|
2342
|
+
"outputs": [
|
|
2343
|
+
{
|
|
2344
|
+
"internalType": "uint256",
|
|
2345
|
+
"name": "txId",
|
|
2346
|
+
"type": "uint256"
|
|
2347
|
+
}
|
|
2348
|
+
],
|
|
3290
2349
|
"stateMutability": "nonpayable",
|
|
3291
2350
|
"type": "function"
|
|
3292
2351
|
},
|
|
@@ -3466,105 +2525,9 @@
|
|
|
3466
2525
|
"name": "updateRecoveryRequestAndApprove",
|
|
3467
2526
|
"outputs": [
|
|
3468
2527
|
{
|
|
3469
|
-
"
|
|
3470
|
-
{
|
|
3471
|
-
"internalType": "uint256",
|
|
3472
|
-
"name": "txId",
|
|
3473
|
-
"type": "uint256"
|
|
3474
|
-
},
|
|
3475
|
-
{
|
|
3476
|
-
"internalType": "uint256",
|
|
3477
|
-
"name": "releaseTime",
|
|
3478
|
-
"type": "uint256"
|
|
3479
|
-
},
|
|
3480
|
-
{
|
|
3481
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3482
|
-
"name": "status",
|
|
3483
|
-
"type": "uint8"
|
|
3484
|
-
},
|
|
3485
|
-
{
|
|
3486
|
-
"components": [
|
|
3487
|
-
{
|
|
3488
|
-
"internalType": "address",
|
|
3489
|
-
"name": "requester",
|
|
3490
|
-
"type": "address"
|
|
3491
|
-
},
|
|
3492
|
-
{
|
|
3493
|
-
"internalType": "address",
|
|
3494
|
-
"name": "target",
|
|
3495
|
-
"type": "address"
|
|
3496
|
-
},
|
|
3497
|
-
{
|
|
3498
|
-
"internalType": "uint256",
|
|
3499
|
-
"name": "value",
|
|
3500
|
-
"type": "uint256"
|
|
3501
|
-
},
|
|
3502
|
-
{
|
|
3503
|
-
"internalType": "uint256",
|
|
3504
|
-
"name": "gasLimit",
|
|
3505
|
-
"type": "uint256"
|
|
3506
|
-
},
|
|
3507
|
-
{
|
|
3508
|
-
"internalType": "bytes32",
|
|
3509
|
-
"name": "operationType",
|
|
3510
|
-
"type": "bytes32"
|
|
3511
|
-
},
|
|
3512
|
-
{
|
|
3513
|
-
"internalType": "bytes4",
|
|
3514
|
-
"name": "executionSelector",
|
|
3515
|
-
"type": "bytes4"
|
|
3516
|
-
},
|
|
3517
|
-
{
|
|
3518
|
-
"internalType": "bytes",
|
|
3519
|
-
"name": "executionParams",
|
|
3520
|
-
"type": "bytes"
|
|
3521
|
-
}
|
|
3522
|
-
],
|
|
3523
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3524
|
-
"name": "params",
|
|
3525
|
-
"type": "tuple"
|
|
3526
|
-
},
|
|
3527
|
-
{
|
|
3528
|
-
"internalType": "bytes32",
|
|
3529
|
-
"name": "message",
|
|
3530
|
-
"type": "bytes32"
|
|
3531
|
-
},
|
|
3532
|
-
{
|
|
3533
|
-
"internalType": "bytes",
|
|
3534
|
-
"name": "result",
|
|
3535
|
-
"type": "bytes"
|
|
3536
|
-
},
|
|
3537
|
-
{
|
|
3538
|
-
"components": [
|
|
3539
|
-
{
|
|
3540
|
-
"internalType": "address",
|
|
3541
|
-
"name": "recipient",
|
|
3542
|
-
"type": "address"
|
|
3543
|
-
},
|
|
3544
|
-
{
|
|
3545
|
-
"internalType": "uint256",
|
|
3546
|
-
"name": "nativeTokenAmount",
|
|
3547
|
-
"type": "uint256"
|
|
3548
|
-
},
|
|
3549
|
-
{
|
|
3550
|
-
"internalType": "address",
|
|
3551
|
-
"name": "erc20TokenAddress",
|
|
3552
|
-
"type": "address"
|
|
3553
|
-
},
|
|
3554
|
-
{
|
|
3555
|
-
"internalType": "uint256",
|
|
3556
|
-
"name": "erc20TokenAmount",
|
|
3557
|
-
"type": "uint256"
|
|
3558
|
-
}
|
|
3559
|
-
],
|
|
3560
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3561
|
-
"name": "payment",
|
|
3562
|
-
"type": "tuple"
|
|
3563
|
-
}
|
|
3564
|
-
],
|
|
3565
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2528
|
+
"internalType": "uint256",
|
|
3566
2529
|
"name": "",
|
|
3567
|
-
"type": "
|
|
2530
|
+
"type": "uint256"
|
|
3568
2531
|
}
|
|
3569
2532
|
],
|
|
3570
2533
|
"stateMutability": "nonpayable",
|
|
@@ -3746,105 +2709,9 @@
|
|
|
3746
2709
|
"name": "updateTimeLockRequestAndApprove",
|
|
3747
2710
|
"outputs": [
|
|
3748
2711
|
{
|
|
3749
|
-
"
|
|
3750
|
-
{
|
|
3751
|
-
"internalType": "uint256",
|
|
3752
|
-
"name": "txId",
|
|
3753
|
-
"type": "uint256"
|
|
3754
|
-
},
|
|
3755
|
-
{
|
|
3756
|
-
"internalType": "uint256",
|
|
3757
|
-
"name": "releaseTime",
|
|
3758
|
-
"type": "uint256"
|
|
3759
|
-
},
|
|
3760
|
-
{
|
|
3761
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3762
|
-
"name": "status",
|
|
3763
|
-
"type": "uint8"
|
|
3764
|
-
},
|
|
3765
|
-
{
|
|
3766
|
-
"components": [
|
|
3767
|
-
{
|
|
3768
|
-
"internalType": "address",
|
|
3769
|
-
"name": "requester",
|
|
3770
|
-
"type": "address"
|
|
3771
|
-
},
|
|
3772
|
-
{
|
|
3773
|
-
"internalType": "address",
|
|
3774
|
-
"name": "target",
|
|
3775
|
-
"type": "address"
|
|
3776
|
-
},
|
|
3777
|
-
{
|
|
3778
|
-
"internalType": "uint256",
|
|
3779
|
-
"name": "value",
|
|
3780
|
-
"type": "uint256"
|
|
3781
|
-
},
|
|
3782
|
-
{
|
|
3783
|
-
"internalType": "uint256",
|
|
3784
|
-
"name": "gasLimit",
|
|
3785
|
-
"type": "uint256"
|
|
3786
|
-
},
|
|
3787
|
-
{
|
|
3788
|
-
"internalType": "bytes32",
|
|
3789
|
-
"name": "operationType",
|
|
3790
|
-
"type": "bytes32"
|
|
3791
|
-
},
|
|
3792
|
-
{
|
|
3793
|
-
"internalType": "bytes4",
|
|
3794
|
-
"name": "executionSelector",
|
|
3795
|
-
"type": "bytes4"
|
|
3796
|
-
},
|
|
3797
|
-
{
|
|
3798
|
-
"internalType": "bytes",
|
|
3799
|
-
"name": "executionParams",
|
|
3800
|
-
"type": "bytes"
|
|
3801
|
-
}
|
|
3802
|
-
],
|
|
3803
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3804
|
-
"name": "params",
|
|
3805
|
-
"type": "tuple"
|
|
3806
|
-
},
|
|
3807
|
-
{
|
|
3808
|
-
"internalType": "bytes32",
|
|
3809
|
-
"name": "message",
|
|
3810
|
-
"type": "bytes32"
|
|
3811
|
-
},
|
|
3812
|
-
{
|
|
3813
|
-
"internalType": "bytes",
|
|
3814
|
-
"name": "result",
|
|
3815
|
-
"type": "bytes"
|
|
3816
|
-
},
|
|
3817
|
-
{
|
|
3818
|
-
"components": [
|
|
3819
|
-
{
|
|
3820
|
-
"internalType": "address",
|
|
3821
|
-
"name": "recipient",
|
|
3822
|
-
"type": "address"
|
|
3823
|
-
},
|
|
3824
|
-
{
|
|
3825
|
-
"internalType": "uint256",
|
|
3826
|
-
"name": "nativeTokenAmount",
|
|
3827
|
-
"type": "uint256"
|
|
3828
|
-
},
|
|
3829
|
-
{
|
|
3830
|
-
"internalType": "address",
|
|
3831
|
-
"name": "erc20TokenAddress",
|
|
3832
|
-
"type": "address"
|
|
3833
|
-
},
|
|
3834
|
-
{
|
|
3835
|
-
"internalType": "uint256",
|
|
3836
|
-
"name": "erc20TokenAmount",
|
|
3837
|
-
"type": "uint256"
|
|
3838
|
-
}
|
|
3839
|
-
],
|
|
3840
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3841
|
-
"name": "payment",
|
|
3842
|
-
"type": "tuple"
|
|
3843
|
-
}
|
|
3844
|
-
],
|
|
3845
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2712
|
+
"internalType": "uint256",
|
|
3846
2713
|
"name": "",
|
|
3847
|
-
"type": "
|
|
2714
|
+
"type": "uint256"
|
|
3848
2715
|
}
|
|
3849
2716
|
],
|
|
3850
2717
|
"stateMutability": "nonpayable",
|