otterscan/src/types.ts

105 lines
1.8 KiB
TypeScript
Raw Normal View History

import { ethers, BigNumber } from "ethers";
2021-07-01 18:21:40 +00:00
export enum ConnectionStatus {
CONNECTING,
NOT_ETH_NODE,
NOT_ERIGON,
NOT_OTTERSCAN_PATCHED,
CONNECTED,
}
2021-07-01 18:21:40 +00:00
export type ProcessedTransaction = {
blockNumber: number;
timestamp: number;
miner?: string;
2021-07-01 18:21:40 +00:00
idx: number;
hash: string;
from?: string;
to?: string;
createdContractAddress?: string;
internalMinerInteraction?: boolean;
2021-07-01 18:21:40 +00:00
value: BigNumber;
fee: BigNumber;
gasPrice: BigNumber;
data: string;
status: number;
};
export type TransactionChunk = {
txs: ProcessedTransaction[];
firstPage: boolean;
lastPage: boolean;
};
export type ENSReverseCache = {
[address: string]: string;
};
export type TransactionData = {
transactionHash: string;
status: boolean;
blockNumber: number;
transactionIndex: number;
confirmations: number;
timestamp: number;
miner?: string;
from: string;
to: string;
createdContractAddress?: string;
value: BigNumber;
tokenTransfers: TokenTransfer[];
tokenMetas: TokenMetas;
fee: BigNumber;
gasPrice: BigNumber;
gasLimit: BigNumber;
gasUsed: BigNumber;
gasUsedPerc: number;
nonce: number;
data: string;
logs: ethers.providers.Log[];
};
// The VOID...
export const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
export enum AddressContext {
FROM,
TO,
}
export type From = {
current: string;
depth: number;
};
2021-07-21 19:06:51 +00:00
export enum OperationType {
2021-07-19 23:49:54 +00:00
TRANSFER = 0,
SELF_DESTRUCT = 1,
2021-07-21 18:13:18 +00:00
CREATE = 2,
CREATE2 = 3,
2021-07-19 23:49:54 +00:00
}
2021-07-21 19:06:51 +00:00
export type InternalOperation = {
type: OperationType;
from: string;
to: string;
value: BigNumber;
};
export type TokenTransfer = {
token: string;
from: string;
to: string;
value: BigNumber;
};
export type TokenMeta = {
name: string;
symbol: string;
decimals: number;
};
export type TokenMetas = {
[tokenAddress: string]: TokenMeta;
};