Interface GetContractMapValuesByFirstKeyArgs

interface GetContractMapValuesByFirstKeyArgs {
    contractId: string;
    firstIndex?: number;
    key1: string;
    lastIndex?: number;
    value?: string;
}

Hierarchy (view full)

Properties

contractId: string

The id of the contract

firstIndex?: number

The index of the first result to return. Use for pagination

key1: string

The first key of the mapping tuple. Mind this is signed long!

lastIndex?: number

The index of the last result to return. Use for pagination - if not defined max 500 values are being returned

value?: string

The value to be searched for. Mind this is signed long!