UNPKG

@crtxio/abi

Version:

A tiny Solidity ABI encoder and decoder

10 lines (9 loc) 301 B
import { Parser } from '../types'; /** * Get elements from a tuple type. * * @param type The tuple type to get the types for. * @return The elements of the tuple as string array. */ export declare const getTupleElements: (type: string) => string[]; export declare const tuple: Parser<unknown[]>;