@crtxio/abi
Version:
A tiny Solidity ABI encoder and decoder
9 lines (8 loc) • 332 B
TypeScript
export declare type BytesLike = string | Uint8Array;
export declare type BooleanLike = 'true' | 'false' | 'yes' | 'no' | boolean;
export declare type NumberLike = number | bigint | string;
export declare type FunctionLike = string | SolidityFunction;
export interface SolidityFunction {
address: string;
selector: string;
}