Documentation
    Preparing search index...

    Type Alias SignDataResponse

    Result of signData method.

    type SignDataResponse = {
        address: string;
        domain: string;
        payload: SignDataPayload;
        signature: string;
        timestamp: number;
    }
    Index

    Properties

    address: string

    Signer's wallet address in raw form (<workchain>:<hex>).

    domain: string

    App domain — the URL host, without scheme or encoding.

    The payload from the request, echoed back verbatim.

    signature: string

    Base64-encoded Ed25519 signature.

    timestamp: number

    Unix epoch seconds (UTC) at signing time.