RunGetterParams: {
    cachedState?: FullContractState;
    withSignatureId?: boolean | number;
    libraries?: {
        [K: string]: string;
    };
}

Type declaration

  • Optional cachedState?: FullContractState

    Cached contract state

  • Optional withSignatureId?: boolean | number

    Whether to use the signature id during signature verification (true by default).

    • If true, uses the signature id of the selected network (if the capability is enabled).
    • If false, forces signature check to ignore any signature id.
    • If number, uses the specified number as a signature id.
  • Optional libraries?: {
        [K: string]: string;
    }

    Optional libraries map

    • [K: string]: string