Versions in this module Expand all Collapse all v1 v1.0.1 Dec 3, 2024 Changes in this version + type AddressInfo struct + Address string + ChainStats ChainStats + MempoolStats MempoolStats + type BlockStatus struct + BlockHash string + BlockHeight int64 + BlockTime int64 + Confirmed bool + type ChainStats struct + FundedTxoCount int64 + FundedTxoSum int64 + SpentTxoCount int64 + SpentTxoSum int64 + TxCount int64 + type DifficultyAdjust struct + AdjustedTimeAvg int64 + DifficultyChange float64 + EstimatedRetargetDate int64 + NextRetargetHeight int64 + PreviousRetarget float64 + ProgressPercent float64 + RemainingBlocks int64 + RemainingTime int64 + TimeAvg int64 + TimeOffset int64 + type MempoolStats struct + FundedTxoCount int64 + FundedTxoSum int64 + SpentTxoCount int64 + SpentTxoSum int64 + TxCount int64 + type Price struct + AUD int64 + CAD int64 + CHF int64 + EUR int64 + GBP int64 + JPY int64 + Time int64 + USD int64 + type Tx struct + Fee int32 + LockTime uint32 + Sigops int16 + Size int64 + Status *BlockStatus + Txid string + Version int32 + Vin []*TxVin + Vout []*TxVout + Weight int32 + func (t *Tx) MsgTx(net btcx.Net) *wire.MsgTx + type TxVin struct + IsCoinbase bool + Prevout TxVout + Scriptsig string + ScriptsigAsm string + Sequence uint32 + Txid string + Vout uint32 + Witness []string + func (in *TxVin) TxIn(net btcx.Net) *wire.TxIn + type TxVout struct + Scriptpubkey string + ScriptpubkeyAddress string + ScriptpubkeyAsm string + ScriptpubkeyType string + Value int64 + func (out *TxVout) TxOut() *wire.TxOut + type UTXO struct + Status BlockStatus + Txid string + Value int64 + Vout int + type ValidAddress struct + Address string + Isscript bool + Isvalid bool + Iswitness bool + ScriptPubKey string + WitnessProgram string + WitnessVersion int32