ethers.js/packages/providers/src.ts/alchemy-provider.ts

51 lines
1.6 KiB
TypeScript
Raw Normal View History

2019-05-15 01:25:46 +03:00
"use strict";
import { Network } from "@ethersproject/networks";
2019-08-02 01:04:06 +03:00
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
2019-05-15 01:25:46 +03:00
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 AlchemyProvider extends UrlJsonRpcProvider {
readonly apiKey: string;
static getApiKey(apiKey: any): any {
2019-05-15 01:25:46 +03:00
if (apiKey == null) { return defaultApiKey; }
if (apiKey && typeof(apiKey) !== "string") {
logger.throwArgumentError("invalid apiKey", "apiKey", apiKey);
}
2019-05-15 01:25:46 +03:00
return apiKey;
}
static getUrl(network: Network, apiKey: string): string {
let host = null;
switch (network.name) {
case "homestead":
host = "eth-mainnet.alchemyapi.io/jsonrpc/";
break;
case "ropsten":
host = "eth-ropsten.alchemyapi.io/jsonrpc/";
break;
case "rinkeby":
host = "eth-rinkeby.alchemyapi.io/jsonrpc/";
break;
case "kovan":
host = "eth-kovan.alchemyapi.io/jsonrpc/";
break;
default:
2019-08-02 01:04:06 +03:00
logger.throwArgumentError("unsupported network", "network", arguments[0]);
2019-05-15 01:25:46 +03:00
}
return ("https:/" + "/" + host + apiKey);
}
}