forked from Lorenzo-Protocol/lorenzo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtc_config.go
73 lines (58 loc) · 1.73 KB
/
btc_config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package types
import (
"math/big"
"github.com/btcsuite/btcd/chaincfg"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/spf13/cast"
)
type SupportedBtcNetwork string
type BtcConfig struct {
btcNetParams *chaincfg.Params
}
const (
BtcMainnet SupportedBtcNetwork = "mainnet"
BtcTestnet SupportedBtcNetwork = "testnet"
BtcSimnet SupportedBtcNetwork = "simnet"
BtcRegtest SupportedBtcNetwork = "regtest"
BtcSignet SupportedBtcNetwork = "signet"
)
func getParams(opts servertypes.AppOptions) *chaincfg.Params {
valueInterface := opts.Get("btc-config.network")
if valueInterface == nil {
panic("Bitcoin network should be provided in options")
}
network, err := cast.ToStringE(valueInterface)
if err != nil {
panic("Bitcoin netowrk config should be valid string")
}
if network == string(BtcMainnet) {
return &chaincfg.MainNetParams
} else if network == string(BtcTestnet) {
return &chaincfg.TestNet3Params
} else if network == string(BtcSimnet) {
return &chaincfg.SimNetParams
} else if network == string(BtcRegtest) {
return &chaincfg.RegressionNetParams
} else if network == string(BtcSignet) {
return &chaincfg.SigNetParams
} else {
panic("Bitcoin network should be one of [mainet, testnet, simnet, regtest, signet]")
}
}
func ParseBtcOptionsFromConfig(opts servertypes.AppOptions) BtcConfig {
return BtcConfig{
btcNetParams: getParams(opts),
}
}
func (c *BtcConfig) NetParams() *chaincfg.Params {
return c.btcNetParams
}
func (c *BtcConfig) PowLimit() big.Int {
return *c.btcNetParams.PowLimit
}
func (c *BtcConfig) RetargetAdjustmentFactor() int64 {
return c.btcNetParams.RetargetAdjustmentFactor
}
func (c *BtcConfig) ReduceMinDifficulty() bool {
return c.btcNetParams.ReduceMinDifficulty
}