BTC class supports lightning out of the box.
For lightning methods to work, it must be enabled from the daemon
(enabled by default and edited by BTC_LIGHTNING environment variable).
If lightning is disabled, LightningDisabledError is raised when
calling lightning methods.
::: bitcart.coins.btc.BTC
BCH supports Schnorr signatures, they are enabled out of the box
::: bitcart.coins.bch.BCH
XMR support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.xmr.XMR
ETH support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.eth.ETH
BNB support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.bnb.BNB
Polygon (MATIC) support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.matic.MATIC
Ethereum on Arbitrum (ARBETH) support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.arbeth.ARBETH
TRON (TRX) support is based on our custom daemon implementation which tries to follow electrum APIs as closely as possible
::: bitcart.coins.trx.TRX
XRG supports Schnorr signatures, they are enabled out of the box
::: bitcart.coins.xrg.XRG
LTC class supports lightning out of the box.
For lightning methods to work, it must be enabled from the daemon
(enabled by default and edited by LTC_LIGHTNING environment variable).
If lightning is disabled, LightningDisabledError is raised when
calling lightning methods.
::: bitcart.coins.ltc.LTC
GRS class supports lightning out of the box.
For lightning methods to work, it must be enabled from the daemon
(enabled by default and edited by GRS_LIGHTNING environment variable).
If lightning is disabled, LightningDisabledError is raised when
calling lightning methods.
::: bitcart.coins.grs.GRS
::: bitcart.utils