Channels

From lightningwiki.net
Revision as of 13:37, 15 January 2019 by MiltonPusser (talk | contribs)
Jump to navigation Jump to search

Hi reader! We are in the beginning days of the Lightning network, and the beginning days of this wiki! Please help by expanding this article!


A fast, off-chain method of mutual exchange between two peers. To transact funds, peers exchange signatures to create an updated commitment transaction.

Payment channels are the main workhorse of the Lightning Network. They allow multiple transactions to be aggregated into just a few on-chain transactions.

Transactions

In the vast majority of cases, someone only needs to broadcast the first and last transaction in the channel.

Channel properties

Who can explain

            "active": true,
            "remote_pubkey": "0200072fd301cb4a680f26d87c28b705ccd6a1d5b00f1b5efd7fe5f998f1bbb1f1",
            "channel_point": "4b155c2e2077b782887b046fed0bd0202e583a1d28ce12650392154eaea42a00:0",
            "chan_id": "613609951777521664",
            "capacity": "1000000",
            "local_balance": "0",
            "remote_balance": "999082",
            "commit_fee": "918",
            "commit_weight": "552",
            "fee_per_kw": "1268",
            "unsettled_balance": "0",
            "total_satoshis_sent": "0",
            "total_satoshis_received": "0",
            "num_updates": "70",
            "pending_htlcs": [
            ],
            "csv_delay": 144,
            "private": false
        },
active
EXPLAIN
remote_pubkey
EXPLAIN
channel_point
EXPLAIN
chan_id
EXPLAIN
capacity
EXPLAIN
local_balance
EXPLAIN
remote_balance
EXPLAIN
commit_fee
EXPLAIN
commit_weight
EXPLAIN
fee_per_kw
EXPLAIN
unsettled_balance
EXPLAIN
total_satoshis_sent
EXPLAIN
total_satoshis_received
EXPLAIN
num_updates
EXPLAIN
pending_htlcs
EXPLAIN
csv_delay
EXPLAIN
private
EXPLAIN


Resources / read more

Read more about channels on the developer guide.