WTF Solana Web3.js Tutorial Lecture 3: Transfer of Sol has been updated!
In Solana, a transaction can contain one or more instructions, and each transaction must include: account information, instructions, and signers. Once the transaction is constructed, it must be signed and sent to be packaged into a block by the validator nodes. @solana @Solana_zh
WTF Solana Web3.js Tutorial Lecture 2: Wallet has been updated!
In Solana, each wallet is a Keypair, consisting of a private key (secretKey) and a public key (publicKey). The Keypair class in solana web3.js provides the ability to create, export, and import wallets. @solana @Solana_zh