2023-01-28 09:52:20 +03:00
|
|
|
/**
|
|
|
|
* About Alchemy
|
|
|
|
*
|
|
|
|
* @_subsection: api/providers/thirdparty:Alchemy [providers-alchemy]
|
|
|
|
*/
|
2022-09-09 06:21:08 +03:00
|
|
|
import {
|
2022-11-05 01:08:37 +03:00
|
|
|
defineProperties, resolveProperties, assert, assertArgument,
|
2022-10-20 11:54:26 +03:00
|
|
|
FetchRequest
|
2022-09-09 06:21:08 +03:00
|
|
|
} from "../utils/index.js";
|
2022-09-05 23:14:43 +03:00
|
|
|
|
|
|
|
import { showThrottleMessage } from "./community.js";
|
|
|
|
import { Network } from "./network.js";
|
|
|
|
import { JsonRpcProvider } from "./provider-jsonrpc.js";
|
|
|
|
|
|
|
|
import type { AbstractProvider, PerformActionRequest } from "./abstract-provider.js";
|
|
|
|
import type { CommunityResourcable } from "./community.js";
|
|
|
|
import type { Networkish } from "./network.js";
|
|
|
|
|
|
|
|
|
|
|
|
const defaultApiKey = "_gg7wSSi0KMBsdKnGVfHDueq6xMB9EkC"
|
|
|
|
|
|
|
|
function getHost(name: string): string {
|
|
|
|
switch(name) {
|
2022-09-30 04:55:13 +03:00
|
|
|
case "mainnet":
|
2022-09-05 23:14:43 +03:00
|
|
|
return "eth-mainnet.alchemyapi.io";
|
|
|
|
case "goerli":
|
2022-10-20 11:54:26 +03:00
|
|
|
return "eth-goerli.g.alchemy.com";
|
|
|
|
|
|
|
|
case "arbitrum":
|
|
|
|
return "arb-mainnet.g.alchemy.com";
|
|
|
|
case "arbitrum-goerli":
|
|
|
|
return "arb-goerli.g.alchemy.com";
|
2022-09-05 23:14:43 +03:00
|
|
|
case "matic":
|
|
|
|
return "polygon-mainnet.g.alchemy.com";
|
|
|
|
case "maticmum":
|
|
|
|
return "polygon-mumbai.g.alchemy.com";
|
|
|
|
case "optimism":
|
|
|
|
return "opt-mainnet.g.alchemy.com";
|
2022-10-20 11:54:26 +03:00
|
|
|
case "optimism-goerli":
|
|
|
|
return "opt-goerli.g.alchemy.com";
|
2022-09-05 23:14:43 +03:00
|
|
|
}
|
|
|
|
|
2022-10-25 11:06:00 +03:00
|
|
|
assertArgument(false, "unsupported network", "network", name);
|
2022-09-05 23:14:43 +03:00
|
|
|
}
|
|
|
|
|
2022-11-28 05:58:07 +03:00
|
|
|
/**
|
2023-01-28 09:52:20 +03:00
|
|
|
* The **AlchemyProvider** connects to the [[link-alchemy]]
|
|
|
|
* JSON-RPC end-points.
|
|
|
|
*
|
|
|
|
* By default, a highly-throttled API key is used, which is
|
|
|
|
* appropriate for quick prototypes and simple scripts. To
|
|
|
|
* gain access to an increased rate-limit, it is highly
|
|
|
|
* recommended to [sign up here](link-alchemy-signup).
|
2022-11-30 21:44:47 +03:00
|
|
|
*
|
|
|
|
* @_docloc: api/providers/thirdparty
|
2022-11-28 05:58:07 +03:00
|
|
|
*/
|
2022-09-05 23:14:43 +03:00
|
|
|
export class AlchemyProvider extends JsonRpcProvider implements CommunityResourcable {
|
|
|
|
readonly apiKey!: string;
|
|
|
|
|
2022-11-28 05:58:07 +03:00
|
|
|
constructor(_network?: Networkish, apiKey?: null | string) {
|
|
|
|
if (_network == null) { _network = "mainnet"; }
|
2022-09-05 23:14:43 +03:00
|
|
|
const network = Network.from(_network);
|
|
|
|
if (apiKey == null) { apiKey = defaultApiKey; }
|
|
|
|
|
|
|
|
const request = AlchemyProvider.getRequest(network, apiKey);
|
|
|
|
super(request, network, { staticNetwork: network });
|
|
|
|
|
|
|
|
defineProperties<AlchemyProvider>(this, { apiKey });
|
|
|
|
}
|
|
|
|
|
|
|
|
_getProvider(chainId: number): AbstractProvider {
|
|
|
|
try {
|
|
|
|
return new AlchemyProvider(chainId, this.apiKey);
|
|
|
|
} catch (error) { }
|
|
|
|
return super._getProvider(chainId);
|
|
|
|
}
|
|
|
|
|
|
|
|
async _perform(req: PerformActionRequest): Promise<any> {
|
|
|
|
|
|
|
|
// https://docs.alchemy.com/reference/trace-transaction
|
|
|
|
if (req.method === "getTransactionResult") {
|
2022-10-20 11:54:26 +03:00
|
|
|
const { trace, tx } = await resolveProperties({
|
|
|
|
trace: this.send("trace_transaction", [ req.hash ]),
|
|
|
|
tx: this.getTransaction(req.hash)
|
|
|
|
});
|
|
|
|
if (trace == null || tx == null) { return null; }
|
2022-09-05 23:14:43 +03:00
|
|
|
|
|
|
|
let data: undefined | string;
|
|
|
|
let error = false;
|
|
|
|
try {
|
|
|
|
data = trace[0].result.output;
|
|
|
|
error = (trace[0].error === "Reverted");
|
|
|
|
} catch (error) { }
|
|
|
|
|
|
|
|
if (data) {
|
2022-11-05 01:08:37 +03:00
|
|
|
assert(!error, "an error occurred during transaction executions", "CALL_EXCEPTION", {
|
|
|
|
action: "getTransactionResult",
|
|
|
|
data,
|
|
|
|
reason: null,
|
|
|
|
transaction: tx,
|
|
|
|
invocation: null,
|
|
|
|
revert: null // @TODO
|
|
|
|
});
|
2022-09-05 23:14:43 +03:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2022-11-05 01:08:37 +03:00
|
|
|
assert(false, "could not parse trace result", "BAD_DATA", { value: trace });
|
2022-09-05 23:14:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return await super._perform(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
isCommunityResource(): boolean {
|
|
|
|
return (this.apiKey === defaultApiKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getRequest(network: Network, apiKey?: string): FetchRequest {
|
|
|
|
if (apiKey == null) { apiKey = defaultApiKey; }
|
|
|
|
|
|
|
|
const request = new FetchRequest(`https:/\/${ getHost(network.name) }/v2/${ apiKey }`);
|
|
|
|
request.allowGzip = true;
|
|
|
|
|
|
|
|
if (apiKey === defaultApiKey) {
|
|
|
|
request.retryFunc = async (request, response, attempt) => {
|
|
|
|
showThrottleMessage("alchemy");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
}
|