forked from ConstellationCrypto/bridging-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update contract name and deploy script
- Loading branch information
1 parent
ef47372
commit e836f53
Showing
4 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
standard-bridge-custom-token/scripts/deployBridgeFlagToken.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
require("dotenv").config(); | ||
|
||
const { ethers, run } = require("hardhat"); | ||
const { TOKENS } = require("../config"); | ||
|
||
async function main(token) { | ||
const l2CustomERC20Factory = await ethers.getContractFactory( | ||
"MantaMintableERC20WithBridgeFlag" | ||
); | ||
const args = [ | ||
"0x4200000000000000000000000000000000000010", | ||
token.l1TokenAddress, | ||
token.name, | ||
token.symbol, | ||
token.decimals, | ||
]; | ||
const l2CustomERC20 = await l2CustomERC20Factory.deploy(...args); | ||
console.log(`${token.symbol} L2 Address: ${l2CustomERC20.address}`); | ||
|
||
await l2CustomERC20.deployTransaction.wait(); | ||
|
||
await run("verify:verify", { | ||
address: l2CustomERC20.address, | ||
constructorArguments: args, | ||
contract: "contracts/MantaMintableERC20WithBridgeFlag.sol:MantaMintableERC20WithBridgeFlag" | ||
}); | ||
} | ||
|
||
const tokenInfo = TOKENS[process.env.DEPLOY_TOKEN_NAME]; | ||
if (!tokenInfo) { | ||
console.error('Invalid Token: "process.env.DEPLOY_TOKEN_NAME"'); | ||
return; | ||
} | ||
if (tokenInfo.l2TokenAddress) { | ||
console.error(`Already Deployed: ${tokenInfo.l2TokenAddress}`); | ||
return; | ||
} | ||
|
||
main(tokenInfo).catch((error) => { | ||
console.error(error); | ||
process.exitCode = 1; | ||
}); |