A Type description in a JSON ABI format.

interface JsonFragmentType {
    components?: readonly JsonFragmentType[];
    indexed?: boolean;
    internalType?: string;
    name?: string;
    type?: string;
}

Properties

components?: readonly JsonFragmentType[]

The components for a tuple.

indexed?: boolean

If the parameter is indexed.

internalType?: string

The internal Solidity type.

name?: string

The parameter name.

type?: string

The type of the parameter.

Generated using TypeDoc