@@ -49,6 +49,7 @@ async function main() {
49
49
OPFOwner = "0x0d27cd67c4A3fd3Eb9C7C757582f59089F058167" ;
50
50
routerOwner = OPFOwner ;
51
51
OceanTokenAddress = "0x967da4048cD07aB37855c090aAF366e4ce1b9F48" ;
52
+ gasPrice = ethers . utils . parseUnits ( '16' , 'gwei' )
52
53
break ;
53
54
54
55
default :
@@ -100,12 +101,21 @@ async function main() {
100
101
const blockTimestamp = block . timestamp
101
102
const endDate = "2024-03-14"
102
103
const endDateUnix = parseInt ( new Date ( endDate ) . getTime ( ) / 1000 )
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
104
+ //vesting A
105
+ //const startTimestamp = 1705017600 // Fri Jan 12 2024 00:00:00 GMT+0000
106
+ //const endTimestamp = 1709856000 // Fri Mar 08 2024 00:00:00 GMT+0000 - this is when we top up last week of DF Main1
107
+ //vesting B
108
+ //const startTimestamp = 1710028800 // Sun Mar 10 2024 00:00:00 GMT+0000
109
+ //const endTimestamp = 1725750000 // Sat Sep 07 2024 23:00:00 GMT+0000 - this is when we top up last week of DF Main2
110
+ //vesting C
111
+ const startTimestamp = 1725750000 // Sat Sep 07 2024 23:00:00 GMT+0000
112
+ const endTimestamp = 1741392000 // Sat Mar 08 2025 00:00:00 GMT+0000 - this is when we top up last week of DF Main3
113
+
114
+
105
115
const vestingPeriod = endTimestamp - startTimestamp
106
116
const deployVestingWallet0 = await VestingWallet0 . connect ( owner ) . deploy ( addresses . Splitter , startTimestamp , vestingPeriod , options )
107
117
await deployVestingWallet0 . deployTransaction . wait ( ) ;
108
- addresses . VestingWalletA = deployVestingWallet0 . address ;
118
+ addresses . VestingWalletC = deployVestingWallet0 . address ;
109
119
if ( show_verify ) {
110
120
console . log ( "\tRun the following to verify on etherscan" ) ;
111
121
console . log ( "\tnpx hardhat verify --network " + networkName + " " + addresses . VestingWalletA + " " + addresses . Splitter + " " + blockTimestamp + " " + vestingPeriod )
0 commit comments