otterscan/src/ethersconfig.ts
2021-07-03 23:02:04 -03:00

9 lines
179 B
TypeScript

import { ethers } from "ethers";
export const ERIGON_NODE = "http://127.0.0.1:8545";
export const provider = new ethers.providers.JsonRpcProvider(
ERIGON_NODE,
"mainnet"
);