Skip to content

Commit

Permalink
fix deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
vm06007 committed Sep 16, 2024
1 parent b7ab46a commit 0c9e3e1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions contracts/Scripts/Deployer.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -118,25 +118,29 @@ contract DeploySimpleFarm is Script {

function run() public {

uint256 DEFAULT_DURATION = 2592000;
address WZANO_USDT_LP = 0x294fff8FbfE37dA6FFD410b4cA370b92AE853a9B;
// uint256 DEFAULT_DURATION = 2592000;
// address WZANO_USDT_LP = 0x294fff8FbfE37dA6FFD410b4cA370b92AE853a9B;
// address VERSE_TOKEN = 0x249cA82617eC3DfB2589c4c17ab7EC9765350a18;
address WZANO_TOKEN = 0xdb85f6685950E285b1E611037BEBe5B34e2B7d78;
address OWNER = 0x641AD78BAca220C5BD28b51Ce8e0F495e85Fe689;
// address WZANO_TOKEN = 0xdb85f6685950E285b1E611037BEBe5B34e2B7d78;
// address OWNER = 0x641AD78BAca220C5BD28b51Ce8e0F495e85Fe689;

vm.startBroadcast(
vm.envUint("PRIVATE_KEY")
);

SimpleFarm farm = new SimpleFarm();

/*
farm.initialize(
WZANO_USDT_LP,
WZANO_TOKEN,
DEFAULT_DURATION,
OWNER,
OWNER
OWNER,
"WZANO_USDT_LP",
"WZANO_USDT_LP"
);
*/

console.log(
address(farm),
Expand Down

0 comments on commit 0c9e3e1

Please sign in to comment.