Skip to content

Commit

Permalink
Merge pull request #119 from VenusProtocol/feat/xvs-to-dest
Browse files Browse the repository at this point in the history
[VEN-2216] [VEN-2217] [VEN-2286]: send XVS to dest chain to configure the rewards (Sepolia, Ethereum)
  • Loading branch information
GitGuru7 authored Mar 18, 2024
2 parents d16ac26 + 2fee966 commit 92352dc
Show file tree
Hide file tree
Showing 16 changed files with 6,022 additions and 1,399 deletions.
14 changes: 14 additions & 0 deletions multisig/proposals/vip-013/vip-013-ethereum.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { makeProposal } from "../../../src/utils";

const XVS_BRIDGE_ADMIN = "0x9C6C95632A8FB3A74f2fB4B7FfC50B003c992b96";
const TREASURY = "0xFD9B071168bC27DBE16406eC3Aba050Ce8Eb22FA";

export const vip013 = () => {
return makeProposal([
{
target: XVS_BRIDGE_ADMIN,
signature: "setWhitelist(address,bool)",
params: [TREASURY, true],
},
]);
};
14 changes: 14 additions & 0 deletions multisig/proposals/vip-013/vip-013-sepolia.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { makeProposal } from "../../../src/utils";

const XVS_BRIDGE_ADMIN = "0xd3c6bdeeadB2359F726aD4cF42EAa8B7102DAd9B";
const TREASURY = "0x4116CA92960dF77756aAAc3aFd91361dB657fbF8";

export const vip013 = () => {
return makeProposal([
{
target: XVS_BRIDGE_ADMIN,
signature: "setWhitelist(address,bool)",
params: [TREASURY, true],
},
]);
};
Loading

0 comments on commit 92352dc

Please sign in to comment.