Export

CreateAddressRequest

interface CreateAddressRequest {
    address_index?: number;
    attestation?: string;
    public_key?: string;
}

Properties

address_index?: number

The index of the address within the wallet.

Memberof

CreateAddressRequest

attestation?: string

An attestation signed by the private key that is associated with the wallet. The attestation will be a hex-encoded signature of a json payload with fields wallet_id and public_key, signed by the private key associated with the public_key set in the request.

Memberof

CreateAddressRequest

public_key?: string

The public key from which the address will be derived.

Memberof

CreateAddressRequest