I am very curious to learn about the move language, I am really thankful for this guide.
Noted well
it is awesome
Where can I find it
thats interesing! Thank you for sharing this buddy!
A good work thank s sir
the Aptos Ecosystem that have focused on education and learning concerning the Aptos Move environment⊠aptos is great
I literally thought of learning the move language to contribute to the Aptos ecosystem.
Looking forward to more future potentials.
Iâve learnt HTML, currently learning CSS , Am I on the right track?
Of course, yes.
Good information
Hello all,
Iâve recently gravitated to Aptos as a fellow MOVE network (formally developed rather heavily on Sui) and I have some questions regarding the Fungible Asset standard.
In order to effectively create a fungible token (ERC-20 equivalent) my understanding based on the documentation is that you must:
- Create an immutable object to âownâ the metadata object for the new fungible asset.
- Generate any refs you may desire: mint ref being obviously required in order to mint any supply, but others can also be added (i.e. burn & transfer ref)
first question
What is the best way to effectively âfreezeâ or drop the mint ref after the initial TGE? I do not want to have the ability to mint tokens at a future date, I simply want to mint the total supply upon deployment and then freeze or burn or drop the mint ref and not allow anyone to have the ability to mint any future tokens of my fungible assetâwhat is the best way to achieve this result? Would I simply create the mint ref in the constructor ref (since they are destroyed upon deployment) and mint the total supply that way?
second question
I have been told by a friend that I need to âregisterâ my fungible asset before it can be visualized by any Aptos wallet or be explorable via Aptos explorers. Is this correct? How do I effectively register my newly created fungible asset? Is this handled in the actual token.move code or is that an external function that happens elsewhere? Or is this what creating the âprimary storeâ effectively does? Unsure exactly what this means and want to be sure that my fungible asset is freely transferable and able to be held by various wallets/viewed on explorers etcâessentially am looking for functional parity with any basic ERC-20 token (discoverable name, symbol, decimals, image, freely tradeable, able to be visualized in any wallet and viewable on any explorer for Aptos, but not able to mint future tokens past initial token genesis event, cannot burn tokens, and cannot control the supply or restrict anyone from trading the token.)
Apologies for the super long post, but itâs of vital importance that I make sure I have all these details properly ironed out and this seems to be the best place. Thank you so much for making it this far and I hope to get some confirmations or pointed in the right direction from this. Cheers!