Skip to content

Commit c82aeb1

Browse files
authored
Merge pull request #498 from VenusProtocol/vip/ven-2913
[VEN-2913]: Omnichain Governance on Unichain
2 parents c7c6fd7 + 2edfb78 commit c82aeb1

File tree

22 files changed

+3232
-4
lines changed

22 files changed

+3232
-4
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { NETWORK_ADDRESSES } from "src/networkAddresses";
2+
3+
import { makeProposal } from "../../../../src/utils";
4+
5+
const { unichainmainnet } = NETWORK_ADDRESSES;
6+
7+
export const ACM = "0x1f12014c497a9d905155eB9BfDD9FaC6885e61d0";
8+
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";
9+
10+
export const vip009 = () => {
11+
return makeProposal([
12+
{
13+
target: ACM,
14+
signature: "grantRole(bytes32,address)",
15+
params: [DEFAULT_ADMIN_ROLE, unichainmainnet.NORMAL_TIMELOCK],
16+
},
17+
]);
18+
};
19+
export default vip009;
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { NETWORK_ADDRESSES } from "src/networkAddresses";
2+
3+
import { makeProposal } from "../../../../src/utils";
4+
5+
const { unichainsepolia } = NETWORK_ADDRESSES;
6+
7+
export const ACM = "0x854C064EA6b503A97980F481FA3B7279012fdeDd";
8+
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";
9+
10+
export const vip009 = () => {
11+
return makeProposal([
12+
{
13+
target: ACM,
14+
signature: "grantRole(bytes32,address)",
15+
params: [DEFAULT_ADMIN_ROLE, unichainsepolia.NORMAL_TIMELOCK],
16+
},
17+
]);
18+
};
19+
export default vip009;

0 commit comments

Comments
 (0)