ethers.js/packages/providers/lib/formatter.d.ts

51 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
import { Block, TransactionReceipt, TransactionResponse } from "@ethersproject/abstract-provider";
import { BigNumber } from "@ethersproject/bignumber";
export declare type FormatFunc = (value: any) => any;
export declare type FormatFuncs = {
[key: string]: FormatFunc;
};
export declare type Formats = {
transaction: FormatFuncs;
transactionRequest: FormatFuncs;
receipt: FormatFuncs;
receiptLog: FormatFuncs;
block: FormatFuncs;
blockWithTransactions: FormatFuncs;
filter: FormatFuncs;
filterLog: FormatFuncs;
};
export declare class Formatter {
readonly formats: Formats;
constructor();
getDefaultFormats(): Formats;
number(number: any): number;
bigNumber(value: any): BigNumber;
boolean(value: any): boolean;
hex(value: any, strict?: boolean): string;
data(value: any, strict?: boolean): string;
address(value: any): string;
callAddress(value: any): string;
contractAddress(value: any): string;
blockTag(blockTag: any): string;
hash(value: any, strict?: boolean): string;
difficulty(value: any): number;
uint256(value: any): string;
_block(value: any, format: any): Block;
block(value: any): Block;
blockWithTransactions(value: any): Block;
transactionRequest(value: any): any;
transactionResponse(transaction: any): TransactionResponse;
transaction(value: any): any;
receiptLog(value: any): any;
receipt(value: any): TransactionReceipt;
topics(value: any): any;
filter(value: any): any;
filterLog(value: any): any;
static check(format: {
[name: string]: FormatFunc;
}, object: any): any;
static allowNull(format: FormatFunc, nullValue?: any): FormatFunc;
static allowFalsish(format: FormatFunc, replaceValue: any): FormatFunc;
static arrayOf(format: FormatFunc): FormatFunc;
}