Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions args/LFGAirDropArg.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = [
"0xF42EBbF89D8fB9eA0a87d836C49CfD688EC5b2b6", // Owner
"0xF93f6b686f4A6557151455189a9173735D668154", // token
"0x3ca3822163D049364E67bE19a0D3B2F03B7e99b5", // owner
"0xc4f7Cf2Cbc05970105f424586eeCAF96F980Db8d", // token
];
4 changes: 2 additions & 2 deletions deploy/5_lfg_airdrop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ async function deploy() {
"TokenAirDrop"
);
const tokenAirDrop: Contract = await TokenAirDrop.deploy(
"0xF42EBbF89D8fB9eA0a87d836C49CfD688EC5b2b6", // owner
"0xF93f6b686f4A6557151455189a9173735D668154" // token
"0x3ca3822163D049364E67bE19a0D3B2F03B7e99b5", // owner
"0xc4f7Cf2Cbc05970105f424586eeCAF96F980Db8d" // token
);
await tokenAirDrop.deployed();

Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const config = {
},
},
etherscan: {
apiKey: process.env.BSCSCAN_API
apiKey: process.env.POLYSCAN_API
},
paths: {
artifacts: "./artifacts",
Expand Down