@safe-global/safe-deployments 1.36.0 → 1.37.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/README.md +56 -28
  2. package/dist/accessors.js +1 -3
  3. package/dist/assets/v1.0.0/gnosis_safe.json +477 -103
  4. package/dist/assets/v1.0.0/proxy_factory.json +9 -6
  5. package/dist/assets/v1.1.1/default_callback_handler.json +12 -9
  6. package/dist/assets/v1.1.1/gnosis_safe.json +12 -9
  7. package/dist/assets/v1.1.1/multi_send.json +12 -9
  8. package/dist/assets/v1.1.1/proxy_factory.json +12 -9
  9. package/dist/assets/v1.2.0/gnosis_safe.json +12 -9
  10. package/dist/assets/v1.3.0/compatibility_fallback_handler.json +247 -222
  11. package/dist/assets/v1.3.0/create_call.json +247 -222
  12. package/dist/assets/v1.3.0/gnosis_safe.json +247 -222
  13. package/dist/assets/v1.3.0/gnosis_safe_l2.json +247 -222
  14. package/dist/assets/v1.3.0/multi_send.json +247 -222
  15. package/dist/assets/v1.3.0/multi_send_call_only.json +247 -222
  16. package/dist/assets/v1.3.0/proxy_factory.json +247 -222
  17. package/dist/assets/v1.3.0/sign_message_lib.json +248 -223
  18. package/dist/assets/v1.3.0/simulate_tx_accessor.json +247 -222
  19. package/dist/assets/v1.4.1/compatibility_fallback_handler.json +114 -41
  20. package/dist/assets/v1.4.1/create_call.json +114 -41
  21. package/dist/assets/v1.4.1/multi_send.json +114 -41
  22. package/dist/assets/v1.4.1/multi_send_call_only.json +114 -41
  23. package/dist/assets/v1.4.1/safe.json +114 -41
  24. package/dist/assets/v1.4.1/safe_l2.json +114 -41
  25. package/dist/assets/v1.4.1/safe_proxy_factory.json +115 -42
  26. package/dist/assets/v1.4.1/sign_message_lib.json +115 -42
  27. package/dist/assets/v1.4.1/simulate_tx_accessor.json +114 -41
  28. package/dist/factories.js +4 -1
  29. package/dist/handler.js +6 -5
  30. package/dist/libs.js +4 -12
  31. package/dist/safes.d.ts +3 -3
  32. package/dist/safes.js +6 -4
  33. package/dist/types.d.ts +28 -2
  34. package/dist/types.js +11 -0
  35. package/dist/utils.d.ts +9 -2
  36. package/dist/utils.js +34 -5
  37. package/package.json +15 -17
  38. package/src/__tests__/assets/v1/v1.0.0/gnosis_safe.json +794 -0
  39. package/src/__tests__/assets/v1/v1.0.0/proxy_factory.json +109 -0
  40. package/src/__tests__/assets/v1/v1.1.1/create_and_add_modules.json +57 -0
  41. package/src/__tests__/assets/v1/v1.1.1/create_call.json +88 -0
  42. package/src/__tests__/assets/v1/v1.1.1/default_callback_handler.json +210 -0
  43. package/src/__tests__/assets/v1/v1.1.1/gnosis_safe.json +999 -0
  44. package/src/__tests__/assets/v1/v1.1.1/multi_send.json +43 -0
  45. package/src/__tests__/assets/v1/v1.1.1/proxy_factory.json +189 -0
  46. package/src/__tests__/assets/v1/v1.2.0/gnosis_safe.json +1020 -0
  47. package/src/__tests__/assets/v1/v1.3.0/compatibility_fallback_handler.json +580 -0
  48. package/src/__tests__/assets/v1/v1.3.0/create_call.json +323 -0
  49. package/src/__tests__/assets/v1/v1.3.0/gnosis_safe.json +1288 -0
  50. package/src/__tests__/assets/v1/v1.3.0/gnosis_safe_l2.json +1393 -0
  51. package/src/__tests__/assets/v1/v1.3.0/multi_send.json +275 -0
  52. package/src/__tests__/assets/v1/v1.3.0/multi_send_call_only.json +270 -0
  53. package/src/__tests__/assets/v1/v1.3.0/proxy_factory.json +418 -0
  54. package/src/__tests__/assets/v1/v1.3.0/sign_message_lib.json +302 -0
  55. package/src/__tests__/assets/v1/v1.3.0/simulate_tx_accessor.json +306 -0
  56. package/src/__tests__/assets/v1/v1.4.1/compatibility_fallback_handler.json +445 -0
  57. package/src/__tests__/assets/v1/v1.4.1/create_call.json +190 -0
  58. package/src/__tests__/assets/v1/v1.4.1/multi_send.json +142 -0
  59. package/src/__tests__/assets/v1/v1.4.1/multi_send_call_only.json +137 -0
  60. package/src/__tests__/assets/v1/v1.4.1/safe.json +1121 -0
  61. package/src/__tests__/assets/v1/v1.4.1/safe_l2.json +1226 -0
  62. package/src/__tests__/assets/v1/v1.4.1/safe_proxy_factory.json +261 -0
  63. package/src/__tests__/assets/v1/v1.4.1/sign_message_lib.json +169 -0
  64. package/src/__tests__/assets/v1/v1.4.1/simulate_tx_accessor.json +173 -0
  65. package/src/__tests__/assets.test.ts +101 -38
  66. package/src/__tests__/factories.test.ts +3 -3
  67. package/src/__tests__/handler.test.ts +5 -5
  68. package/src/__tests__/libs.test.ts +9 -9
  69. package/src/__tests__/safes.test.ts +9 -12
  70. package/src/__tests__/utils.test.ts +271 -0
  71. package/src/accessors.ts +5 -7
  72. package/src/assets/v1.0.0/gnosis_safe.json +477 -103
  73. package/src/assets/v1.0.0/proxy_factory.json +9 -6
  74. package/src/assets/v1.1.1/create_and_add_modules.json +17 -10
  75. package/src/assets/v1.1.1/create_call.json +12 -9
  76. package/src/assets/v1.1.1/default_callback_handler.json +12 -9
  77. package/src/assets/v1.1.1/gnosis_safe.json +12 -9
  78. package/src/assets/v1.1.1/multi_send.json +12 -9
  79. package/src/assets/v1.1.1/proxy_factory.json +12 -9
  80. package/src/assets/v1.2.0/gnosis_safe.json +12 -9
  81. package/src/assets/v1.3.0/compatibility_fallback_handler.json +247 -222
  82. package/src/assets/v1.3.0/create_call.json +247 -222
  83. package/src/assets/v1.3.0/gnosis_safe.json +247 -222
  84. package/src/assets/v1.3.0/gnosis_safe_l2.json +247 -222
  85. package/src/assets/v1.3.0/multi_send.json +247 -222
  86. package/src/assets/v1.3.0/multi_send_call_only.json +247 -222
  87. package/src/assets/v1.3.0/proxy_factory.json +247 -222
  88. package/src/assets/v1.3.0/sign_message_lib.json +248 -223
  89. package/src/assets/v1.3.0/simulate_tx_accessor.json +247 -222
  90. package/src/assets/v1.4.1/compatibility_fallback_handler.json +115 -42
  91. package/src/assets/v1.4.1/create_call.json +115 -42
  92. package/src/assets/v1.4.1/multi_send.json +115 -42
  93. package/src/assets/v1.4.1/multi_send_call_only.json +115 -42
  94. package/src/assets/v1.4.1/safe.json +115 -42
  95. package/src/assets/v1.4.1/safe_l2.json +115 -42
  96. package/src/assets/v1.4.1/safe_proxy_factory.json +116 -43
  97. package/src/assets/v1.4.1/sign_message_lib.json +116 -43
  98. package/src/assets/v1.4.1/simulate_tx_accessor.json +115 -42
  99. package/src/factories.ts +14 -11
  100. package/src/handler.ts +24 -21
  101. package/src/index.ts +6 -6
  102. package/src/libs.ts +23 -31
  103. package/src/safes.ts +21 -19
  104. package/src/types.ts +84 -10
  105. package/src/utils.ts +50 -12
  106. package/src/__tests__/utilts.test.ts +0 -385
@@ -0,0 +1,1226 @@
1
+ {
2
+ "defaultAddress": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
3
+ "released": true,
4
+ "contractName": "SafeL2",
5
+ "version": "1.4.1",
6
+ "codeHash": "0xb1f926978a0f44a2c0ec8fe822418ae969bd8c3f18d61e5103100339894f81ff",
7
+ "addresses": {
8
+ "canonical": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762"
9
+ },
10
+ "networkAddresses": {
11
+ "1": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
12
+ "5": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
13
+ "10": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
14
+ "25": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
15
+ "31": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
16
+ "40": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
17
+ "41": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
18
+ "56": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
19
+ "71": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
20
+ "97": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
21
+ "100": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
22
+ "137": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
23
+ "155": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
24
+ "169": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
25
+ "250": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
26
+ "252": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
27
+ "255": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
28
+ "336": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
29
+ "338": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
30
+ "369": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
31
+ "530": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
32
+ "690": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
33
+ "919": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
34
+ "1030": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
35
+ "1101": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
36
+ "1111": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
37
+ "1112": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
38
+ "1135": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
39
+ "1284": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
40
+ "1285": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
41
+ "1287": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
42
+ "1329": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
43
+ "1337": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
44
+ "1442": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
45
+ "1625": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
46
+ "1729": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
47
+ "2000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
48
+ "2039": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
49
+ "2358": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
50
+ "2810": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
51
+ "3636": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
52
+ "3776": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
53
+ "4002": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
54
+ "4157": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
55
+ "4202": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
56
+ "4337": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
57
+ "4653": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
58
+ "5000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
59
+ "5003": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
60
+ "6001": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
61
+ "7000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
62
+ "7001": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
63
+ "7171": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
64
+ "7560": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
65
+ "7771": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
66
+ "8192": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
67
+ "8194": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
68
+ "8453": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
69
+ "9001": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
70
+ "10242": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
71
+ "10243": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
72
+ "11235": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
73
+ "13337": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
74
+ "17000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
75
+ "17069": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
76
+ "18233": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
77
+ "23294": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
78
+ "23295": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
79
+ "32769": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
80
+ "33101": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
81
+ "34443": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
82
+ "42161": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
83
+ "42220": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
84
+ "43114": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
85
+ "54211": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
86
+ "59140": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
87
+ "59141": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
88
+ "59144": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
89
+ "80001": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
90
+ "80085": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
91
+ "81457": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
92
+ "84531": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
93
+ "84532": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
94
+ "90001": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
95
+ "105105": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
96
+ "111188": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
97
+ "167000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
98
+ "167009": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
99
+ "205205": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
100
+ "444444": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
101
+ "534351": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
102
+ "534352": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
103
+ "555666": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
104
+ "713715": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
105
+ "6038361": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
106
+ "7225878": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
107
+ "7777777": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
108
+ "11155111": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
109
+ "11155420": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
110
+ "94204209": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
111
+ "111557560": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
112
+ "123420111": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
113
+ "168587773": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
114
+ "666666666": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
115
+ "999999999": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
116
+ "1313161554": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
117
+ "1313161555": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
118
+ "1666600000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
119
+ "1666700000": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
120
+ "88153591557": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762"
121
+ },
122
+ "abi": [
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ {
127
+ "indexed": true,
128
+ "internalType": "address",
129
+ "name": "owner",
130
+ "type": "address"
131
+ }
132
+ ],
133
+ "name": "AddedOwner",
134
+ "type": "event"
135
+ },
136
+ {
137
+ "anonymous": false,
138
+ "inputs": [
139
+ {
140
+ "indexed": true,
141
+ "internalType": "bytes32",
142
+ "name": "approvedHash",
143
+ "type": "bytes32"
144
+ },
145
+ {
146
+ "indexed": true,
147
+ "internalType": "address",
148
+ "name": "owner",
149
+ "type": "address"
150
+ }
151
+ ],
152
+ "name": "ApproveHash",
153
+ "type": "event"
154
+ },
155
+ {
156
+ "anonymous": false,
157
+ "inputs": [
158
+ {
159
+ "indexed": true,
160
+ "internalType": "address",
161
+ "name": "handler",
162
+ "type": "address"
163
+ }
164
+ ],
165
+ "name": "ChangedFallbackHandler",
166
+ "type": "event"
167
+ },
168
+ {
169
+ "anonymous": false,
170
+ "inputs": [
171
+ {
172
+ "indexed": true,
173
+ "internalType": "address",
174
+ "name": "guard",
175
+ "type": "address"
176
+ }
177
+ ],
178
+ "name": "ChangedGuard",
179
+ "type": "event"
180
+ },
181
+ {
182
+ "anonymous": false,
183
+ "inputs": [
184
+ {
185
+ "indexed": false,
186
+ "internalType": "uint256",
187
+ "name": "threshold",
188
+ "type": "uint256"
189
+ }
190
+ ],
191
+ "name": "ChangedThreshold",
192
+ "type": "event"
193
+ },
194
+ {
195
+ "anonymous": false,
196
+ "inputs": [
197
+ {
198
+ "indexed": true,
199
+ "internalType": "address",
200
+ "name": "module",
201
+ "type": "address"
202
+ }
203
+ ],
204
+ "name": "DisabledModule",
205
+ "type": "event"
206
+ },
207
+ {
208
+ "anonymous": false,
209
+ "inputs": [
210
+ {
211
+ "indexed": true,
212
+ "internalType": "address",
213
+ "name": "module",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "name": "EnabledModule",
218
+ "type": "event"
219
+ },
220
+ {
221
+ "anonymous": false,
222
+ "inputs": [
223
+ {
224
+ "indexed": true,
225
+ "internalType": "bytes32",
226
+ "name": "txHash",
227
+ "type": "bytes32"
228
+ },
229
+ {
230
+ "indexed": false,
231
+ "internalType": "uint256",
232
+ "name": "payment",
233
+ "type": "uint256"
234
+ }
235
+ ],
236
+ "name": "ExecutionFailure",
237
+ "type": "event"
238
+ },
239
+ {
240
+ "anonymous": false,
241
+ "inputs": [
242
+ {
243
+ "indexed": true,
244
+ "internalType": "address",
245
+ "name": "module",
246
+ "type": "address"
247
+ }
248
+ ],
249
+ "name": "ExecutionFromModuleFailure",
250
+ "type": "event"
251
+ },
252
+ {
253
+ "anonymous": false,
254
+ "inputs": [
255
+ {
256
+ "indexed": true,
257
+ "internalType": "address",
258
+ "name": "module",
259
+ "type": "address"
260
+ }
261
+ ],
262
+ "name": "ExecutionFromModuleSuccess",
263
+ "type": "event"
264
+ },
265
+ {
266
+ "anonymous": false,
267
+ "inputs": [
268
+ {
269
+ "indexed": true,
270
+ "internalType": "bytes32",
271
+ "name": "txHash",
272
+ "type": "bytes32"
273
+ },
274
+ {
275
+ "indexed": false,
276
+ "internalType": "uint256",
277
+ "name": "payment",
278
+ "type": "uint256"
279
+ }
280
+ ],
281
+ "name": "ExecutionSuccess",
282
+ "type": "event"
283
+ },
284
+ {
285
+ "anonymous": false,
286
+ "inputs": [
287
+ {
288
+ "indexed": true,
289
+ "internalType": "address",
290
+ "name": "owner",
291
+ "type": "address"
292
+ }
293
+ ],
294
+ "name": "RemovedOwner",
295
+ "type": "event"
296
+ },
297
+ {
298
+ "anonymous": false,
299
+ "inputs": [
300
+ {
301
+ "indexed": false,
302
+ "internalType": "address",
303
+ "name": "module",
304
+ "type": "address"
305
+ },
306
+ {
307
+ "indexed": false,
308
+ "internalType": "address",
309
+ "name": "to",
310
+ "type": "address"
311
+ },
312
+ {
313
+ "indexed": false,
314
+ "internalType": "uint256",
315
+ "name": "value",
316
+ "type": "uint256"
317
+ },
318
+ {
319
+ "indexed": false,
320
+ "internalType": "bytes",
321
+ "name": "data",
322
+ "type": "bytes"
323
+ },
324
+ {
325
+ "indexed": false,
326
+ "internalType": "enum Enum.Operation",
327
+ "name": "operation",
328
+ "type": "uint8"
329
+ }
330
+ ],
331
+ "name": "SafeModuleTransaction",
332
+ "type": "event"
333
+ },
334
+ {
335
+ "anonymous": false,
336
+ "inputs": [
337
+ {
338
+ "indexed": false,
339
+ "internalType": "address",
340
+ "name": "to",
341
+ "type": "address"
342
+ },
343
+ {
344
+ "indexed": false,
345
+ "internalType": "uint256",
346
+ "name": "value",
347
+ "type": "uint256"
348
+ },
349
+ {
350
+ "indexed": false,
351
+ "internalType": "bytes",
352
+ "name": "data",
353
+ "type": "bytes"
354
+ },
355
+ {
356
+ "indexed": false,
357
+ "internalType": "enum Enum.Operation",
358
+ "name": "operation",
359
+ "type": "uint8"
360
+ },
361
+ {
362
+ "indexed": false,
363
+ "internalType": "uint256",
364
+ "name": "safeTxGas",
365
+ "type": "uint256"
366
+ },
367
+ {
368
+ "indexed": false,
369
+ "internalType": "uint256",
370
+ "name": "baseGas",
371
+ "type": "uint256"
372
+ },
373
+ {
374
+ "indexed": false,
375
+ "internalType": "uint256",
376
+ "name": "gasPrice",
377
+ "type": "uint256"
378
+ },
379
+ {
380
+ "indexed": false,
381
+ "internalType": "address",
382
+ "name": "gasToken",
383
+ "type": "address"
384
+ },
385
+ {
386
+ "indexed": false,
387
+ "internalType": "address payable",
388
+ "name": "refundReceiver",
389
+ "type": "address"
390
+ },
391
+ {
392
+ "indexed": false,
393
+ "internalType": "bytes",
394
+ "name": "signatures",
395
+ "type": "bytes"
396
+ },
397
+ {
398
+ "indexed": false,
399
+ "internalType": "bytes",
400
+ "name": "additionalInfo",
401
+ "type": "bytes"
402
+ }
403
+ ],
404
+ "name": "SafeMultiSigTransaction",
405
+ "type": "event"
406
+ },
407
+ {
408
+ "anonymous": false,
409
+ "inputs": [
410
+ {
411
+ "indexed": true,
412
+ "internalType": "address",
413
+ "name": "sender",
414
+ "type": "address"
415
+ },
416
+ {
417
+ "indexed": false,
418
+ "internalType": "uint256",
419
+ "name": "value",
420
+ "type": "uint256"
421
+ }
422
+ ],
423
+ "name": "SafeReceived",
424
+ "type": "event"
425
+ },
426
+ {
427
+ "anonymous": false,
428
+ "inputs": [
429
+ {
430
+ "indexed": true,
431
+ "internalType": "address",
432
+ "name": "initiator",
433
+ "type": "address"
434
+ },
435
+ {
436
+ "indexed": false,
437
+ "internalType": "address[]",
438
+ "name": "owners",
439
+ "type": "address[]"
440
+ },
441
+ {
442
+ "indexed": false,
443
+ "internalType": "uint256",
444
+ "name": "threshold",
445
+ "type": "uint256"
446
+ },
447
+ {
448
+ "indexed": false,
449
+ "internalType": "address",
450
+ "name": "initializer",
451
+ "type": "address"
452
+ },
453
+ {
454
+ "indexed": false,
455
+ "internalType": "address",
456
+ "name": "fallbackHandler",
457
+ "type": "address"
458
+ }
459
+ ],
460
+ "name": "SafeSetup",
461
+ "type": "event"
462
+ },
463
+ {
464
+ "anonymous": false,
465
+ "inputs": [
466
+ {
467
+ "indexed": true,
468
+ "internalType": "bytes32",
469
+ "name": "msgHash",
470
+ "type": "bytes32"
471
+ }
472
+ ],
473
+ "name": "SignMsg",
474
+ "type": "event"
475
+ },
476
+ {
477
+ "stateMutability": "nonpayable",
478
+ "type": "fallback"
479
+ },
480
+ {
481
+ "inputs": [],
482
+ "name": "VERSION",
483
+ "outputs": [
484
+ {
485
+ "internalType": "string",
486
+ "name": "",
487
+ "type": "string"
488
+ }
489
+ ],
490
+ "stateMutability": "view",
491
+ "type": "function"
492
+ },
493
+ {
494
+ "inputs": [
495
+ {
496
+ "internalType": "address",
497
+ "name": "owner",
498
+ "type": "address"
499
+ },
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "_threshold",
503
+ "type": "uint256"
504
+ }
505
+ ],
506
+ "name": "addOwnerWithThreshold",
507
+ "outputs": [],
508
+ "stateMutability": "nonpayable",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "inputs": [
513
+ {
514
+ "internalType": "bytes32",
515
+ "name": "hashToApprove",
516
+ "type": "bytes32"
517
+ }
518
+ ],
519
+ "name": "approveHash",
520
+ "outputs": [],
521
+ "stateMutability": "nonpayable",
522
+ "type": "function"
523
+ },
524
+ {
525
+ "inputs": [
526
+ {
527
+ "internalType": "address",
528
+ "name": "",
529
+ "type": "address"
530
+ },
531
+ {
532
+ "internalType": "bytes32",
533
+ "name": "",
534
+ "type": "bytes32"
535
+ }
536
+ ],
537
+ "name": "approvedHashes",
538
+ "outputs": [
539
+ {
540
+ "internalType": "uint256",
541
+ "name": "",
542
+ "type": "uint256"
543
+ }
544
+ ],
545
+ "stateMutability": "view",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "uint256",
552
+ "name": "_threshold",
553
+ "type": "uint256"
554
+ }
555
+ ],
556
+ "name": "changeThreshold",
557
+ "outputs": [],
558
+ "stateMutability": "nonpayable",
559
+ "type": "function"
560
+ },
561
+ {
562
+ "inputs": [
563
+ {
564
+ "internalType": "bytes32",
565
+ "name": "dataHash",
566
+ "type": "bytes32"
567
+ },
568
+ {
569
+ "internalType": "bytes",
570
+ "name": "data",
571
+ "type": "bytes"
572
+ },
573
+ {
574
+ "internalType": "bytes",
575
+ "name": "signatures",
576
+ "type": "bytes"
577
+ },
578
+ {
579
+ "internalType": "uint256",
580
+ "name": "requiredSignatures",
581
+ "type": "uint256"
582
+ }
583
+ ],
584
+ "name": "checkNSignatures",
585
+ "outputs": [],
586
+ "stateMutability": "view",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [
591
+ {
592
+ "internalType": "bytes32",
593
+ "name": "dataHash",
594
+ "type": "bytes32"
595
+ },
596
+ {
597
+ "internalType": "bytes",
598
+ "name": "data",
599
+ "type": "bytes"
600
+ },
601
+ {
602
+ "internalType": "bytes",
603
+ "name": "signatures",
604
+ "type": "bytes"
605
+ }
606
+ ],
607
+ "name": "checkSignatures",
608
+ "outputs": [],
609
+ "stateMutability": "view",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [
614
+ {
615
+ "internalType": "address",
616
+ "name": "prevModule",
617
+ "type": "address"
618
+ },
619
+ {
620
+ "internalType": "address",
621
+ "name": "module",
622
+ "type": "address"
623
+ }
624
+ ],
625
+ "name": "disableModule",
626
+ "outputs": [],
627
+ "stateMutability": "nonpayable",
628
+ "type": "function"
629
+ },
630
+ {
631
+ "inputs": [],
632
+ "name": "domainSeparator",
633
+ "outputs": [
634
+ {
635
+ "internalType": "bytes32",
636
+ "name": "",
637
+ "type": "bytes32"
638
+ }
639
+ ],
640
+ "stateMutability": "view",
641
+ "type": "function"
642
+ },
643
+ {
644
+ "inputs": [
645
+ {
646
+ "internalType": "address",
647
+ "name": "module",
648
+ "type": "address"
649
+ }
650
+ ],
651
+ "name": "enableModule",
652
+ "outputs": [],
653
+ "stateMutability": "nonpayable",
654
+ "type": "function"
655
+ },
656
+ {
657
+ "inputs": [
658
+ {
659
+ "internalType": "address",
660
+ "name": "to",
661
+ "type": "address"
662
+ },
663
+ {
664
+ "internalType": "uint256",
665
+ "name": "value",
666
+ "type": "uint256"
667
+ },
668
+ {
669
+ "internalType": "bytes",
670
+ "name": "data",
671
+ "type": "bytes"
672
+ },
673
+ {
674
+ "internalType": "enum Enum.Operation",
675
+ "name": "operation",
676
+ "type": "uint8"
677
+ },
678
+ {
679
+ "internalType": "uint256",
680
+ "name": "safeTxGas",
681
+ "type": "uint256"
682
+ },
683
+ {
684
+ "internalType": "uint256",
685
+ "name": "baseGas",
686
+ "type": "uint256"
687
+ },
688
+ {
689
+ "internalType": "uint256",
690
+ "name": "gasPrice",
691
+ "type": "uint256"
692
+ },
693
+ {
694
+ "internalType": "address",
695
+ "name": "gasToken",
696
+ "type": "address"
697
+ },
698
+ {
699
+ "internalType": "address",
700
+ "name": "refundReceiver",
701
+ "type": "address"
702
+ },
703
+ {
704
+ "internalType": "uint256",
705
+ "name": "_nonce",
706
+ "type": "uint256"
707
+ }
708
+ ],
709
+ "name": "encodeTransactionData",
710
+ "outputs": [
711
+ {
712
+ "internalType": "bytes",
713
+ "name": "",
714
+ "type": "bytes"
715
+ }
716
+ ],
717
+ "stateMutability": "view",
718
+ "type": "function"
719
+ },
720
+ {
721
+ "inputs": [
722
+ {
723
+ "internalType": "address",
724
+ "name": "to",
725
+ "type": "address"
726
+ },
727
+ {
728
+ "internalType": "uint256",
729
+ "name": "value",
730
+ "type": "uint256"
731
+ },
732
+ {
733
+ "internalType": "bytes",
734
+ "name": "data",
735
+ "type": "bytes"
736
+ },
737
+ {
738
+ "internalType": "enum Enum.Operation",
739
+ "name": "operation",
740
+ "type": "uint8"
741
+ },
742
+ {
743
+ "internalType": "uint256",
744
+ "name": "safeTxGas",
745
+ "type": "uint256"
746
+ },
747
+ {
748
+ "internalType": "uint256",
749
+ "name": "baseGas",
750
+ "type": "uint256"
751
+ },
752
+ {
753
+ "internalType": "uint256",
754
+ "name": "gasPrice",
755
+ "type": "uint256"
756
+ },
757
+ {
758
+ "internalType": "address",
759
+ "name": "gasToken",
760
+ "type": "address"
761
+ },
762
+ {
763
+ "internalType": "address payable",
764
+ "name": "refundReceiver",
765
+ "type": "address"
766
+ },
767
+ {
768
+ "internalType": "bytes",
769
+ "name": "signatures",
770
+ "type": "bytes"
771
+ }
772
+ ],
773
+ "name": "execTransaction",
774
+ "outputs": [
775
+ {
776
+ "internalType": "bool",
777
+ "name": "",
778
+ "type": "bool"
779
+ }
780
+ ],
781
+ "stateMutability": "payable",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [
786
+ {
787
+ "internalType": "address",
788
+ "name": "to",
789
+ "type": "address"
790
+ },
791
+ {
792
+ "internalType": "uint256",
793
+ "name": "value",
794
+ "type": "uint256"
795
+ },
796
+ {
797
+ "internalType": "bytes",
798
+ "name": "data",
799
+ "type": "bytes"
800
+ },
801
+ {
802
+ "internalType": "enum Enum.Operation",
803
+ "name": "operation",
804
+ "type": "uint8"
805
+ }
806
+ ],
807
+ "name": "execTransactionFromModule",
808
+ "outputs": [
809
+ {
810
+ "internalType": "bool",
811
+ "name": "success",
812
+ "type": "bool"
813
+ }
814
+ ],
815
+ "stateMutability": "nonpayable",
816
+ "type": "function"
817
+ },
818
+ {
819
+ "inputs": [
820
+ {
821
+ "internalType": "address",
822
+ "name": "to",
823
+ "type": "address"
824
+ },
825
+ {
826
+ "internalType": "uint256",
827
+ "name": "value",
828
+ "type": "uint256"
829
+ },
830
+ {
831
+ "internalType": "bytes",
832
+ "name": "data",
833
+ "type": "bytes"
834
+ },
835
+ {
836
+ "internalType": "enum Enum.Operation",
837
+ "name": "operation",
838
+ "type": "uint8"
839
+ }
840
+ ],
841
+ "name": "execTransactionFromModuleReturnData",
842
+ "outputs": [
843
+ {
844
+ "internalType": "bool",
845
+ "name": "success",
846
+ "type": "bool"
847
+ },
848
+ {
849
+ "internalType": "bytes",
850
+ "name": "returnData",
851
+ "type": "bytes"
852
+ }
853
+ ],
854
+ "stateMutability": "nonpayable",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [],
859
+ "name": "getChainId",
860
+ "outputs": [
861
+ {
862
+ "internalType": "uint256",
863
+ "name": "",
864
+ "type": "uint256"
865
+ }
866
+ ],
867
+ "stateMutability": "view",
868
+ "type": "function"
869
+ },
870
+ {
871
+ "inputs": [
872
+ {
873
+ "internalType": "address",
874
+ "name": "start",
875
+ "type": "address"
876
+ },
877
+ {
878
+ "internalType": "uint256",
879
+ "name": "pageSize",
880
+ "type": "uint256"
881
+ }
882
+ ],
883
+ "name": "getModulesPaginated",
884
+ "outputs": [
885
+ {
886
+ "internalType": "address[]",
887
+ "name": "array",
888
+ "type": "address[]"
889
+ },
890
+ {
891
+ "internalType": "address",
892
+ "name": "next",
893
+ "type": "address"
894
+ }
895
+ ],
896
+ "stateMutability": "view",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getOwners",
902
+ "outputs": [
903
+ {
904
+ "internalType": "address[]",
905
+ "name": "",
906
+ "type": "address[]"
907
+ }
908
+ ],
909
+ "stateMutability": "view",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [
914
+ {
915
+ "internalType": "uint256",
916
+ "name": "offset",
917
+ "type": "uint256"
918
+ },
919
+ {
920
+ "internalType": "uint256",
921
+ "name": "length",
922
+ "type": "uint256"
923
+ }
924
+ ],
925
+ "name": "getStorageAt",
926
+ "outputs": [
927
+ {
928
+ "internalType": "bytes",
929
+ "name": "",
930
+ "type": "bytes"
931
+ }
932
+ ],
933
+ "stateMutability": "view",
934
+ "type": "function"
935
+ },
936
+ {
937
+ "inputs": [],
938
+ "name": "getThreshold",
939
+ "outputs": [
940
+ {
941
+ "internalType": "uint256",
942
+ "name": "",
943
+ "type": "uint256"
944
+ }
945
+ ],
946
+ "stateMutability": "view",
947
+ "type": "function"
948
+ },
949
+ {
950
+ "inputs": [
951
+ {
952
+ "internalType": "address",
953
+ "name": "to",
954
+ "type": "address"
955
+ },
956
+ {
957
+ "internalType": "uint256",
958
+ "name": "value",
959
+ "type": "uint256"
960
+ },
961
+ {
962
+ "internalType": "bytes",
963
+ "name": "data",
964
+ "type": "bytes"
965
+ },
966
+ {
967
+ "internalType": "enum Enum.Operation",
968
+ "name": "operation",
969
+ "type": "uint8"
970
+ },
971
+ {
972
+ "internalType": "uint256",
973
+ "name": "safeTxGas",
974
+ "type": "uint256"
975
+ },
976
+ {
977
+ "internalType": "uint256",
978
+ "name": "baseGas",
979
+ "type": "uint256"
980
+ },
981
+ {
982
+ "internalType": "uint256",
983
+ "name": "gasPrice",
984
+ "type": "uint256"
985
+ },
986
+ {
987
+ "internalType": "address",
988
+ "name": "gasToken",
989
+ "type": "address"
990
+ },
991
+ {
992
+ "internalType": "address",
993
+ "name": "refundReceiver",
994
+ "type": "address"
995
+ },
996
+ {
997
+ "internalType": "uint256",
998
+ "name": "_nonce",
999
+ "type": "uint256"
1000
+ }
1001
+ ],
1002
+ "name": "getTransactionHash",
1003
+ "outputs": [
1004
+ {
1005
+ "internalType": "bytes32",
1006
+ "name": "",
1007
+ "type": "bytes32"
1008
+ }
1009
+ ],
1010
+ "stateMutability": "view",
1011
+ "type": "function"
1012
+ },
1013
+ {
1014
+ "inputs": [
1015
+ {
1016
+ "internalType": "address",
1017
+ "name": "module",
1018
+ "type": "address"
1019
+ }
1020
+ ],
1021
+ "name": "isModuleEnabled",
1022
+ "outputs": [
1023
+ {
1024
+ "internalType": "bool",
1025
+ "name": "",
1026
+ "type": "bool"
1027
+ }
1028
+ ],
1029
+ "stateMutability": "view",
1030
+ "type": "function"
1031
+ },
1032
+ {
1033
+ "inputs": [
1034
+ {
1035
+ "internalType": "address",
1036
+ "name": "owner",
1037
+ "type": "address"
1038
+ }
1039
+ ],
1040
+ "name": "isOwner",
1041
+ "outputs": [
1042
+ {
1043
+ "internalType": "bool",
1044
+ "name": "",
1045
+ "type": "bool"
1046
+ }
1047
+ ],
1048
+ "stateMutability": "view",
1049
+ "type": "function"
1050
+ },
1051
+ {
1052
+ "inputs": [],
1053
+ "name": "nonce",
1054
+ "outputs": [
1055
+ {
1056
+ "internalType": "uint256",
1057
+ "name": "",
1058
+ "type": "uint256"
1059
+ }
1060
+ ],
1061
+ "stateMutability": "view",
1062
+ "type": "function"
1063
+ },
1064
+ {
1065
+ "inputs": [
1066
+ {
1067
+ "internalType": "address",
1068
+ "name": "prevOwner",
1069
+ "type": "address"
1070
+ },
1071
+ {
1072
+ "internalType": "address",
1073
+ "name": "owner",
1074
+ "type": "address"
1075
+ },
1076
+ {
1077
+ "internalType": "uint256",
1078
+ "name": "_threshold",
1079
+ "type": "uint256"
1080
+ }
1081
+ ],
1082
+ "name": "removeOwner",
1083
+ "outputs": [],
1084
+ "stateMutability": "nonpayable",
1085
+ "type": "function"
1086
+ },
1087
+ {
1088
+ "inputs": [
1089
+ {
1090
+ "internalType": "address",
1091
+ "name": "handler",
1092
+ "type": "address"
1093
+ }
1094
+ ],
1095
+ "name": "setFallbackHandler",
1096
+ "outputs": [],
1097
+ "stateMutability": "nonpayable",
1098
+ "type": "function"
1099
+ },
1100
+ {
1101
+ "inputs": [
1102
+ {
1103
+ "internalType": "address",
1104
+ "name": "guard",
1105
+ "type": "address"
1106
+ }
1107
+ ],
1108
+ "name": "setGuard",
1109
+ "outputs": [],
1110
+ "stateMutability": "nonpayable",
1111
+ "type": "function"
1112
+ },
1113
+ {
1114
+ "inputs": [
1115
+ {
1116
+ "internalType": "address[]",
1117
+ "name": "_owners",
1118
+ "type": "address[]"
1119
+ },
1120
+ {
1121
+ "internalType": "uint256",
1122
+ "name": "_threshold",
1123
+ "type": "uint256"
1124
+ },
1125
+ {
1126
+ "internalType": "address",
1127
+ "name": "to",
1128
+ "type": "address"
1129
+ },
1130
+ {
1131
+ "internalType": "bytes",
1132
+ "name": "data",
1133
+ "type": "bytes"
1134
+ },
1135
+ {
1136
+ "internalType": "address",
1137
+ "name": "fallbackHandler",
1138
+ "type": "address"
1139
+ },
1140
+ {
1141
+ "internalType": "address",
1142
+ "name": "paymentToken",
1143
+ "type": "address"
1144
+ },
1145
+ {
1146
+ "internalType": "uint256",
1147
+ "name": "payment",
1148
+ "type": "uint256"
1149
+ },
1150
+ {
1151
+ "internalType": "address payable",
1152
+ "name": "paymentReceiver",
1153
+ "type": "address"
1154
+ }
1155
+ ],
1156
+ "name": "setup",
1157
+ "outputs": [],
1158
+ "stateMutability": "nonpayable",
1159
+ "type": "function"
1160
+ },
1161
+ {
1162
+ "inputs": [
1163
+ {
1164
+ "internalType": "bytes32",
1165
+ "name": "",
1166
+ "type": "bytes32"
1167
+ }
1168
+ ],
1169
+ "name": "signedMessages",
1170
+ "outputs": [
1171
+ {
1172
+ "internalType": "uint256",
1173
+ "name": "",
1174
+ "type": "uint256"
1175
+ }
1176
+ ],
1177
+ "stateMutability": "view",
1178
+ "type": "function"
1179
+ },
1180
+ {
1181
+ "inputs": [
1182
+ {
1183
+ "internalType": "address",
1184
+ "name": "targetContract",
1185
+ "type": "address"
1186
+ },
1187
+ {
1188
+ "internalType": "bytes",
1189
+ "name": "calldataPayload",
1190
+ "type": "bytes"
1191
+ }
1192
+ ],
1193
+ "name": "simulateAndRevert",
1194
+ "outputs": [],
1195
+ "stateMutability": "nonpayable",
1196
+ "type": "function"
1197
+ },
1198
+ {
1199
+ "inputs": [
1200
+ {
1201
+ "internalType": "address",
1202
+ "name": "prevOwner",
1203
+ "type": "address"
1204
+ },
1205
+ {
1206
+ "internalType": "address",
1207
+ "name": "oldOwner",
1208
+ "type": "address"
1209
+ },
1210
+ {
1211
+ "internalType": "address",
1212
+ "name": "newOwner",
1213
+ "type": "address"
1214
+ }
1215
+ ],
1216
+ "name": "swapOwner",
1217
+ "outputs": [],
1218
+ "stateMutability": "nonpayable",
1219
+ "type": "function"
1220
+ },
1221
+ {
1222
+ "stateMutability": "payable",
1223
+ "type": "receive"
1224
+ }
1225
+ ]
1226
+ }