web3-domain-resolver
Version:
Web3 Library that enable with just one function to resolve domains on multiple web3 providers such as ENS, UnstoppableDomains and Freename
15 lines (14 loc) • 339 B
TypeScript
export declare enum NetworkName {
POLYGON = "polygon",
POLYGON_MUMBAI = "polygon-mumbai",
ETHEREUM = "ethereum",
BSC = "bsc",
ZILLIQA = "zil",
HARDHAT = "hardhat",
AURORA = "aurora",
CRONOS = "cronos"
}
export declare type NetworkConnection = {
networkName: NetworkName | string;
rpcUrl: string;
};