By using the Truffle Console and Ganache test node, I am calling this function:
Contract.deployed().then(function(instance) {return instance.createListing("1", 3, {from: address})})
When this will be deployed to the Mainnet, I will need to call this function 200 times. Figured, that a for loop should be used, however, can't understand how to get together one and how to run it on the Mainnet (geth?).
What would be the best way of repeating this setter 200 times on the Mainnet? Also, I guess a delay in between the calls needs to be considered when on Mainnet.