abi-util-lite
Version:
A light impletation to parse abi string array to abi json
16 lines • 724 B
TypeScript
import { Fragment, _Fragment } from "./Fragments";
import { JsonFragment } from "../SharedInterface";
export interface _ConstructorFragment extends _Fragment {
stateMutability: string;
payable: boolean;
}
export declare class ConstructorFragment extends Fragment {
stateMutability: string;
payable: boolean;
format(format?: string): string;
static from(value: ConstructorFragment | JsonFragment | string): ConstructorFragment;
static fromObject(value: ConstructorFragment | JsonFragment): ConstructorFragment;
static fromString(value: string): ConstructorFragment;
static isConstructorFragment(value: any): value is ConstructorFragment;
}
//# sourceMappingURL=ConstructorFragment.d.ts.map