Hi SOL-DEVs, a quick question, I’m not a developer myself, but in the process of setting up a cool platform! and learning a lot in the process... ;)
Does anyone have any tips for how to do the naming of thousands of unique tokens? 🤔🤣
Mar 18, 2019, 8:43 PM
Erc 20 is one name per deployed contract. I think there are some newer standards like 721 and 1155 that can work with batches of assets
But the simplest approach would just be a script to deploy each erc-20 with a unique name one by one
The script could be a web3js or a solidity contract that instantiates the child erc20s. There is a block gas limit so doing the instantiation using an off chain web3 script is probably better
Mar 18, 2019, 8:47 PM
Okay... first of all, tnx! :-)
These are ERC-721s btw.
Mar 18, 2019, 8:47 PM
Oh very cool. And welcome 😊
Mar 18, 2019, 8:47 PM
Mmm and would you be able to set this script like this in a certain genre? 🤔
( sorry, I have lots to learn ; )
( sorry, I have lots to learn ; )
Mar 18, 2019, 8:51 PM
Its okay! Yeah not as familiar with 721 but it should be really possible to give every asset a unique name
If you want to share details in PM you can and I'll get back with you 👌
Mar 18, 2019, 8:53 PM
Tnx! Its okay for now... and I’m not the one doing the developing actually ;).. but I thought a bit of info or tips about this are more than welcome! 👍
I’m still in first phase of
cryptozombies ;) 🤫
cryptozombies ;) 🤫
Mar 18, 2019, 8:59 PM
You can write a javascript script, which calls you function with the respective parameters 1000 times.
Mar 19, 2019, 6:54 AM