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