Skip to content

Commit d758ce5

Browse files
authored
Merge pull request #433 from VenusProtocol/feat/ven-2882
[VEN-2882] Multichain Governance on Base Sepolia and Mainnet
2 parents 6d3814e + f7f352b commit d758ce5

File tree

22 files changed

+3344
-3
lines changed

22 files changed

+3344
-3
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 { basemainnet } = NETWORK_ADDRESSES;
6+
7+
export const ACM = "0x9E6CeEfDC6183e4D0DF8092A9B90cDF659687daB";
8+
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";
9+
10+
export const vip006 = () => {
11+
return makeProposal([
12+
{
13+
target: ACM,
14+
signature: "grantRole(bytes32,address)",
15+
params: [DEFAULT_ADMIN_ROLE, basemainnet.NORMAL_TIMELOCK],
16+
},
17+
]);
18+
};
19+
export default vip006;
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 { basesepolia } = NETWORK_ADDRESSES;
6+
7+
export const ACM = "0x724138223D8F76b519fdE715f60124E7Ce51e051";
8+
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";
9+
10+
export const vip007 = () => {
11+
return makeProposal([
12+
{
13+
target: ACM,
14+
signature: "grantRole(bytes32,address)",
15+
params: [DEFAULT_ADMIN_ROLE, basesepolia.NORMAL_TIMELOCK],
16+
},
17+
]);
18+
};
19+
export default vip007;

0 commit comments

Comments
 (0)