We will introduce solana, using Solana to create NFT, create wallet transactions
npx create-react-app airdrop-project
cd airdrop-project
yarn add @solana/web3.js or npm install --save @solana/web3.js
(Let's get Solana set up on your computer)[https://github.com/LearnWithArjun/solana-env-setup]
solana config set --url localhost
solana config get
solana-keygen new --force
Once created, you can see the wallet's Pubkey (Wallet receiver address) and other people can send you money through the pubkey
solana-keygen pubkey
solana balance --url devnet
solana airdrop ${number} ${publickey} --url devnet
cargo install spl-token-cli
spl-token create-token --url devnet
spl-token create-account ${token address} --url devnet
spl-token balance ${token address} --url devnet
spl-token mint ${token address} ${number} --url devnet
spl-token supply ${token address} --url devnet
spl-token authorize ${token address} mint --disable --url devnet
spl-token burn ${token account} ${number} --url devnet