WalletServiceCLIwavecli balance

Balance

Balance returns the unified balance across confirmed VTXOs and in-flight inbound and outbound amounts.

Endpoints

gRPCrpc Balance(BalanceRequest) returns (BalanceResponse)
RESTPOST/v1/wallet/balance

Examples

wavecli balance

RequestBalanceRequest

BalanceRequest is the empty request for WalletService.Balance.

This message has no fields.

ResponseBalanceResponse

BalanceResponse is the unified balance summary returned by WalletService.Balance across confirmed, in-flight, and credit amounts.

FieldTypeDescription
confirmed_satint64

confirmed_sat is the total spendable VTXO amount in satoshis.

pending_in_satint64

pending_in_sat is the total in-flight inbound amount (boarding plus receive operations).

pending_out_satint64

pending_out_sat is the total in-flight outbound amount (send plus exit operations).

credit_available_satuint64

credit_available_sat is the server-authoritative available credit balance for the wallet identity.

credit_reserved_satuint64

credit_reserved_sat is the server-authoritative in-flight credit reservation amount.