Skip to content

Commit ac4227e

Browse files
committed
Deploy new vesting A
1 parent 8cd1a42 commit ac4227e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

addresses/address.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"Splitter": "0xadF0D06e58E618de36Af0F1b52891b14FAA61187",
141141
"Distribute": "0x01BE353d9Fd3A64C591A30A8c4a6a37B5dfAe165",
142142
"VestingWallet0": "0x8D011915C437AD5f5e3B0E4c6dd6380c92599f99",
143-
"VestingWalletA": "0x4Fd5ECf4Af8490418462A7d80e90A0530eFb9ac5"
143+
"VestingWalletA": "0xf9FB1f54eA825734E3a77e73A3864f4B46C815d9"
144144
},
145145
"goerli": {
146146
"chainId": 5,

scripts/deploy_vesting.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ async function main() {
100100
const blockTimestamp = block.timestamp
101101
const endDate = "2024-03-14"
102102
const endDateUnix = parseInt(new Date(endDate).getTime() / 1000)
103-
const vestingPeriod = endDateUnix - blockTimestamp
104-
const deployVestingWallet0 = await VestingWallet0.connect(owner).deploy(addresses.Splitter, blockTimestamp, vestingPeriod, options)
103+
const startTimestamp = 1705017600 // Fri Jan 12 2024 00:00:00 GMT+0000
104+
const endTimestamp = 1709856000 // Fri Mar 08 2024 00:00:00 GMT+0000 - this is when we top up last week of DF Main1
105+
const vestingPeriod = endTimestamp - startTimestamp
106+
const deployVestingWallet0 = await VestingWallet0.connect(owner).deploy(addresses.Splitter, startTimestamp, vestingPeriod, options)
105107
await deployVestingWallet0.deployTransaction.wait();
106108
addresses.VestingWalletA = deployVestingWallet0.address;
107109
if (show_verify) {

0 commit comments

Comments
 (0)