Export

BuildStakingOperationRequest

interface BuildStakingOperationRequest {
    action: string;
    address_id: string;
    asset_id: string;
    network_id: string;
    options: {
        [key: string]: string;
    };
}

Properties

action: string

The type of staking operation

Memberof

BuildStakingOperationRequest

address_id: string

The onchain address from which the staking transaction originates and is responsible for signing the transaction.

Memberof

BuildStakingOperationRequest

asset_id: string

The ID of the asset being staked

Memberof

BuildStakingOperationRequest

network_id: string

The ID of the blockchain network

Memberof

BuildStakingOperationRequest

options: {
    [key: string]: string;
}

Additional options for the staking operation.

Type declaration

  • [key: string]: string

Memberof

BuildStakingOperationRequest