Documentation
    Preparing search index...

    Interface SignDataRpcResponseSuccess

    interface SignDataRpcResponseSuccess {
        id: string;
        result: {
            address: string;
            domain: string;
            payload: SignDataPayload;
            signature: string;
            timestamp: number;
        };
    }
    Index

    Properties

    Properties

    id: string

    Echo of the request id.

    result: {
        address: string;
        domain: string;
        payload: SignDataPayload;
        signature: string;
        timestamp: number;
    }

    Type declaration

    • address: string

      Raw wallet address (<workchain>:<hex>).

    • domain: string

      App domain from manifest bound into the signature.

    • payload: SignDataPayload

      Echo of the payload from the request.

    • signature: string

      Base64-encoded Ed25519 signature.

    • timestamp: number

      Unix epoch seconds (UTC) at signing time.