2015-12-01 19:44:58 +01:00
|
|
|
// Copyright (c) 2013-2015 The btcsuite developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2015-11-25 06:21:40 +01:00
|
|
|
|
|
|
|
package netparams
|
|
|
|
|
2021-03-04 16:07:01 +01:00
|
|
|
import (
|
2021-08-26 00:58:28 +02:00
|
|
|
"github.com/lbryio/lbcd/chaincfg"
|
|
|
|
"github.com/lbryio/lbcd/wire"
|
2021-03-04 16:07:01 +01:00
|
|
|
)
|
2015-11-25 06:21:40 +01:00
|
|
|
|
|
|
|
// Params is used to group parameters for various networks such as the main
|
|
|
|
// network and test networks.
|
|
|
|
type Params struct {
|
|
|
|
*chaincfg.Params
|
|
|
|
RPCClientPort string
|
|
|
|
RPCServerPort string
|
|
|
|
}
|
|
|
|
|
2021-08-26 00:58:28 +02:00
|
|
|
// MainNetParams contains parameters specific running lbcwallet and
|
|
|
|
// on the main network (wire.MainNet).
|
2015-11-25 06:21:40 +01:00
|
|
|
var MainNetParams = Params{
|
|
|
|
Params: &chaincfg.MainNetParams,
|
|
|
|
RPCClientPort: "8334",
|
|
|
|
RPCServerPort: "8332",
|
|
|
|
}
|
|
|
|
|
2021-08-26 00:58:28 +02:00
|
|
|
// TestNet3Params contains parameters specific running lbcwallet and
|
|
|
|
// on the test network (version 3) (wire.TestNet3).
|
2015-11-25 06:21:40 +01:00
|
|
|
var TestNet3Params = Params{
|
|
|
|
Params: &chaincfg.TestNet3Params,
|
|
|
|
RPCClientPort: "18334",
|
|
|
|
RPCServerPort: "18332",
|
|
|
|
}
|
|
|
|
|
|
|
|
// SimNetParams contains parameters specific to the simulation test network
|
|
|
|
// (wire.SimNet).
|
|
|
|
var SimNetParams = Params{
|
|
|
|
Params: &chaincfg.SimNetParams,
|
|
|
|
RPCClientPort: "18556",
|
|
|
|
RPCServerPort: "18554",
|
|
|
|
}
|
2021-03-04 16:07:01 +01:00
|
|
|
|
|
|
|
// SigNetParams contains parameters specific to the signet test network
|
|
|
|
// (wire.SigNet).
|
|
|
|
var SigNetParams = Params{
|
|
|
|
Params: &chaincfg.SigNetParams,
|
|
|
|
RPCClientPort: "38334",
|
|
|
|
RPCServerPort: "38332",
|
|
|
|
}
|
|
|
|
|
|
|
|
// SigNetWire is a helper function that either returns the given chain
|
|
|
|
// parameter's net value if the parameter represents a signet network or 0 if
|
|
|
|
// it's not. This is necessary because there can be custom signet networks that
|
|
|
|
// have a different net value.
|
|
|
|
func SigNetWire(params *chaincfg.Params) wire.BitcoinNet {
|
|
|
|
if params.Name == chaincfg.SigNetParams.Name {
|
|
|
|
return params.Net
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|