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