Vana SDK - v0.1.0
    Preparing search index...

    Interface RelayerRequestPayload

    Payload structure for relayer requests. Contains the EIP-712 typed data, signature, and optional expected user address for security verification.

    interface RelayerRequestPayload {
        typedData: GenericTypedData;
        signature: `0x${string}`;
        expectedUserAddress?: `0x${string}`;
    }
    Index

    Properties

    typedData: GenericTypedData

    EIP-712 typed data containing the transaction details

    signature: `0x${string}`

    User's signature of the typed data

    expectedUserAddress?: `0x${string}`

    Optional expected user address for security verification