I am looking to create a dapp with Flutter that lets users mint NFT's. I know that there is the Web3 package and I have seen also examples how to interact with ERC contracts. But is it possible to interact with ERC721 contracts with Flutter and Web3? Can someone point me in the right direction? I want to avoid building it in react as I have more experience with Flutter.
Asked
Active
Viewed 696 times
1
-
Have you found solution for minting nfts with this package or with flutter? – tmaihoff Jan 11 '22 at 07:44
1 Answers
0
It looks like author of the flutter_web3 package has it planned as noted in this recent issue. Looking at how the ABI is implemented for ERC1155 in commit #9, it doesn't look too difficult to implement ERC721 the same way. If the author can't do this in the next month or so I'll probably take a stab at it myself.
The author also wrote an interesting article about the basics of writing a flutter application that uses the flutter_web3 package mentioned above.

Dom
- 3,173
- 4
- 30
- 39
-
Has this been implemented by flutter_web3 or by yourself in the end? Can you update your answer showing how you solved the issue in Flutter? Thanks! – RedDeath Mar 22 '22 at 14:43
-
@RedDeath I didn't implement this because my projects took me down a different path. I may look at it in the future. Maybe check with the author via the GitHub issue where he states he is considering adding ERC721. – Dom Mar 22 '22 at 22:12