Type alias PermitMessage

PermitMessage: {
    contractAddress: ContractAddress.Type;
    entrypoint: EntrypointName.Type;
    nonce: bigint;
    payload: Parameter.Type;
    timestamp: Timestamp.Type;
}

A permit message containing invokation information for an entrypoint, part of the CIS3 specification.

Type declaration

  • contractAddress: ContractAddress.Type

    The address of the intended contract.

  • entrypoint: EntrypointName.Type

    The entrypoint to be invoked.

  • nonce: bigint

    A nonce to prevent replay attacks.

  • payload: Parameter.Type

    The parameters to be passed to the entrypoint.

  • timestamp: Timestamp.Type

    The timestamp of the message.

Generated using TypeDoc