Posts

Showing posts with the label simplecollectiblesmartcontract

Creating NFTs with Smart Contracts and Python Brownie

Image
In our previous article about the Non-Fungible tokens , we explained about the methods of ERC-721. In this tutorial, we are going to use those methods to write the simple_collectible.sol smart contract and deploy it on the Rinkeby chain. In other words, we are going to create NFTs with Python Brownie tools. But before that, we also want to connect our test wallet to https://testnets.opensea.io in order to create an account in OpenSea which is a marketplace for NFTs. Creating NFTs with Python Brownie In this tutorial, we are going to use those methods to write the simple_collectible.sol smart contract and deploy it on the Rinkeby chain. But before that, we also want to connect our test wallet to https://testnets.opensea.io in order to create an account in OpenSea which is a marketplace for NFTs. To begin writing our smart contract, we have 2 options: 1. Use Brownie not mix by typing the below command in the terminal: Coppied to clipboard. browni...