Add scripts for ERC721 token interaction (#203)

This commit is contained in:
prathamesh0 2022-10-17 05:08:59 -05:00 committed by GitHub
parent 45111e68ac
commit 74747ce49a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default {
solidity: '0.8.0',
networks: {
docker: {
url: 'http://dapptools:8545'
url: 'http://geth:8545'
}
},
paths: {

View File

@ -25,9 +25,13 @@
"inspect-cid": "DEBUG=vulcanize:* ts-node src/cli/inspect-cid.ts",
"index-block": "DEBUG=vulcanize:* ts-node src/cli/index-block.ts",
"nft:deploy": "hardhat --network localhost nft-deploy",
"nft:deploy:docker": "hardhat --network docker nft-deploy",
"nft:mint": "hardhat --network localhost nft-mint",
"nft:mint:docker": "hardhat --network docker nft-mint",
"nft:transfer": "hardhat --network localhost nft-transfer",
"nft:transfer:docker": "hardhat --network docker nft-transfer",
"block:latest": "hardhat --network localhost block-latest",
"block:latest:docker": "hardhat --network docker block-latest",
"account": "hardhat --network localhost account"
},
"repository": {