Skip to content

Commit 0c9e3e1

Browse files
committed
fix deployment script
1 parent b7ab46a commit 0c9e3e1

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

contracts/Scripts/Deployer.s.sol

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,25 +118,29 @@ contract DeploySimpleFarm is Script {
118118

119119
function run() public {
120120

121-
uint256 DEFAULT_DURATION = 2592000;
122-
address WZANO_USDT_LP = 0x294fff8FbfE37dA6FFD410b4cA370b92AE853a9B;
121+
// uint256 DEFAULT_DURATION = 2592000;
122+
// address WZANO_USDT_LP = 0x294fff8FbfE37dA6FFD410b4cA370b92AE853a9B;
123123
// address VERSE_TOKEN = 0x249cA82617eC3DfB2589c4c17ab7EC9765350a18;
124-
address WZANO_TOKEN = 0xdb85f6685950E285b1E611037BEBe5B34e2B7d78;
125-
address OWNER = 0x641AD78BAca220C5BD28b51Ce8e0F495e85Fe689;
124+
// address WZANO_TOKEN = 0xdb85f6685950E285b1E611037BEBe5B34e2B7d78;
125+
// address OWNER = 0x641AD78BAca220C5BD28b51Ce8e0F495e85Fe689;
126126

127127
vm.startBroadcast(
128128
vm.envUint("PRIVATE_KEY")
129129
);
130130

131131
SimpleFarm farm = new SimpleFarm();
132132

133+
/*
133134
farm.initialize(
134135
WZANO_USDT_LP,
135136
WZANO_TOKEN,
136137
DEFAULT_DURATION,
137138
OWNER,
138-
OWNER
139+
OWNER,
140+
"WZANO_USDT_LP",
141+
"WZANO_USDT_LP"
139142
);
143+
*/
140144

141145
console.log(
142146
address(farm),

0 commit comments

Comments
 (0)