A list of onchain transactions to help realize a staking action.

Export

StakingOperation

interface StakingOperation {
    address_id: string;
    id: string;
    metadata?: StakingOperationMetadata;
    network_id: string;
    status: StakingOperationStatusEnum;
    transactions: Transaction[];
    wallet_id?: string;
}

Properties

address_id: string

The onchain address orchestrating the staking operation.

Memberof

StakingOperation

id: string

The unique ID of the staking operation.

Memberof

StakingOperation

Memberof

StakingOperation

network_id: string

The ID of the blockchain network.

Memberof

StakingOperation

The status of the staking operation.

Memberof

StakingOperation

transactions: Transaction[]

The transaction(s) that will execute the staking operation onchain.

Memberof

StakingOperation

wallet_id?: string

The ID of the wallet that owns the address.

Memberof

StakingOperation