Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
110 lines (93 sloc)
3.69 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
import { Network, Networkish } from "@ethersproject/networks"; | |
import { defineReadOnly } from "@ethersproject/properties"; | |
import { ConnectionInfo } from "@ethersproject/web"; | |
import { CommunityResourcable, showThrottleMessage } from "./formatter"; | |
import { WebSocketProvider } from "./websocket-provider"; | |
import { Logger } from "@ethersproject/logger"; | |
import { version } from "./_version"; | |
const logger = new Logger(version); | |
import { UrlJsonRpcProvider } from "./url-json-rpc-provider"; | |
// This key was provided to ethers.js by Alchemy to be used by the | |
// default provider, but it is recommended that for your own | |
// production environments, that you acquire your own API key at: | |
// https://dashboard.alchemyapi.io | |
const defaultApiKey = "_gg7wSSi0KMBsdKnGVfHDueq6xMB9EkC" | |
export class AlchemyWebSocketProvider extends WebSocketProvider implements CommunityResourcable { | |
readonly apiKey: string; | |
constructor(network?: Networkish, apiKey?: any) { | |
const provider = new AlchemyProvider(network, apiKey); | |
const url = provider.connection.url.replace(/^http/i, "ws") | |
.replace(".alchemyapi.", ".ws.alchemyapi."); | |
super(url, provider.network); | |
defineReadOnly(this, "apiKey", provider.apiKey); | |
} | |
isCommunityResource(): boolean { | |
return (this.apiKey === defaultApiKey); | |
} | |
} | |
export class AlchemyProvider extends UrlJsonRpcProvider { | |
static getWebSocketProvider(network?: Networkish, apiKey?: any): AlchemyWebSocketProvider { | |
return new AlchemyWebSocketProvider(network, apiKey); | |
} | |
static getApiKey(apiKey: any): any { | |
if (apiKey == null) { return defaultApiKey; } | |
if (apiKey && typeof(apiKey) !== "string") { | |
logger.throwArgumentError("invalid apiKey", "apiKey", apiKey); | |
} | |
return apiKey; | |
} | |
static getUrl(network: Network, apiKey: string): ConnectionInfo { | |
let host = null; | |
switch (network.name) { | |
case "homestead": | |
host = "eth-mainnet.alchemyapi.io/v2/"; | |
break; | |
case "ropsten": | |
host = "eth-ropsten.alchemyapi.io/v2/"; | |
break; | |
case "rinkeby": | |
host = "eth-rinkeby.alchemyapi.io/v2/"; | |
break; | |
case "goerli": | |
host = "eth-goerli.alchemyapi.io/v2/"; | |
break; | |
case "kovan": | |
host = "eth-kovan.alchemyapi.io/v2/"; | |
break; | |
case "matic": | |
host = "polygon-mainnet.g.alchemy.com/v2/"; | |
break; | |
case "maticmum": | |
host = "polygon-mumbai.g.alchemy.com/v2/"; | |
break; | |
case "arbitrum": | |
host = "arb-mainnet.g.alchemy.com/v2/"; | |
break; | |
case "arbitrum-rinkeby": | |
host = "arb-rinkeby.g.alchemy.com/v2/"; | |
break; | |
case "optimism": | |
host = "opt-mainnet.g.alchemy.com/v2/"; | |
break; | |
case "optimism-kovan": | |
host = "opt-kovan.g.alchemy.com/v2/"; | |
break; | |
default: | |
logger.throwArgumentError("unsupported network", "network", arguments[0]); | |
} | |
return { | |
allowGzip: true, | |
url: ("https:/" + "/" + host + apiKey), | |
throttleCallback: (attempt: number, url: string) => { | |
if (apiKey === defaultApiKey) { | |
showThrottleMessage(); | |
} | |
return Promise.resolve(true); | |
} | |
}; | |
} | |
isCommunityResource(): boolean { | |
return (this.apiKey === defaultApiKey); | |
} | |
} |