ethers.js/docs/v5/api-keys
2020-09-08 01:12:15 -04:00
..
index.html Docs: updated dist files. 2020-09-08 01:12:15 -04:00
README.md Docs: updated dist files. 2020-09-08 01:12:15 -04:00

Documentation: html

Provider API Keys

Etherscan

INFURA

Alchemy

Creating a Default Provider

// Use the mainnet
const network = "homestead";

// Specify your own API keys
// Each is optional, and if you omit it the default
// API key for that service will be used.
const provider = ethers.getDefaultProvider(network, {
    etherscan: YOUR_ETHERSCAN_API_KEY,
    infura: YOUR_INFURA_PROJECT_ID,
    alchemy: YOUR_ALCHEMY_API_KEY
});