Join the community
Hi, what are you looking for?
Definitions
What is blockchain?
At its core, a blockchain is a database shared across multiple computers.
Triggers for the database operations are called transactions The data contained in a transaction specifies the operation to be performed.
In an account-based blockchain, the validity of a new transaction is checked against a database of user accounts. An account is a portion of the database identified by the account address. This is opposed to UTXO-based blockchains (such as Bitcoin, see Wikipedia page), where there is no concept of account and the validity of a transaction is based on a database of referenced past transactions.
The cost of processing the transaction and updating the blockchain is specified in the transaction fee and paid using tokens.
Transactions are shared among nodes connected in a P2P network and are grouped together into blocks.
The validity of a block (and all transactions within it) is determined against the accounts state.
The consensus protocol specifies who has the right to forge a new block and how agreement on blocks is reached. After the block has been forged, it is added to the blockchain, and all state changes induced by the block transactions are applied.
What is NFT
NFT stands for non-fungible token. Ethereum.org explains it as: NFTs are tokens that we can use to represent ownership of unique items. They let us tokenize things like art, collectibles, and even real estate.
Here is an overview of NFT in a blockchain application/plugin that have the following functionality

What are Smart Contracts?
Smart contracts are simply programs stored on a blockchain that run when predetermined conditions are met. They typically are used to automate the execution of an agreement so that all participants can be immediately certain of the outcome, without any intermediary’s involvement or time loss. They can also automate a workflow, triggering the next action when conditions are met.
How Smart Contracts work?
Smart contracts work by following simple “if/when…then…” statements that are written into code on a blockchain. A network of computers executes the actions when predetermined conditions have been met and verified. These actions could include releasing funds to the appropriate parties, registering a vehicle, sending notifications, or issuing a ticket. The blockchain is then updated when the transaction is completed. That means the transaction cannot be changed, and only parties who have been granted permission can see the results.
Remember! Smart contracts are written in solidity language. It is compiled as json file and this json file is used to deploy the contracts. Smart contracts are deployed on a network i.e: Ethereum, Polygon, Soalan etc. Then this smart contract store data about NFT.
Within a smart contract, there can be as many stipulations as needed to satisfy the participants that the task will be completed satisfactorily. To establish the terms, participants must determine how transactions and their data are represented on the blockchain, agree on the “if/when…then…” rules that govern those transactions, explore all possible exceptions, and define a framework for resolving disputes.
Then the smart contract can be programmed by a developer – although increasingly, organizations that use blockchain for business provide templates, web interfaces, and other online tools to simplify structuring smart contracts.
Minting an NFT
Minting an NFT means creating and listing an NFT on the blockchain via Smart Contract. When an NFT is created on a blockchain and PUT on sale it means anyone can purchase that NFT by paying its price + gas fee by his wallet. For minting an NFT you need to pay Gas Fees.
Gas Fee
💡 Gas fee is the minimum charge cut by solidity functions during some actions.
A gas fee is a term given to transaction fees on the blockchain network(i.e: Ethereum, Polygon). According to Ethereum’s developer pages, gas is “the fuel that allows the [Ethereum network] to operate, in the same way, that a car needs gasoline to run.”
What is a transaction on the blockchain?
A transaction is a transfer of value on the blockchain. In very simple terms, a transaction is when one person gives a designated amount of cryptocurrency they own to another person.
To perform transactions on the blockchain, you need a wallet, a program linked with the blockchain to which only you have access, that keeps track of the crypto you own and allows you to transact with it. Each wallet is protected by a special cryptographic method that uses a unique pair of distinct but connected keys: a private and a public key.
A public key, also known as the address, is a series of letters and numbers that a user must share in order to receive funds. In contrast, a private key must be kept secret, much like your bank card pin number, as it authorizes the spending of any funds received by the associated public key.
With their wallet, a user (whoever has the private key) can authorize or sign transactions and thereby transfer value to a new owner. The transaction is then broadcast to the network to be included in the blockchain.
Important!
Transactions have hash codes that can be checked on different network scanner sites.For example, you can verify Ethereum transaction hash on https://etherscan.io/
What is token standards?
A token standard defines the smart contract and features that the token issued by it has. There are many different standards on different blockchains. The simplest categorization would be between fungible and non-fungible tokens.
Over time, Ethereum has gained more and more popularity and now most NFTs are issued on this blockchain. Ethereum token standards start with the abbreviation ‘ERC’ (Ethereum Request for Comments).
💡Smart NFT currently Supports ERC-721 and BEP-721 tokens
The ERC standards
- ERC-721 – non-fungible tokens
- ERC-223 – much like ERC-20 but with a feature that ensures the tokens are only sent to compatible addresses. This prevents loss of access to the tokens since they cannot be retrieved from incompatible addresses.
- ERC-827 – allows the approval of fungible token transfers so the tokens can be spent by an on-chain third party.
- ERC-777 – an improvement on ERC-20. Users can send tokens on behalf of different addresses.
- ERC-1155 – a smart contract that allows users to manage Ethereum tokens of many types. It can contain ERC-20 or ERC-721 tokens and it works for all types of assets: fungible and non-fungible.
- ERC-1137 – a token standard designed for recurring payments. It works well for subscriptions requiring payments at certain intervals.
- ERC-998 – a smart contract that allows users to merge several NFTs into one NFT.
- ERC-875 – a smart contract that allows users to transfer several NFTs in a single transaction.
- ERC-865 – a smart contract that allows users to pay for a transaction with tokens instead of gas.