Export

SolidityValue

interface SolidityValue {
    name?: string;
    type: SolidityValueTypeEnum;
    value?: string;
    values?: SolidityValue[];
}

Properties

name?: string

The field name for tuple types. Not used for other types.

Memberof

SolidityValue

Memberof

SolidityValue

value?: string

The value as a string for simple types. Not used for complex types (array, tuple).

Memberof

SolidityValue

values?: SolidityValue[]

For array and tuple types, the components of the value

Memberof

SolidityValue