ethers.js/packages/abi/fragments.d.ts

71 lines
2.8 KiB
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
import { BigNumber } from "@ethersproject/bignumber";
export interface JsonFragmentType {
name?: string;
indexed?: boolean;
type?: string;
components?: Array<JsonFragmentType>;
}
export interface JsonFragment {
name?: string;
type?: string;
anonymous?: boolean;
payable?: boolean;
constant?: boolean;
stateMutability?: string;
inputs?: Array<JsonFragmentType>;
outputs?: Array<JsonFragmentType>;
gas?: string;
}
export declare class ParamType {
readonly name: string;
readonly type: string;
readonly baseType: string;
readonly indexed: boolean;
readonly components: Array<ParamType>;
readonly arrayLength: number;
readonly arrayChildren: ParamType;
2019-06-12 00:57:04 +03:00
readonly _isParamType: boolean;
2019-05-15 01:48:48 +03:00
constructor(constructorGuard: any, params: any);
format(expanded?: boolean): string;
static from(value: string | JsonFragmentType | ParamType, allowIndexed?: boolean): ParamType;
static fromObject(value: JsonFragmentType | ParamType): ParamType;
static fromString(value: string, allowIndexed?: boolean): ParamType;
2019-06-12 00:57:04 +03:00
static isParamType(value: any): value is ParamType;
2019-05-15 01:48:48 +03:00
}
export declare abstract class Fragment {
readonly type: string;
readonly name: string;
readonly inputs: Array<ParamType>;
2019-06-12 00:57:04 +03:00
readonly _isFragment: boolean;
2019-05-15 01:48:48 +03:00
constructor(constructorGuard: any, params: any);
format(expanded?: boolean): string;
static from(value: Fragment | JsonFragment | string): Fragment;
static fromObject(value: Fragment | JsonFragment): Fragment;
static fromString(value: string): Fragment;
2019-06-12 00:57:04 +03:00
static isFragment(value: any): value is Fragment;
2019-05-15 01:48:48 +03:00
}
export declare class EventFragment extends Fragment {
readonly anonymous: boolean;
static from(value: EventFragment | JsonFragment | string): EventFragment;
static fromObject(value: JsonFragment | EventFragment): EventFragment;
static fromString(value: string): EventFragment;
2019-06-12 00:57:04 +03:00
static isEventFragment(value: any): value is EventFragment;
2019-05-15 01:48:48 +03:00
}
export declare class ConstructorFragment extends Fragment {
stateMutability: string;
payable: boolean;
gas?: BigNumber;
static from(value: ConstructorFragment | JsonFragment | string): ConstructorFragment;
static fromObject(value: ConstructorFragment | JsonFragment): ConstructorFragment;
static fromString(value: string): ConstructorFragment;
2019-06-12 00:57:04 +03:00
static isConstructorFragment(value: any): value is ConstructorFragment;
2019-05-15 01:48:48 +03:00
}
export declare class FunctionFragment extends ConstructorFragment {
constant: boolean;
outputs?: Array<ParamType>;
static from(value: FunctionFragment | JsonFragment | string): FunctionFragment;
static fromObject(value: FunctionFragment | JsonFragment): FunctionFragment;
static fromString(value: string): FunctionFragment;
2019-06-12 00:57:04 +03:00
static isFunctionFragment(value: any): value is FunctionFragment;
2019-05-15 01:48:48 +03:00
}