ethers.js/packages/abstract-provider/src.ts/index.ts

354 lines
11 KiB
TypeScript
Raw Normal View History

2019-05-15 01:25:46 +03:00
"use strict";
import { BigNumber, BigNumberish } from "@ethersproject/bignumber";
import { BytesLike, isHexString } from "@ethersproject/bytes";
import { Network } from "@ethersproject/networks";
2021-06-15 05:24:14 +03:00
import { Deferrable, Description, defineReadOnly, resolveProperties } from "@ethersproject/properties";
2021-03-26 23:16:56 +03:00
import { AccessListish, Transaction } from "@ethersproject/transactions";
2019-05-15 01:25:46 +03:00
import { OnceBlockable } from "@ethersproject/web";
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
///////////////////////////////
// Exported Types
export type TransactionRequest = {
to?: string,
from?: string,
nonce?: BigNumberish,
2019-05-15 01:25:46 +03:00
gasLimit?: BigNumberish,
gasPrice?: BigNumberish,
2019-05-15 01:25:46 +03:00
data?: BytesLike,
value?: BigNumberish,
chainId?: number
2021-03-26 23:16:56 +03:00
type?: number;
accessList?: AccessListish;
2021-05-31 00:47:04 +03:00
maxPriorityFeePerGas?: BigNumberish;
maxFeePerGas?: BigNumberish;
customData?: Record<string, any>;
ccipReadEnabled?: boolean;
2019-05-15 01:25:46 +03:00
}
export interface TransactionResponse extends Transaction {
hash: string;
2019-05-15 01:25:46 +03:00
// Only if a transaction has been mined
blockNumber?: number,
blockHash?: string,
timestamp?: number,
confirmations: number,
// Not optional (as it is in Transaction)
from: string;
// The raw transaction
raw?: string,
// This function waits until the transaction has been mined
wait: (confirmations?: number) => Promise<TransactionReceipt>
};
export type BlockTag = string | number;
export interface _Block {
2019-05-15 01:25:46 +03:00
hash: string;
parentHash: string;
number: number;
timestamp: number;
nonce: string;
difficulty: number;
_difficulty: BigNumber;
2019-05-15 01:25:46 +03:00
gasLimit: BigNumber;
gasUsed: BigNumber;
miner: string;
extraData: string;
2021-05-31 00:47:04 +03:00
baseFeePerGas?: null | BigNumber;
2019-05-15 01:25:46 +03:00
}
export interface Block extends _Block {
transactions: Array<string>;
}
export interface BlockWithTransactions extends _Block {
transactions: Array<TransactionResponse>;
}
export interface Log {
blockNumber: number;
blockHash: string;
transactionIndex: number;
2019-05-15 01:25:46 +03:00
removed: boolean;
2019-05-15 01:25:46 +03:00
address: string;
data: string;
topics: Array<string>;
transactionHash: string;
logIndex: number;
2019-05-15 01:25:46 +03:00
}
export interface TransactionReceipt {
to: string;
from: string;
contractAddress: string,
transactionIndex: number,
2019-05-15 01:25:46 +03:00
root?: string,
gasUsed: BigNumber,
logsBloom: string,
blockHash: string,
transactionHash: string,
logs: Array<Log>,
blockNumber: number,
confirmations: number,
cumulativeGasUsed: BigNumber,
2021-06-26 05:57:05 +03:00
effectiveGasPrice: BigNumber,
2019-05-15 01:25:46 +03:00
byzantium: boolean,
type: number;
2019-05-15 01:25:46 +03:00
status?: number
};
2021-06-15 05:24:14 +03:00
export interface FeeData {
maxFeePerGas: null | BigNumber;
maxPriorityFeePerGas: null | BigNumber;
gasPrice: null | BigNumber;
}
2019-05-15 01:25:46 +03:00
export interface EventFilter {
address?: string;
topics?: Array<string | Array<string> | null>;
2019-05-15 01:25:46 +03:00
}
export interface Filter extends EventFilter {
fromBlock?: BlockTag,
toBlock?: BlockTag,
}
export interface FilterByBlockHash extends EventFilter {
blockHash?: string;
2019-05-15 01:25:46 +03:00
}
//export type CallTransactionable = {
// call(transaction: TransactionRequest): Promise<TransactionResponse>;
//};
export abstract class ForkEvent extends Description {
2019-05-15 01:25:46 +03:00
readonly expiry: number;
2020-01-08 03:47:55 +03:00
readonly _isForkEvent?: boolean;
static isForkEvent(value: any): value is ForkEvent {
return !!(value && value._isForkEvent);
2019-05-15 01:25:46 +03:00
}
}
export class BlockForkEvent extends ForkEvent {
readonly blockHash: string;
2019-05-15 01:25:46 +03:00
2020-01-08 03:47:55 +03:00
readonly _isBlockForkEvent?: boolean;
constructor(blockHash: string, expiry?: number) {
if (!isHexString(blockHash, 32)) {
logger.throwArgumentError("invalid blockHash", "blockHash", blockHash);
2019-05-15 01:25:46 +03:00
}
super({
_isForkEvent: true,
_isBlockForkEvent: true,
expiry: (expiry || 0),
blockHash: blockHash
});
2019-05-15 01:25:46 +03:00
}
}
export class TransactionForkEvent extends ForkEvent {
readonly hash: string;
2020-01-08 03:47:55 +03:00
readonly _isTransactionOrderForkEvent?: boolean;
2019-05-15 01:25:46 +03:00
constructor(hash: string, expiry?: number) {
if (!isHexString(hash, 32)) {
2019-08-02 01:04:06 +03:00
logger.throwArgumentError("invalid transaction hash", "hash", hash);
2019-05-15 01:25:46 +03:00
}
super({
_isForkEvent: true,
_isTransactionForkEvent: true,
expiry: (expiry || 0),
hash: hash
});
2019-05-15 01:25:46 +03:00
}
}
export class TransactionOrderForkEvent extends ForkEvent {
readonly beforeHash: string;
readonly afterHash: string;
constructor(beforeHash: string, afterHash: string, expiry?: number) {
if (!isHexString(beforeHash, 32)) {
2019-08-02 01:04:06 +03:00
logger.throwArgumentError("invalid transaction hash", "beforeHash", beforeHash);
2019-05-15 01:25:46 +03:00
}
if (!isHexString(afterHash, 32)) {
2019-08-02 01:04:06 +03:00
logger.throwArgumentError("invalid transaction hash", "afterHash", afterHash);
2019-05-15 01:25:46 +03:00
}
super({
_isForkEvent: true,
_isTransactionOrderForkEvent: true,
expiry: (expiry || 0),
beforeHash: beforeHash,
afterHash: afterHash
});
2019-05-15 01:25:46 +03:00
}
}
export type EventType = string | Array<string | Array<string>> | EventFilter | ForkEvent;
export type Listener = (...args: Array<any>) => void;
///////////////////////////////
// Exported Abstracts
export abstract class Provider implements OnceBlockable {
// Network
abstract getNetwork(): Promise<Network>;
// Latest State
abstract getBlockNumber(): Promise<number>;
abstract getGasPrice(): Promise<BigNumber>;
2021-06-15 05:24:14 +03:00
async getFeeData(): Promise<FeeData> {
const { block, gasPrice } = await resolveProperties({
2021-06-15 06:42:11 +03:00
block: this.getBlock("latest"),
gasPrice: this.getGasPrice().catch((error) => {
// @TODO: Why is this now failing on Calaveras?
//console.log(error);
return null;
})
2021-06-15 05:24:14 +03:00
});
let maxFeePerGas = null, maxPriorityFeePerGas = null;
if (block && block.baseFeePerGas) {
2021-06-15 06:42:11 +03:00
// We may want to compute this more accurately in the future,
// using the formula "check if the base fee is correct".
// See: https://eips.ethereum.org/EIPS/eip-1559
maxPriorityFeePerGas = BigNumber.from("1500000000");
maxFeePerGas = block.baseFeePerGas.mul(2).add(maxPriorityFeePerGas);
2021-06-15 05:24:14 +03:00
}
return { maxFeePerGas, maxPriorityFeePerGas, gasPrice };
}
2019-05-15 01:25:46 +03:00
// Account
abstract getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>;
abstract getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>;
abstract getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string> ;
abstract getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>;
// Execution
abstract sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>;
abstract call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>;
abstract estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>;
2019-05-15 01:25:46 +03:00
// Queries
abstract getBlock(blockHashOrBlockTag: BlockTag | string | Promise<BlockTag | string>): Promise<Block>;
abstract getBlockWithTransactions(blockHashOrBlockTag: BlockTag | string | Promise<BlockTag | string>): Promise<BlockWithTransactions>;
abstract getTransaction(transactionHash: string): Promise<TransactionResponse>;
abstract getTransactionReceipt(transactionHash: string): Promise<TransactionReceipt>;
// Bloom-filter Queries
abstract getLogs(filter: Filter): Promise<Array<Log>>;
// ENS
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
2019-05-15 01:25:46 +03:00
// Event Emitter (ish)
abstract on(eventName: EventType, listener: Listener): Provider;
abstract once(eventName: EventType, listener: Listener): Provider;
abstract emit(eventName: EventType, ...args: Array<any>): boolean
abstract listenerCount(eventName?: EventType): number;
abstract listeners(eventName?: EventType): Array<Listener>;
abstract off(eventName: EventType, listener?: Listener): Provider;
abstract removeAllListeners(eventName?: EventType): Provider;
// Alias for "on"
addListener(eventName: EventType, listener: Listener): Provider {
return this.on(eventName, listener);
}
// Alias for "off"
removeListener(eventName: EventType, listener: Listener): Provider {
return this.off(eventName, listener);
}
// @TODO: This *could* be implemented here, but would pull in events...
abstract waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<TransactionReceipt>;
2019-05-15 01:25:46 +03:00
readonly _isProvider: boolean;
2019-05-15 01:25:46 +03:00
constructor() {
logger.checkAbstract(new.target, Provider);
defineReadOnly(this, "_isProvider", true);
}
static isProvider(value: any): value is Provider {
return !!(value && value._isProvider);
2019-05-15 01:25:46 +03:00
}
/*
static getResolver(network: Network, callable: CallTransactionable, namehash: string): string {
// No ENS...
if (!network.ensAddress) {
errors.throwError(
"network does support ENS",
errors.UNSUPPORTED_OPERATION,
{ operation: "ENS", network: network.name }
);
}
// Not a namehash
if (!isHexString(namehash, 32)) {
errors.throwArgumentError("invalid name hash", "namehash", namehash);
}
// keccak256("resolver(bytes32)")
let data = "0x0178b8bf" + namehash.substring(2);
let transaction = { to: network.ensAddress, data: data };
return provider.call(transaction).then((data) => {
return provider.formatter.callAddress(data);
});
}
static resolveNamehash(network: Network, callable: CallTransactionable, namehash: string): string {
return this.getResolver(network, callable, namehash).then((resolverAddress) => {
if (!resolverAddress) { return null; }
// keccak256("addr(bytes32)")
let data = "0x3b3b57de" + namehash(name).substring(2);
let transaction = { to: resolverAddress, data: data };
return callable.call(transaction).then((data) => {
return this.formatter.callAddress(data);
});
})
}
*/
}