diff --git a/scripts/deploy-erc20.js b/scripts/deploy-erc20.js index 1b6e40375..720f842f5 100644 --- a/scripts/deploy-erc20.js +++ b/scripts/deploy-erc20.js @@ -210,15 +210,15 @@ module.exports = async function (callback) { const accounts = await web3.eth.getAccounts() console.log("Current configured address to make transactions:", accounts[0]) - // -- network + // -- --network // await checkChildERC20(process.argv[6]) // await checkChildERC721(process.argv[6]) - // -- network
+ // -- --network
// await deployTestERC20OnMainchain(accounts[0]) // await deployTestERC721OnMainchain(accounts[0]) - // -- network + // -- --network // await deployChildERC20AndMap({ // token: process.argv[6], // name: process.argv[7], @@ -227,7 +227,7 @@ module.exports = async function (callback) { // doMapping: process.argv[10] === 'true' // }) - // -- network + // -- --network // await deployChildERC721AndMap({ // token: process.argv[6], // name: process.argv[7], @@ -235,7 +235,7 @@ module.exports = async function (callback) { // doMapping: process.argv[9] === 'true' // }) - // -- network + // -- --network // await mapTokenOnMainchain( // process.argv[6], // root token // process.argv[7], // child token diff --git a/scripts/deposit.js b/scripts/deposit.js index cfeebb79b..101a73a36 100644 --- a/scripts/deposit.js +++ b/scripts/deposit.js @@ -65,29 +65,29 @@ module.exports = async function (callback) { const accounts = await web3.eth.getAccounts() console.log("Current configured address to make transactions:", accounts[0]) - // -- network
+ // -- --network
// await depositERC20({ - // addr: accounts[0], + // addr: accounts[0], // rootToken: process.argv[6], // amount: process.argv[7], // }) - // -- network
+ // -- --network
// await depositERC721({ - // addr: accounts[0], + // addr: accounts[0], // rootToken: process.argv[6], // root token // tokenID: process.argv[7], // nft id // }) - // -- network + // -- --network // await checkDepositedERC20Balance({ - // addr: accounts[0], + // addr: accounts[0], // token: process.argv[6], // child token // }) - // -- network + // -- --network // await checkDepositedERC721Balance({ - // addr: accounts[0], + // addr: accounts[0], // token: process.argv[6], // child token // tokenID: process.argv[7], // nft id // })