Skip to content

Commit

Permalink
Merge pull request #498 from VenusProtocol/vip/ven-2913
Browse files Browse the repository at this point in the history
[VEN-2913]: Omnichain Governance on Unichain
  • Loading branch information
GitGuru7 authored Feb 20, 2025
2 parents c7c6fd7 + 2edfb78 commit c82aeb1
Show file tree
Hide file tree
Showing 22 changed files with 3,232 additions and 4 deletions.
19 changes: 19 additions & 0 deletions multisig/proposals/unichainmainnet/vip-009/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { NETWORK_ADDRESSES } from "src/networkAddresses";

import { makeProposal } from "../../../../src/utils";

const { unichainmainnet } = NETWORK_ADDRESSES;

export const ACM = "0x1f12014c497a9d905155eB9BfDD9FaC6885e61d0";
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";

export const vip009 = () => {
return makeProposal([
{
target: ACM,
signature: "grantRole(bytes32,address)",
params: [DEFAULT_ADMIN_ROLE, unichainmainnet.NORMAL_TIMELOCK],
},
]);
};
export default vip009;
19 changes: 19 additions & 0 deletions multisig/proposals/unichainsepolia/vip-009/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { NETWORK_ADDRESSES } from "src/networkAddresses";

import { makeProposal } from "../../../../src/utils";

const { unichainsepolia } = NETWORK_ADDRESSES;

export const ACM = "0x854C064EA6b503A97980F481FA3B7279012fdeDd";
const DEFAULT_ADMIN_ROLE = "0x0000000000000000000000000000000000000000000000000000000000000000";

export const vip009 = () => {
return makeProposal([
{
target: ACM,
signature: "grantRole(bytes32,address)",
params: [DEFAULT_ADMIN_ROLE, unichainsepolia.NORMAL_TIMELOCK],
},
]);
};
export default vip009;
Loading

0 comments on commit c82aeb1

Please sign in to comment.