DeveloperBreeze

Blockchain Explorer Development Tutorials, Guides & Insights

Unlock 2+ expert-curated blockchain explorer tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your blockchain explorer skills on DeveloperBreeze.

How to Query ERC-20 Token Balances and Transactions Using Ethers.js and Etherscan API

Tutorial October 24, 2024

We will use Ethers.js to interact with the Ethereum blockchain and Axios to make HTTP requests to the Etherscan API.

npm install ethers
npm install axios

Etherscan vs Infura: Choosing the Right API for Your Blockchain Application

Tutorial October 24, 2024

In some cases, you might want to use both Etherscan and Infura. For example, you might use Etherscan to query transaction histories or token transfers, and Infura to send transactions or deploy contracts.

  • Etherscan: Use to fetch transaction history and display it in your dApp.
  • Infura: Use to allow users to send transactions or interact with smart contracts.