Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VEN-2216] [VEN-2217] [VEN-2286]: send XVS to dest chain to configure the rewards (Sepolia, Ethereum) #119

Merged
merged 24 commits into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
97f620e
feat: send XVS to dest chain
GitGuru7 Dec 6, 2023
3687ca7
chore: update file name
GitGuru7 Dec 6, 2023
85e0d9a
feat: increase minting cap on destination chain
GitGuru7 Dec 6, 2023
2bbb4ed
Merge branch 'develop' into feat/xvs-to-dest
GitGuru7 Dec 27, 2023
7aeaf4a
feat: send xvs to sepolia
GitGuru7 Dec 27, 2023
9cfa98b
chore: update block number to latest
GitGuru7 Dec 29, 2023
efb6c03
feat: send XVS to ethereum
GitGuru7 Jan 2, 2024
c5afb9d
fix: added commands for crypto transfer and updated xvs amount
web3rover Jan 5, 2024
d9c26ad
fix: added new vip for remaining xvs
web3rover Jan 8, 2024
e81f234
fix: renamed 005 to 007
web3rover Jan 8, 2024
c73cc4f
fix: remove bootstrap liquidity
web3rover Jan 10, 2024
68d6298
fix: update block number
web3rover Jan 10, 2024
5a61b97
fix: removed vip-223
web3rover Jan 10, 2024
0eae623
fix: updated block number
web3rover Jan 10, 2024
6538c89
feat: update the block number of simulation to make it newer
chechu Jan 12, 2024
d8e2a93
chore: update cross chain gas fee and rearrange approve steps
GitGuru7 Mar 12, 2024
9e58806
chore: update block number and XVS amount to bridge
GitGuru7 Mar 14, 2024
be3340e
feat: transfer to the community wallet around 30 ETH from the vETH he…
chechu Mar 15, 2024
4da71ea
refactor: rename variable name from chainID to endpointID
GitGuru7 Mar 15, 2024
4673124
feat: add description for VIP 272
chechu Mar 15, 2024
d904cc7
refactor: move to the right folder the VIP 272
chechu Mar 15, 2024
ac60443
refactor: move the executed multisig TX to a new folder not already i…
chechu Mar 15, 2024
c8ac0a3
Merge branch 'develop' into feat/xvs-to-dest
chechu Mar 15, 2024
2fee966
feat: update description of VIP-272
chechu Mar 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading