-
Notifications
You must be signed in to change notification settings - Fork 70
@liquality.bitcoin.BitcoinTypes.BitcoinEsploraTypes
Krasimir Raykov edited this page Mar 30, 2022
·
3 revisions
@liquality/bitcoin.BitcoinTypes.BitcoinEsploraTypes
Ƭ Address: Object
Name | Type |
---|---|
address |
string |
chain_stats |
{ funded_txo_count : number ; funded_txo_sum : number ; spent_txo_count : number ; spent_txo_sum : number ; tx_count : number } |
chain_stats.funded_txo_count |
number |
chain_stats.funded_txo_sum |
number |
chain_stats.spent_txo_count |
number |
chain_stats.spent_txo_sum |
number |
chain_stats.tx_count |
number |
mempool_stats |
{ funded_txo_count : number ; funded_txo_sum : number ; spent_txo_count : number ; spent_txo_sum : number ; tx_count : number } |
mempool_stats.funded_txo_count |
number |
mempool_stats.funded_txo_sum |
number |
mempool_stats.spent_txo_count |
number |
mempool_stats.spent_txo_sum |
number |
mempool_stats.tx_count |
number |
bitcoin/lib/chain/esplora/types.ts:19
Ƭ BatchUTXOs: { address
: string
; utxo
: UTXO
[] }[]
bitcoin/lib/chain/esplora/types.ts:83
Ƭ Block: Object
Name | Type |
---|---|
bits |
number |
difficulty |
number |
height |
number |
id |
string |
mediantime |
number |
merlke_root |
string |
nonce |
number |
previousblockhash |
string |
size |
number |
timestamp |
number |
tx_count |
number |
version |
number |
weight |
number |
bitcoin/lib/chain/esplora/types.ts:67
Ƭ FeeEstimates: Object
▪ [index: string
]: number
bitcoin/lib/chain/esplora/types.ts:3
Ƭ FeeOptions: Object
Name | Type |
---|---|
averageTargetBlocks? |
number |
fastTargetBlocks? |
number |
slowTargetBlocks? |
number |
bitcoin/lib/chain/esplora/types.ts:92
Ƭ Transaction: Object
Name | Type |
---|---|
fee |
number |
locktime |
number |
size |
number |
status |
TxStatus |
txid |
string |
version |
number |
vin |
Vin [] |
vout |
Vout [] |
weight |
number |
bitcoin/lib/chain/esplora/types.ts:55
Ƭ TxStatus: Object
Name | Type |
---|---|
block_hash? |
string |
block_height? |
number |
block_time? |
number |
confirmed |
boolean |
bitcoin/lib/chain/esplora/types.ts:5
Ƭ UTXO: Object
Name | Type |
---|---|
status |
TxStatus |
txid |
string |
value |
number |
vout |
number |
bitcoin/lib/chain/esplora/types.ts:12
Ƭ Vin: Object
Name | Type |
---|---|
is_coinbase |
boolean |
prevout |
Vout |
scriptsig |
string |
scriptsig_asm |
string |
sequence |
number |
txid |
string |
vout |
number |
bitcoin/lib/chain/esplora/types.ts:45
Ƭ Vout: Object
Name | Type |
---|---|
scriptpubkey |
string |
scriptpubkey_address? |
string |
scriptpubkey_asm |
string |
scriptpubkey_type |
string |
value |
number |