Interface SearchAliasesByNameArgs

The argument object for AliasApi.searchAliasesByName

interface SearchAliasesByNameArgs {
    aliasName: string;
    firstIndex?: number;
    lastIndex?: number;
    timestamp?: number;
}

Properties

aliasName: string

The name or part of the name to search for.

firstIndex?: number

The first index to be returned. Use this for pagination. Starts at 0

lastIndex?: number

The last index to be returned. Use this for pagination. If not set, at maximum 500 items beginning at firstIndex will be returned

timestamp?: number

The timestamp in seconds since genesis block.