lightning-bkpr-listbalances -- Command for listing current channel + wallet balances
SYNOPSIS
bkpr-listbalances
DESCRIPTION
The bkpr-listbalances RPC command is a list of all current and historical account balances. An account is either the on-chain wallet or a channel balance. Any funds sent to an external account will not be accounted for here.
Note that any channel that was recorded will be listed. Closed channel balances will be 0msat.
RETURN VALUE
On success, an object containing accounts is returned. It is an array of objects, where each object contains:
- account (string): The account name. If the account is a channel, the channel_id.
- balances (array of objects):
- balance_msat (msat): Current account balance.
- coin_type (string): Coin type, same as HRP for bech32.
If peer_id is present:
-
peer_id (pubkey): Node id for the peer this account is with.
-
we_opened (boolean): Did we initiate this account open (open the channel).
-
account_closed (boolean):
-
account_resolved (boolean): Has this channel been closed and all outputs resolved?
-
resolved_at_block (u32, optional): Blockheight account resolved on chain.
AUTHOR
Lisa Neigut <[email protected]> is mainly responsible.
SEE ALSO
lightning-bkpr-listincome(7), lightning-listfunds(7), lightning-bkpr-listaccountevents(7), lightning-bkpr-channelsapy(7), lightning-listpeers(7)
RESOURCES
Main web site: https://github.com/ElementsProject/lightning
EXAMPLES
Example 1:
Request:
lightning-cli bkpr-listbalances
{
"id": "example:bkpr-listbalances#1",
"method": "bkpr-listbalances",
"params": {}
}
Response:
{
"accounts": [
{
"account": "wallet",
"balances": [
{
"balance_msat": 202498294000,
"coin_type": "bcrt"
}
]
},
{
"account": "a397dd9b3e44afcb67f3f3ce1d649b74a8ade63e35505985e4cc1828634f69a2",
"peer_id": "022d223620a359a47ff7f7ac447c85c46c923da53389221a0054c11c1e3ca31d59",
"we_opened": false,
"account_closed": true,
"account_resolved": true,
"resolved_at_block": 121,
"balances": [
{
"balance_msat": 0,
"coin_type": "bcrt"
}
]
},
{
"account": "21bd30cac60f477f2c4267220b1702a6ec5780db34f9934fa94b8c0508bf3357",
"peer_id": "0382ce59ebf18be7d84677c2e35f23294b9992ceca95491fcf8a56c6cb2d9de199",
"we_opened": true,
"account_closed": true,
"account_resolved": false,
"balances": [
{
"balance_msat": 0,
"coin_type": "bcrt"
}
]
},
{
"account": "ecabe6d86abdd57565b3fb7e7c5d724e60ca1a07633951769b5dbfa48dc884b3",
"peer_id": "022d223620a359a47ff7f7ac447c85c46c923da53389221a0054c11c1e3ca31d59",
"we_opened": false,
"account_closed": false,
"account_resolved": false,
"balances": [
{
"balance_msat": 0,
"coin_type": "bcrt"
}
]
},
{
"account": "7512083907c74ed3a045e9bf772b3d72948eb93daf84a1cee57108800451aaf2",
"peer_id": "0382ce59ebf18be7d84677c2e35f23294b9992ceca95491fcf8a56c6cb2d9de199",
"we_opened": true,
"account_closed": false,
"account_resolved": false,
"balances": [
{
"balance_msat": 1000000000,
"coin_type": "bcrt"
}
]
}
]
}