According to the doc https://docs-babylon.radixdlt.com/main/scrypto/examples/hello-nft.html ,
we instantiate / deploy NFTs via resim
command line tool in Bash.
What if I want to mint 10,000 NFTs?
I suppose I can use NodeJs or Rust to read each NFT's metadata JSON file, and generate a Bash command like
resim call-function <PACKAGE_ADDRESS> HelloNft instantiate_hello_nft "NftName", 001, "purple", ...
Then run this command one by one in a loop...
Is that how to do it? Any example?
Is there a NodeJs or Rust code for doing this with automation?
Something like Ethereum Hardhat or Foundry for Scrypto?