An event representing a signature creation.

Export

SignatureCreationEvent

interface SignatureCreationEvent {
    address_id: string;
    address_index: number;
    seed_id: string;
    signing_payload: string;
    transaction_id: string;
    transaction_type: "transfer";
    wallet_id: string;
    wallet_user_id: string;
}

Properties

address_id: string

The ID of the address the transfer belongs to

Memberof

SignatureCreationEvent

address_index: number

The index of the address that the server-signer should sign with

Memberof

SignatureCreationEvent

seed_id: string

The ID of the seed that the server-signer should create the signature for

Memberof

SignatureCreationEvent

signing_payload: string

The payload that the server-signer should sign

Memberof

SignatureCreationEvent

transaction_id: string

The ID of the transaction that the server-signer should sign

Memberof

SignatureCreationEvent

transaction_type: "transfer"

Memberof

SignatureCreationEvent

wallet_id: string

The ID of the wallet the signature is for

Memberof

SignatureCreationEvent

wallet_user_id: string

The ID of the user that the wallet belongs to

Memberof

SignatureCreationEvent