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

94 lines
3.0 KiB
TypeScript
Raw Normal View History

2020-10-09 03:21:32 +03:00
"use strict";
import { Network } from "@ethersproject/networks";
2020-10-09 03:21:32 +03:00
import { ConnectionInfo } from "@ethersproject/web";
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
import { UrlJsonRpcProvider } from "./url-json-rpc-provider";
const defaultApplicationId = "62e1ad51b37b8e00394bda3b";
2020-10-09 03:21:32 +03:00
export class PocketProvider extends UrlJsonRpcProvider {
readonly applicationId: string;
readonly applicationSecretKey: string;
readonly loadBalancer: boolean;
2020-10-09 03:21:32 +03:00
static getApiKey(apiKey: any): any {
const apiKeyObj: { applicationId: string, applicationSecretKey: string, loadBalancer: boolean } = {
applicationId: null,
loadBalancer: true,
2020-10-09 03:21:32 +03:00
applicationSecretKey: null
};
// Parse applicationId and applicationSecretKey
if (apiKey == null) {
apiKeyObj.applicationId = defaultApplicationId;
} else if (typeof (apiKey) === "string") {
2020-10-09 03:21:32 +03:00
apiKeyObj.applicationId = apiKey;
} else if (apiKey.applicationSecretKey != null) {
apiKeyObj.applicationId = apiKey.applicationId;
apiKeyObj.applicationSecretKey = apiKey.applicationSecretKey;
} else if (apiKey.applicationId) {
apiKeyObj.applicationId = apiKey.applicationId;
} else {
logger.throwArgumentError("unsupported PocketProvider apiKey", "apiKey", apiKey);
2020-10-09 03:21:32 +03:00
}
return apiKeyObj;
}
static getUrl(network: Network, apiKey: any): ConnectionInfo {
let host: string = null;
switch (network ? network.name : "unknown") {
case "goerli":
host = "eth-goerli.gateway.pokt.network";
break;
2020-10-09 03:21:32 +03:00
case "homestead":
host = "eth-mainnet.gateway.pokt.network";
break;
case "kovan":
host = "poa-kovan.gateway.pokt.network";
break;
case "matic":
host = "poly-mainnet.gateway.pokt.network";
break;
case "maticmum":
host = "polygon-mumbai-rpc.gateway.pokt.network";
break;
case "rinkeby":
host = "eth-rinkeby.gateway.pokt.network";
break;
case "ropsten":
host = "eth-ropsten.gateway.pokt.network";
break;
2020-10-09 03:21:32 +03:00
default:
logger.throwError("unsupported network", Logger.errors.INVALID_ARGUMENT, {
argument: "network",
value: network
});
}
const url = `https:/\/${ host }/v1/lb/${ apiKey.applicationId }`
2020-10-09 03:21:32 +03:00
const connection: ConnectionInfo = { headers: { }, url };
2020-10-09 03:21:32 +03:00
if (apiKey.applicationSecretKey != null) {
connection.user = "";
connection.password = apiKey.applicationSecretKey
}
return connection;
}
isCommunityResource(): boolean {
return (this.applicationId === defaultApplicationId);
2020-10-09 03:21:32 +03:00
}
}