abi-util-lite
Version:
A light impletation to parse abi string array to abi json
17 lines • 570 B
TypeScript
export declare function checkModifier(type: string, name: string): boolean;
export declare function verifyType(type: string): string;
export declare function verifyIdentifier(value: string): string;
declare type StateInputValue = {
constant?: boolean;
payable?: boolean;
stateMutability?: string;
type?: string;
};
declare type StateOutputValue = {
constant: boolean;
payable: boolean;
stateMutability: string;
};
export declare function verifyState(value: StateInputValue): StateOutputValue;
export {};
//# sourceMappingURL=Checkers.d.ts.map