ethers.js/packages/providers/src.ts/url-json-rpc-provider.ts

73 lines
2.4 KiB
TypeScript
Raw Normal View History

2020-02-04 16:01:26 +03:00
2019-05-15 01:25:46 +03:00
"use strict";
import { Network, Networkish } from "@ethersproject/networks";
2019-08-21 08:45:06 +03:00
import { defineReadOnly, getStatic } from "@ethersproject/properties";
import { ConnectionInfo } from "@ethersproject/web";
2019-05-15 01:25:46 +03:00
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 { JsonRpcProvider, JsonRpcSigner } from "./json-rpc-provider";
type getUrlFunc = (network: Network, apiKey: string) => string | ConnectionInfo;
export abstract class UrlJsonRpcProvider extends JsonRpcProvider {
readonly apiKey: any;
2019-05-15 01:25:46 +03:00
constructor(network?: Networkish, apiKey?: any) {
2019-08-02 01:04:06 +03:00
logger.checkAbstract(new.target, UrlJsonRpcProvider);
2019-05-15 01:25:46 +03:00
2019-05-24 01:24:31 +03:00
// Normalize the Network and API Key
2019-08-21 08:45:06 +03:00
network = getStatic<(network: Networkish) => Network>(new.target, "getNetwork")(network);
apiKey = getStatic<(apiKey: string) => string>(new.target, "getApiKey")(apiKey);
2019-05-15 01:25:46 +03:00
const connection = getStatic<getUrlFunc>(new.target, "getUrl")(network, apiKey);
2019-05-15 01:25:46 +03:00
super(connection, network);
2019-05-15 01:25:46 +03:00
if (typeof(apiKey) === "string") {
defineReadOnly(this, "apiKey", apiKey);
} else if (apiKey != null) {
Object.keys(apiKey).forEach((key) => {
2020-02-04 16:01:26 +03:00
defineReadOnly<any, any>(this, key, apiKey[key]);
});
}
2019-05-15 01:25:46 +03:00
}
async detectNetwork(): Promise<Network> {
return this.network;
}
2019-05-15 01:25:46 +03:00
_startPending(): void {
2019-08-02 01:04:06 +03:00
logger.warn("WARNING: API provider does not support pending filters");
2019-05-15 01:25:46 +03:00
}
getSigner(address?: string): JsonRpcSigner {
return logger.throwError(
2019-05-15 01:25:46 +03:00
"API provider does not support signing",
2019-08-02 01:04:06 +03:00
Logger.errors.UNSUPPORTED_OPERATION,
2019-05-15 01:25:46 +03:00
{ operation: "getSigner" }
);
}
listAccounts(): Promise<Array<string>> {
return Promise.resolve([]);
}
2019-05-15 01:25:46 +03:00
// Return a defaultApiKey if null, otherwise validate the API key
static getApiKey(apiKey: any): any {
2019-05-15 01:25:46 +03:00
return apiKey;
}
// Returns the url or connection for the given network and API key. The
// API key will have been sanitized by the getApiKey first, so any validation
// or transformations can be done there.
static getUrl(network: Network, apiKey: any): string | ConnectionInfo {
2019-08-02 01:04:06 +03:00
return logger.throwError("not implemented; sub-classes must override getUrl", Logger.errors.NOT_IMPLEMENTED, {
2019-05-15 01:25:46 +03:00
operation: "getUrl"
});
}
}