blockbook/bchain/coins/btg/bgoldparser.go

144 lines
3.6 KiB
Go
Raw Normal View History

2018-06-06 03:34:50 -06:00
package btg
2018-05-31 06:17:34 -06:00
import (
2018-06-06 03:34:50 -06:00
"bytes"
2018-09-18 05:35:53 -06:00
"encoding/binary"
2018-06-06 03:34:50 -06:00
"io"
2018-05-31 06:17:34 -06:00
"github.com/martinboehm/btcd/chaincfg/chainhash"
"github.com/martinboehm/btcd/wire"
"github.com/martinboehm/btcutil/chaincfg"
2021-04-05 12:59:11 -06:00
"spacecruft.org/spacecruft/blockbook/bchain"
"spacecruft.org/spacecruft/blockbook/bchain/coins/btc"
"spacecruft.org/spacecruft/blockbook/bchain/coins/utils"
2018-05-31 06:17:34 -06:00
)
const (
2019-03-21 15:53:48 -06:00
// MainnetMagic is mainnet network constant
2018-05-31 06:17:34 -06:00
MainnetMagic wire.BitcoinNet = 0x446d47e1
2019-03-21 15:53:48 -06:00
// TestnetMagic is testnet network constant
2018-05-31 06:17:34 -06:00
TestnetMagic wire.BitcoinNet = 0x456e48e2
)
2018-06-06 03:34:50 -06:00
var (
2019-03-21 15:53:48 -06:00
// MainNetParams are parser parameters for mainnet
2018-06-06 03:34:50 -06:00
MainNetParams chaincfg.Params
2019-03-21 15:53:48 -06:00
// TestNetParams are parser parameters for testnet
2018-06-06 03:34:50 -06:00
TestNetParams chaincfg.Params
)
func init() {
2018-06-06 03:34:50 -06:00
MainNetParams = chaincfg.MainNetParams
MainNetParams.Net = MainnetMagic
// Address encoding magics
2018-09-06 00:56:29 -06:00
MainNetParams.PubKeyHashAddrID = []byte{38} // base58 prefix: G
MainNetParams.ScriptHashAddrID = []byte{23} // base58 prefix: A
2018-06-06 03:34:50 -06:00
TestNetParams = chaincfg.TestNet3Params
TestNetParams.Net = TestnetMagic
// Human-readable part for Bech32 encoded segwit addresses, as defined in
// BIP 173.
// see https://github.com/satoshilabs/slips/blob/master/slip-0173.md
MainNetParams.Bech32HRPSegwit = "btg"
TestNetParams.Bech32HRPSegwit = "tbtg"
}
2018-05-31 06:17:34 -06:00
// BGoldParser handle
type BGoldParser struct {
*btc.BitcoinParser
}
2018-06-08 07:11:35 -06:00
// NewBGoldParser returns new BGoldParser instance
2018-05-31 06:17:34 -06:00
func NewBGoldParser(params *chaincfg.Params, c *btc.Configuration) *BGoldParser {
2018-06-06 03:34:50 -06:00
return &BGoldParser{BitcoinParser: btc.NewBitcoinParser(params, c)}
2018-05-31 06:17:34 -06:00
}
// GetChainParams contains network parameters for the main Bitcoin Cash network,
// the regression test Bitcoin Cash network, the test Bitcoin Cash network and
// the simulation test Bitcoin Cash network, in this order
func GetChainParams(chain string) *chaincfg.Params {
if !chaincfg.IsRegistered(&MainNetParams) {
err := chaincfg.Register(&MainNetParams)
if err == nil {
err = chaincfg.Register(&TestNetParams)
}
if err != nil {
panic(err)
}
}
2018-05-31 06:17:34 -06:00
switch chain {
case "test":
2018-06-06 03:34:50 -06:00
return &TestNetParams
2018-05-31 06:17:34 -06:00
case "regtest":
2018-06-06 03:34:50 -06:00
return &chaincfg.RegressionNetParams
2018-05-31 06:17:34 -06:00
default:
2018-06-06 03:34:50 -06:00
return &MainNetParams
}
}
2018-06-06 06:50:30 -06:00
// headerFixedLength is the length of fixed fields of a block (i.e. without solution)
// see https://github.com/BTCGPU/BTCGPU/wiki/Technical-Spec#block-header
const headerFixedLength = 44 + (chainhash.HashSize * 3)
2018-09-18 05:35:53 -06:00
const timestampOffset = 100
const timestampLength = 4
2018-06-06 03:34:50 -06:00
// ParseBlock parses raw block to our Block struct
func (p *BGoldParser) ParseBlock(b []byte) (*bchain.Block, error) {
r := bytes.NewReader(b)
2018-09-18 05:35:53 -06:00
time, err := getTimestampAndSkipHeader(r, 0)
2018-06-06 03:34:50 -06:00
if err != nil {
return nil, err
}
w := wire.MsgBlock{}
err = utils.DecodeTransactions(r, 0, wire.WitnessEncoding, &w)
2018-06-06 03:34:50 -06:00
if err != nil {
return nil, err
}
txs := make([]bchain.Tx, len(w.Transactions))
for ti, t := range w.Transactions {
txs[ti] = p.TxFromMsgTx(t, false)
}
2018-09-18 05:35:53 -06:00
return &bchain.Block{
BlockHeader: bchain.BlockHeader{
Size: len(b),
Time: time,
},
Txs: txs,
}, nil
2018-06-06 03:34:50 -06:00
}
2018-09-18 05:35:53 -06:00
func getTimestampAndSkipHeader(r io.ReadSeeker, pver uint32) (int64, error) {
_, err := r.Seek(timestampOffset, io.SeekStart)
2018-06-06 03:34:50 -06:00
if err != nil {
2018-09-18 05:35:53 -06:00
return 0, err
}
buf := make([]byte, timestampLength)
if _, err = io.ReadFull(r, buf); err != nil {
return 0, err
}
time := binary.LittleEndian.Uint32(buf)
_, err = r.Seek(headerFixedLength-timestampOffset-timestampLength, io.SeekCurrent)
if err != nil {
return 0, err
2018-06-06 03:34:50 -06:00
}
size, err := wire.ReadVarInt(r, pver)
if err != nil {
2018-09-18 05:35:53 -06:00
return 0, err
2018-06-06 03:34:50 -06:00
}
_, err = r.Seek(int64(size), io.SeekCurrent)
if err != nil {
2018-09-18 05:35:53 -06:00
return 0, err
2018-06-06 03:34:50 -06:00
}
2018-09-18 05:35:53 -06:00
return int64(time), nil
2018-06-06 03:34:50 -06:00
}