@venusprotocol/governance-contracts 2.4.0-dev.1 → 2.4.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deployments/opmainnet/.chainId +1 -0
- package/deployments/opmainnet/AccessControlManager.json +573 -0
- package/deployments/opmainnet/solcInputs/5544610c94ec866e5ef42c3a96097de0.json +148 -0
- package/deployments/opmainnet.json +365 -1
- package/deployments/opmainnet_addresses.json +3 -1
- package/dist/helpers/deploy/deploymentUtils.d.ts.map +1 -1
- package/dist/helpers/deploy/deploymentUtils.js +6 -0
- package/dist/helpers/deploy/deploymentUtils.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,369 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opmainnet",
|
|
3
3
|
"chainId": "10",
|
|
4
|
-
"contracts": {
|
|
4
|
+
"contracts": {
|
|
5
|
+
"AccessControlManager": {
|
|
6
|
+
"address": "0xD71b1F33f6B0259683f11174EE4Ddc2bb9cE4eD6",
|
|
7
|
+
"abi": [
|
|
8
|
+
{
|
|
9
|
+
"inputs": [],
|
|
10
|
+
"stateMutability": "nonpayable",
|
|
11
|
+
"type": "constructor"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"anonymous": false,
|
|
15
|
+
"inputs": [
|
|
16
|
+
{
|
|
17
|
+
"indexed": false,
|
|
18
|
+
"internalType": "address",
|
|
19
|
+
"name": "account",
|
|
20
|
+
"type": "address"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"indexed": false,
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "contractAddress",
|
|
26
|
+
"type": "address"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"indexed": false,
|
|
30
|
+
"internalType": "string",
|
|
31
|
+
"name": "functionSig",
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "PermissionGranted",
|
|
36
|
+
"type": "event"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"anonymous": false,
|
|
40
|
+
"inputs": [
|
|
41
|
+
{
|
|
42
|
+
"indexed": false,
|
|
43
|
+
"internalType": "address",
|
|
44
|
+
"name": "account",
|
|
45
|
+
"type": "address"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"indexed": false,
|
|
49
|
+
"internalType": "address",
|
|
50
|
+
"name": "contractAddress",
|
|
51
|
+
"type": "address"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"indexed": false,
|
|
55
|
+
"internalType": "string",
|
|
56
|
+
"name": "functionSig",
|
|
57
|
+
"type": "string"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"name": "PermissionRevoked",
|
|
61
|
+
"type": "event"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"anonymous": false,
|
|
65
|
+
"inputs": [
|
|
66
|
+
{
|
|
67
|
+
"indexed": true,
|
|
68
|
+
"internalType": "bytes32",
|
|
69
|
+
"name": "role",
|
|
70
|
+
"type": "bytes32"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"indexed": true,
|
|
74
|
+
"internalType": "bytes32",
|
|
75
|
+
"name": "previousAdminRole",
|
|
76
|
+
"type": "bytes32"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"indexed": true,
|
|
80
|
+
"internalType": "bytes32",
|
|
81
|
+
"name": "newAdminRole",
|
|
82
|
+
"type": "bytes32"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"name": "RoleAdminChanged",
|
|
86
|
+
"type": "event"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"anonymous": false,
|
|
90
|
+
"inputs": [
|
|
91
|
+
{
|
|
92
|
+
"indexed": true,
|
|
93
|
+
"internalType": "bytes32",
|
|
94
|
+
"name": "role",
|
|
95
|
+
"type": "bytes32"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"indexed": true,
|
|
99
|
+
"internalType": "address",
|
|
100
|
+
"name": "account",
|
|
101
|
+
"type": "address"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"indexed": true,
|
|
105
|
+
"internalType": "address",
|
|
106
|
+
"name": "sender",
|
|
107
|
+
"type": "address"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"name": "RoleGranted",
|
|
111
|
+
"type": "event"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"anonymous": false,
|
|
115
|
+
"inputs": [
|
|
116
|
+
{
|
|
117
|
+
"indexed": true,
|
|
118
|
+
"internalType": "bytes32",
|
|
119
|
+
"name": "role",
|
|
120
|
+
"type": "bytes32"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"indexed": true,
|
|
124
|
+
"internalType": "address",
|
|
125
|
+
"name": "account",
|
|
126
|
+
"type": "address"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"indexed": true,
|
|
130
|
+
"internalType": "address",
|
|
131
|
+
"name": "sender",
|
|
132
|
+
"type": "address"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"name": "RoleRevoked",
|
|
136
|
+
"type": "event"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"inputs": [],
|
|
140
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
141
|
+
"outputs": [
|
|
142
|
+
{
|
|
143
|
+
"internalType": "bytes32",
|
|
144
|
+
"name": "",
|
|
145
|
+
"type": "bytes32"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"stateMutability": "view",
|
|
149
|
+
"type": "function"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"inputs": [
|
|
153
|
+
{
|
|
154
|
+
"internalType": "bytes32",
|
|
155
|
+
"name": "role",
|
|
156
|
+
"type": "bytes32"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"name": "getRoleAdmin",
|
|
160
|
+
"outputs": [
|
|
161
|
+
{
|
|
162
|
+
"internalType": "bytes32",
|
|
163
|
+
"name": "",
|
|
164
|
+
"type": "bytes32"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"stateMutability": "view",
|
|
168
|
+
"type": "function"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"inputs": [
|
|
172
|
+
{
|
|
173
|
+
"internalType": "address",
|
|
174
|
+
"name": "contractAddress",
|
|
175
|
+
"type": "address"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"internalType": "string",
|
|
179
|
+
"name": "functionSig",
|
|
180
|
+
"type": "string"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "address",
|
|
184
|
+
"name": "accountToPermit",
|
|
185
|
+
"type": "address"
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"name": "giveCallPermission",
|
|
189
|
+
"outputs": [],
|
|
190
|
+
"stateMutability": "nonpayable",
|
|
191
|
+
"type": "function"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"inputs": [
|
|
195
|
+
{
|
|
196
|
+
"internalType": "bytes32",
|
|
197
|
+
"name": "role",
|
|
198
|
+
"type": "bytes32"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"internalType": "address",
|
|
202
|
+
"name": "account",
|
|
203
|
+
"type": "address"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"name": "grantRole",
|
|
207
|
+
"outputs": [],
|
|
208
|
+
"stateMutability": "nonpayable",
|
|
209
|
+
"type": "function"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"inputs": [
|
|
213
|
+
{
|
|
214
|
+
"internalType": "address",
|
|
215
|
+
"name": "account",
|
|
216
|
+
"type": "address"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"internalType": "address",
|
|
220
|
+
"name": "contractAddress",
|
|
221
|
+
"type": "address"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"internalType": "string",
|
|
225
|
+
"name": "functionSig",
|
|
226
|
+
"type": "string"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"name": "hasPermission",
|
|
230
|
+
"outputs": [
|
|
231
|
+
{
|
|
232
|
+
"internalType": "bool",
|
|
233
|
+
"name": "",
|
|
234
|
+
"type": "bool"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"stateMutability": "view",
|
|
238
|
+
"type": "function"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"inputs": [
|
|
242
|
+
{
|
|
243
|
+
"internalType": "bytes32",
|
|
244
|
+
"name": "role",
|
|
245
|
+
"type": "bytes32"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"internalType": "address",
|
|
249
|
+
"name": "account",
|
|
250
|
+
"type": "address"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
"name": "hasRole",
|
|
254
|
+
"outputs": [
|
|
255
|
+
{
|
|
256
|
+
"internalType": "bool",
|
|
257
|
+
"name": "",
|
|
258
|
+
"type": "bool"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"stateMutability": "view",
|
|
262
|
+
"type": "function"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"inputs": [
|
|
266
|
+
{
|
|
267
|
+
"internalType": "address",
|
|
268
|
+
"name": "account",
|
|
269
|
+
"type": "address"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"internalType": "string",
|
|
273
|
+
"name": "functionSig",
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"name": "isAllowedToCall",
|
|
278
|
+
"outputs": [
|
|
279
|
+
{
|
|
280
|
+
"internalType": "bool",
|
|
281
|
+
"name": "",
|
|
282
|
+
"type": "bool"
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"stateMutability": "view",
|
|
286
|
+
"type": "function"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"inputs": [
|
|
290
|
+
{
|
|
291
|
+
"internalType": "bytes32",
|
|
292
|
+
"name": "role",
|
|
293
|
+
"type": "bytes32"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"internalType": "address",
|
|
297
|
+
"name": "account",
|
|
298
|
+
"type": "address"
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
"name": "renounceRole",
|
|
302
|
+
"outputs": [],
|
|
303
|
+
"stateMutability": "nonpayable",
|
|
304
|
+
"type": "function"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"inputs": [
|
|
308
|
+
{
|
|
309
|
+
"internalType": "address",
|
|
310
|
+
"name": "contractAddress",
|
|
311
|
+
"type": "address"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"internalType": "string",
|
|
315
|
+
"name": "functionSig",
|
|
316
|
+
"type": "string"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"internalType": "address",
|
|
320
|
+
"name": "accountToRevoke",
|
|
321
|
+
"type": "address"
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"name": "revokeCallPermission",
|
|
325
|
+
"outputs": [],
|
|
326
|
+
"stateMutability": "nonpayable",
|
|
327
|
+
"type": "function"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"inputs": [
|
|
331
|
+
{
|
|
332
|
+
"internalType": "bytes32",
|
|
333
|
+
"name": "role",
|
|
334
|
+
"type": "bytes32"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"internalType": "address",
|
|
338
|
+
"name": "account",
|
|
339
|
+
"type": "address"
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
"name": "revokeRole",
|
|
343
|
+
"outputs": [],
|
|
344
|
+
"stateMutability": "nonpayable",
|
|
345
|
+
"type": "function"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"inputs": [
|
|
349
|
+
{
|
|
350
|
+
"internalType": "bytes4",
|
|
351
|
+
"name": "interfaceId",
|
|
352
|
+
"type": "bytes4"
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
"name": "supportsInterface",
|
|
356
|
+
"outputs": [
|
|
357
|
+
{
|
|
358
|
+
"internalType": "bool",
|
|
359
|
+
"name": "",
|
|
360
|
+
"type": "bool"
|
|
361
|
+
}
|
|
362
|
+
],
|
|
363
|
+
"stateMutability": "view",
|
|
364
|
+
"type": "function"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
}
|
|
368
|
+
}
|
|
5
369
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploymentUtils.d.ts","sourceRoot":"","sources":["../../../helpers/deploy/deploymentUtils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,yBAAyB,EAAE,MAAM,eAAe,CAAC;AAI1D,OAAO,EAAc,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAE7D,eAAO,MAAM,eAAe,UAA0F,CAAC;AAGvH,eAAO,MAAM,kBAAkB,YAAmB,kBAAkB,KAAG,QAAQ,MAAM,
|
|
1
|
+
{"version":3,"file":"deploymentUtils.d.ts","sourceRoot":"","sources":["../../../helpers/deploy/deploymentUtils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,yBAAyB,EAAE,MAAM,eAAe,CAAC;AAI1D,OAAO,EAAc,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAE7D,eAAO,MAAM,eAAe,UAA0F,CAAC;AAGvH,eAAO,MAAM,kBAAkB,YAAmB,kBAAkB,KAAG,QAAQ,MAAM,CA4BpF,CAAC;AAEF,eAAO,MAAM,QAAQ,YAAmB,kBAAkB,KAAG,QAAQ,MAAM,CA2B1E,CAAC;AAEF,eAAO,MAAM,0BAA0B,YAAmB,kBAAkB,oBAU3E,CAAC;AAEF,eAAO,MAAM,aAAa,gBAAuB,kBAAkB,KAAG,QAAQ,MAAM,CAiBnF,CAAC;AAEF,eAAO,MAAM,gBAAgB,YAAmB,kBAAkB,oBAOjE,CAAC;AAEF,eAAO,MAAM,WAAW,cAAqB,yBAAyB,qBAErE,CAAC;;AAGF,wBAAwB"}
|
|
@@ -51,6 +51,9 @@ const getAcmAdminAccount = (network) => __awaiter(void 0, void 0, void 0, functi
|
|
|
51
51
|
else if (network === "opsepolia") {
|
|
52
52
|
return "0xd57365EE4E850e881229e2F8Aa405822f289e78d";
|
|
53
53
|
}
|
|
54
|
+
else if (network === "opmainnet") {
|
|
55
|
+
return "0x2e94dd14E81999CdBF5deDE31938beD7308354b3";
|
|
56
|
+
}
|
|
54
57
|
const normalTimelock = yield hardhat_1.ethers.getContract("NormalTimelock");
|
|
55
58
|
return normalTimelock.address;
|
|
56
59
|
});
|
|
@@ -87,6 +90,9 @@ const guardian = (network) => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
87
90
|
else if (network === "opsepolia") {
|
|
88
91
|
return "0xd57365EE4E850e881229e2F8Aa405822f289e78d";
|
|
89
92
|
}
|
|
93
|
+
else if (network === "opmainnet") {
|
|
94
|
+
return "0x2e94dd14E81999CdBF5deDE31938beD7308354b3";
|
|
95
|
+
}
|
|
90
96
|
return deployer;
|
|
91
97
|
});
|
|
92
98
|
exports.guardian = guardian;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploymentUtils.js","sourceRoot":"","sources":["../../../helpers/deploy/deploymentUtils.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,qCAAmD;AAGnD,wFAAgF;AAChF,wFAAgF;AAChF,2CAA6D;AAEhD,QAAA,eAAe,GAAG,CAAC,SAAS,EAAE,cAAc,EAAE,iBAAiB,EAAE,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;AACvH,MAAM,eAAe,GAAG,CAAC,UAAU,EAAE,cAAc,EAAE,aAAa,EAAE,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;AAEtG,MAAM,kBAAkB,GAAG,CAAO,OAA2B,EAAmB,EAAE;IACvF,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,IAAA,0BAAgB,GAAE,CAAC;IAC9C,IAAI,OAAO,KAAK,SAAS,EAAE;QACzB,OAAO,QAAQ,CAAC;KACjB;SAAM,IAAI,OAAO,KAAK,SAAS,EAAE;QAChC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,UAAU,EAAE;QACjC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,cAAc,EAAE;QACrC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,cAAc,EAAE;QACrC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,iBAAiB,EAAE;QACxC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,aAAa,EAAE;QACpC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,eAAe,EAAE;QACtC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,eAAe,EAAE;QACtC,OAAO,4CAA4C,CAAC;KACrD;SAAM,IAAI,OAAO,KAAK,WAAW,EAAE;QAClC,OAAO,4CAA4C,CAAC;KACrD;IAED,MAAM,cAAc,GAAG,MAAM,gBAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;IAClE,OAAO,cAAc,CAAC,OAAO,CAAC;AAChC,CAAC,CAAA,CAAC;
|
|
1
|
+
{"version":3,"file":"deploymentUtils.js","sourceRoot":"","sources":["../../../helpers/deploy/deploymentUtils.ts"],"names":[],"mappings":"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"}
|