@safe-global/safe-deployments 1.37.35 → 1.37.37

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