Documentation ¶
Index ¶
Constants ¶
const ( BTMAlias = "BTM" PayToWitnessPubKeyHashDataSize = 20 PayToWitnessScriptHashDataSize = 32 )
basic constant
Variables ¶
var ActiveNetParams = MainNetParams
ActiveNetParams is the active NetParams
var BTMAssetID = &bc.AssetID{ V0: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}), V1: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}), V2: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}), V3: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}), }
BTMAssetID is BTM's asset id, the soul asset of Bytom
var BTMDefinitionMap = map[string]interface{}{ "name": BTMAlias, "symbol": BTMAlias, "decimals": 8, "description": `Bytom Official Issue`, }
BTMDefinitionMap is the ....
var MainNetParams = Params{ Name: "main", Bech32HRPSegwit: "vp", DefaultPort: "56656", DNSSeeds: []string{"www.mainnetseed.vapor.io"}, BasicConfig: BasicConfig{ MaxBlockGas: uint64(10000000), MaxGasAmount: int64(200000), DefaultGasCredit: int64(160000), StorageGasRate: int64(1), VMGasRate: int64(200), VotePendingBlockNumber: uint64(3456000), CoinbasePendingBlockNumber: uint64(7200), CoinbaseArbitrarySizeLimit: 128, }, DPOSConfig: VaporDPOSConfig(), Checkpoints: []Checkpoint{}, ProducerSubsidys: []ProducerSubsidy{ {BeginBlock: 1, EndBlock: 63072000, Subsidy: 15000000}, }, }
MainNetParams is the config for vapor-mainnet
var NetParams = map[string]Params{ "mainnet": MainNetParams, "testnet": TestNetParams, "solonet": SoloNetParams, }
NetParams is the correspondence between chain_id and Params
var SoloNetParams = Params{ Name: "solo", Bech32HRPSegwit: "sp", DefaultPort: "56658", BasicConfig: BasicConfig{ MaxBlockGas: uint64(10000000), MaxGasAmount: int64(200000), DefaultGasCredit: int64(160000), StorageGasRate: int64(1), VMGasRate: int64(200), VotePendingBlockNumber: uint64(10000), CoinbasePendingBlockNumber: uint64(1200), CoinbaseArbitrarySizeLimit: 128, }, DPOSConfig: VaporDPOSConfig(), Checkpoints: []Checkpoint{}, ProducerSubsidys: []ProducerSubsidy{ {BeginBlock: 0, EndBlock: 0, Subsidy: 24}, {BeginBlock: 1, EndBlock: 840000, Subsidy: 24}, {BeginBlock: 840001, EndBlock: 1680000, Subsidy: 12}, {BeginBlock: 1680001, EndBlock: 3360000, Subsidy: 6}, }, }
SoloNetParams is the config for vapor solonet
var TestNetParams = Params{ Name: "test", Bech32HRPSegwit: "tp", DefaultPort: "56657", DNSSeeds: []string{"www.testnetseed.vapor.io"}, BasicConfig: BasicConfig{ MaxBlockGas: uint64(10000000), MaxGasAmount: int64(200000), DefaultGasCredit: int64(160000), StorageGasRate: int64(1), VMGasRate: int64(200), VotePendingBlockNumber: uint64(10000), CoinbasePendingBlockNumber: uint64(1200), CoinbaseArbitrarySizeLimit: 128, }, DPOSConfig: VaporDPOSConfig(), Checkpoints: []Checkpoint{}, ProducerSubsidys: []ProducerSubsidy{ {BeginBlock: 1, EndBlock: 63072000, Subsidy: 15000000}, }, }
TestNetParams is the config for vapor-testnet
Functions ¶
func BlockSubsidy ¶
BlockSubsidy calculate the coinbase rewards on given block height
Types ¶
type BasicConfig ¶ added in v0.3.0
type BasicConfig struct { // gas config MaxBlockGas uint64 // the max used gas for all transactions of a block MaxGasAmount int64 // the max gas for a transaction DefaultGasCredit int64 // the max default credit gas for a transaction with non-BTM asset VMGasRate int64 // the gas rate for VM StorageGasRate int64 // the gas rate for storage // utxo config VotePendingBlockNumber uint64 // the valid block interval for vote utxo after the vote transaction is confirmed CoinbasePendingBlockNumber uint64 // the valid block interval for coinbase utxo after the coinbase transaction is confirmed CoinbaseArbitrarySizeLimit int // the max size for coinbase arbitrary }
BasicConfig indicate the basic config
type Checkpoint ¶
Checkpoint identifies a known good point in the block chain. Using checkpoints allows a few optimizations for old blocks during initial download and also prevents forks from old blocks.
type DPOSConfig ¶ added in v0.3.0
type DPOSConfig struct { NumOfConsensusNode int64 // the number of consensus node BlockNumEachNode uint64 // the number of generated continuous blocks for each node RoundVoteBlockNums uint64 // the block interval which count the vote result in a round MinConsensusNodeVoteNum uint64 // the min BTM amount for becoming consensus node(the unit is neu) MinVoteOutputAmount uint64 // the min BTM amount for voting output in a transaction(the unit is neu) BlockTimeInterval uint64 // the block time interval for producting a block MaxTimeOffsetMs uint64 // the max number of seconds a block time is allowed to be ahead of the current time }
DPOSConfig indicate the dpos consensus config
func VaporDPOSConfig ¶ added in v0.3.0
func VaporDPOSConfig() DPOSConfig
VaporDPOSConfig return the dpos consensus config
type Params ¶
type Params struct { // Name defines a human-readable identifier for the network. Name string // Bech32HRPSegwit defines the prefix of address for the network Bech32HRPSegwit string // DefaultPort defines the default peer-to-peer port for the network. DefaultPort string // BasicConfig defines the gas and utxo relatived paramters. BasicConfig // DPOSConfig defines the dpos consensus paramters. DPOSConfig // DNSSeeds defines a list of DNS seeds for the network that are used // as one method to discover peers. DNSSeeds []string // Checkpoints defines the checkpoint blocks Checkpoints []Checkpoint // ProducerSubsidys defines the producer subsidy by block height ProducerSubsidys []ProducerSubsidy }
Params store the config for different network
func BytomMainNetParams ¶ added in v0.3.0
BytomMainNetParams is the config for bytom mainnet
type ProducerSubsidy ¶
ProducerSubsidy is a subsidy to the producer of the generated block
type ServiceFlag ¶
type ServiceFlag uint64
ServiceFlag use uint64 to indicate what kind of server this node can provide. one uint64 can represent 64 type of service flag
const ( // SFFullNode is a flag used to indicate a peer is a full node. SFFullNode ServiceFlag = 1 << iota // SFFastSync indicate peer support header first mode SFFastSync // SFSPV indicate peer support spv mode SFSPV // DefaultServices is the server that this node support DefaultServices = SFFullNode | SFFastSync | SFSPV )
func (ServiceFlag) IsEnable ¶
func (f ServiceFlag) IsEnable(checkFlag ServiceFlag) bool
IsEnable check does the flag support the input flag function