Solana How to sign messages and verify signatures on Solana with React and JavaScript In this tutorial, we are going to learn how to sign a message with the Solana wallet connected to your React app and how to verify that a signature was generated with the right wallet.
Wagmi The complete guide to use Wagmi hooks in a React app Learn how to configure Wagmi in your React application and how to use the Wagmi hooks to interact with connected wallets, contracts and the blockchain.
Wagmi How to interact with smart contracts using Wagmi in React In this tutorial, we are going to learn how to interact with smart contracts using Wagmi in React. How to read data from smart contracts and send transactions that call write functions.
Wagmi How to handle errors when a transaction fail in React using Wagmi In this tutorial, we are going to learn how to handle errors when you send a transaction from your React app using Wagmi but the transaction fails on the blockchain.
Wagmi How to fix the "no such file or directory" warning in node_modules in Wagmi How to fix the "ENOENT: no such file or directory" and "failed to parse source map" warnings in the node_modules that appear when using Wagmi.
Wagmi How to request the connected wallet to switch the selected network using Wagmi In this tutorial, we are going to learn how to request the connected wallet to switch the selected network and use another network using Wagmi in React.
Wagmi How to get the address and all the information about an ENS name using Wagmi We are going to learn how to get the address and all the available information like the avatar, personal information or social URLs about an ENS name using Wagmi.
Wagmi How to get the current gas price using Wagmi In this tutorial, we are going to learn how to estimate the current gas price in your React application using the Wagmi useFeeData hook.
Wagmi How to wait for a transaction to complete in your React app using Wagmi In this tutorial, we are going to learn how to wait for a transaction to complete in your React application using Wagmi and how to get information about that transaction.
Wagmi How to send ERC-20 tokens to another address in React using Wagmi In this tutorial, we are going to learn how to send ERC-20 tokens from the wallet connected to your React app to another address using Wagmi.
Wagmi How to estimate the gas fees a transaction will cost using Wagmi In this tutorial, we are going to learn how to estimate the gas fees that a transaction will cost using Wagmi by estimating the amount of gas needed and multiplying it by the gas price.
Wagmi How to get the state of a transaction in React using Wagmi Learn how to get the state of a transaction in your React application using Wagmi and the useTransaction hook and the getTransactionReceipt function from Ethers JS.
Wagmi How to send an Ethereum transaction using Wagmi In this tutorial, we are going to learn how to send an Ethereum transaction from the wallet connected to your React app using Wagmi.
React Fix the "BREAKING CHANGE: webpack < 5 used to include polyfills for node.js" error in React In this guide, we are going to learn how to fix the "BREAKING CHANGE: webpack < 5 used to include polyfills for node.js" error in Web3 JS.
Solana How to get all the transactions of an address on Solana in JavaScript In this tutorial, we are going to learn how to get all the transactions of an address on the Solana network with JavaScript and the Solana Web3.js library or the JSON-RPC API.
Solana How to get the state of a transaction on Solana using JavaScript In this tutorial, we are going to learn how to get information about the state of a Solana transaction using JavaScript, with the Solana Web3.js library and the JSON-RPC API.
Solana Featured How to transfer SPL tokens on the Solana blockchain in React Learn how to transfer SPL tokens on the Solana blockchain from the wallet connected to your React app and the @solana/spl-token and @solana/wallet-adapter-react libraries.
Solana Featured How to get the token balances of a Solana address with JavaScript In this tutorial, we are going to learn how to get the balance of all the tokens that a Solana address holds using JavaScript and the @solana/web3.js library.
Solana How to get the Solana balance of an address with JavaScript In this tutorial, we are going to learn how to get the Solana balance of any address and the balance of the connected wallet using JavaScript with the @solana/web3.js library/
Solana Featured How to send a Solana transaction from the connected wallet in React In this tutorial, we are going to learn how to send a Solana transaction from the wallet connected to your React app using the Solana Web3 JS library.
Solana How to compute the fee for a Solana transaction in JavaScript or React In this tutorial, we are going to learn how to compute the network fee that a transaction will cost on Solana in JavaScript or React with the Solana Web3 JS library.