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 listen for contract events and get logs using Wagmi In this tutorial, we are going to learn how to listen for smart contract events and get logs and filter them in your React app using Wagmi hooks and Ethers JS.
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 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 sign data and verify the address that generated the signature using Wagmi In this tutorial, we are going to learn how to sign data using the wallet connected to your app and how to verify the address that generated the signature using Wagmi hooks.
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 get the Ethereum and ERC-20 tokens balance of an address using Wagmi In this tutorial, we are going to learn how to get the Ethereum balance and the ERC-20 tokens balance of an address in your React application using Wagmi or Ethers JS.
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.
Web3Modal How to connect a wallet to your React app using Web3Modal V2 In this tutorial, we are going to learn how to connect a wallet to your React app using the Web3Modal library (v2) and Ethers JS. It supports all the major wallets, it's elegant and you can customise it (and it's free!).
Ethers JS How to handle errors when sending a transaction using Ethers JS In this tutorial, we are going to learn how to handle errors that might happen when you send a transaction using Ethers JS and JavaScript.
Ethers JS How to get the revert reason on a smart contract function Ethers JS In this tutorial, we are going to learn how to get the reason why a transaction reverted when calling a smart contract function using Ethers JS and JavaScript.
Ethers JS How to listen for smart contract events and get logs using Ethers JS In this tutorial, we are going to learn how to get all the logs of a smart contract and how to filter them and how to listen for smart contract events using Ethers JS and JavaScript.
Ethers JS How to wait for a transaction to complete using Ethers JS In this tutorial, we are going to learn how to wait for a transaction to complete (either it fails or succeeds) using Ethers JS and JavaScript.
Ethers JS How to get the address and all the information about an ENS name Ethers JS In this tutorial, we are going to learn how to get the address of an ENS name and other information like the avatar, addresses from other blockchains, other the email using Ethers JS.
Ethers JS How to get the ERC-20 token balance of an address using Ethers JS In this tutorial, we are going to learn how to interact with ERC-20 tokens smart contracts to get the token balance of an address using Ethers JS.
Ethers JS How to get the Ethereum balance of an address using Ethers JS In this tutorial, we are going to learn how to get the Ethereum balance of an address using Ethers JS and JavaScript. This also works to get the native token of other EVM networks.
Ethers JS How to sign data and verify signatures using Ethers JS and JavaScript Learn how to sign data using a wallet and verify that the signature was generated with the right wallet using Ethers JS. We will learn how to get the address that generated the signature.
Ethers JS How to add a new network to the user's wallet using Ethers JS and JavaScript In this tutorial, we are going to see how to add a new network to the list of networks in the user's wallet connected to your website using Ethers JS.
Ethers JS How to switch the selected network on the connected wallet using Ethers JS In this tutorial, we are going to learn how to request switching the network of the wallet connected to your website using Ethers JS and JavaScript.
Ethers JS How to get the current gas price on Ethereum using Ethers JS and JavaScript In this tutorial, we are going to learn how to get an estimation of the current gas price on Ethereum using Ethers JS and JavaScript.
Ethers JS How to send ERC-20 tokens transactions using Ethers JS and JavaScript In this tutorial, we are going to learn how to send ERC-20 tokens to another wallet using Ethers JS and JavaScript. You will learn how to interact with an ERC-20 smart contract.