OSDN Git Service

fe8e7b4d24bb556bc28b5c54b39f3c8ebe5d0435
[bytom/vapor.git] / consensus / general.go
1 package consensus
2
3 import (
4         "encoding/binary"
5
6         "github.com/vapor/protocol/bc"
7 )
8
9 // basic constant
10 const (
11         BTMAlias = "BTM"
12
13         PayToWitnessPubKeyHashDataSize = 20
14         PayToWitnessScriptHashDataSize = 32
15 )
16
17 // BTMAssetID is BTM's asset id, the soul asset of Bytom
18 var BTMAssetID = &bc.AssetID{
19         V0: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}),
20         V1: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}),
21         V2: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}),
22         V3: binary.BigEndian.Uint64([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}),
23 }
24
25 // BTMDefinitionMap is the ....
26 var BTMDefinitionMap = map[string]interface{}{
27         "name":        BTMAlias,
28         "symbol":      BTMAlias,
29         "decimals":    8,
30         "description": `Bytom Official Issue`,
31 }
32
33 // BasicConfig indicate the basic config
34 type BasicConfig struct {
35         // gas config
36         MaxBlockGas      uint64 // the max used gas for all transactions of a block
37         MaxGasAmount     int64  // the max gas for a transaction
38         DefaultGasCredit int64  // the max default credit gas for a transaction with non-BTM asset
39         VMGasRate        int64  // the gas rate for VM
40         StorageGasRate   int64  // the gas rate for storage
41
42         // utxo config
43         VotePendingBlockNumber     uint64 // the valid block interval for vote utxo after the vote transaction is confirmed
44         CoinbasePendingBlockNumber uint64 // the valid block interval for coinbase utxo after the coinbase transaction is confirmed
45         CoinbaseArbitrarySizeLimit int    // the max size for coinbase arbitrary
46 }
47
48 // DPOSConfig indicate the dpos consensus config
49 type DPOSConfig struct {
50         NumOfConsensusNode      int64  // the number of consensus node
51         BlockNumEachNode        uint64 // the number of generated continuous blocks for each node
52         RoundVoteBlockNums      uint64 // the block interval which count the vote result in a round
53         MinConsensusNodeVoteNum uint64 // the min BTM amount for becoming consensus node(the unit is neu)
54         MinVoteOutputAmount     uint64 // the min BTM amount for voting output in a transaction(the unit is neu)
55         BlockTimeInterval       uint64 // the block time interval for producting a block
56         MaxTimeOffsetMs         uint64 // the max number of seconds a block time is allowed to be ahead of the current time
57 }
58
59 // Checkpoint identifies a known good point in the block chain.  Using
60 // checkpoints allows a few optimizations for old blocks during initial download
61 // and also prevents forks from old blocks.
62 type Checkpoint struct {
63         Height uint64
64         Hash   bc.Hash
65 }
66
67 // ProducerSubsidy is a subsidy to the producer of the generated block
68 type ProducerSubsidy struct {
69         BeginBlock uint64
70         EndBlock   uint64
71         Subsidy    uint64
72 }
73
74 // Params store the config for different network
75 type Params struct {
76         // Name defines a human-readable identifier for the network.
77         Name string
78
79         // Bech32HRPSegwit defines the prefix of address for the network
80         Bech32HRPSegwit string
81
82         // DefaultPort defines the default peer-to-peer port for the network.
83         DefaultPort string
84
85         // BasicConfig defines the gas and utxo relatived paramters.
86         BasicConfig
87
88         // DPOSConfig defines the dpos consensus paramters.
89         DPOSConfig
90
91         // DNSSeeds defines a list of DNS seeds for the network that are used
92         // as one method to discover peers.
93         DNSSeeds []string
94
95         // Checkpoints defines the checkpoint blocks
96         Checkpoints []Checkpoint
97
98         // ProducerSubsidys defines the producer subsidy by block height
99         ProducerSubsidys []ProducerSubsidy
100 }
101
102 // VaporDPOSConfig return the dpos consensus config
103 func VaporDPOSConfig() DPOSConfig {
104         dpos := DPOSConfig{
105                 NumOfConsensusNode:      10,
106                 BlockNumEachNode:        12,
107                 MinConsensusNodeVoteNum: uint64(100000000000000),
108                 MinVoteOutputAmount:     uint64(100000000),
109                 BlockTimeInterval:       500,
110         }
111
112         dpos.RoundVoteBlockNums = uint64(uint64(dpos.NumOfConsensusNode) * dpos.BlockNumEachNode * 10)
113         dpos.MaxTimeOffsetMs = uint64(uint64(dpos.BlockTimeInterval) * dpos.BlockNumEachNode / 3)
114         return dpos
115 }
116
117 // ActiveNetParams is the active NetParams
118 var ActiveNetParams = MainNetParams
119
120 // NetParams is the correspondence between chain_id and Params
121 var NetParams = map[string]Params{
122         "mainnet": MainNetParams,
123         "testnet": TestNetParams,
124         "solonet": SoloNetParams,
125 }
126
127 // MainNetParams is the config for vapor-mainnet
128 var MainNetParams = Params{
129         Name:            "main",
130         Bech32HRPSegwit: "vp",
131         DefaultPort:     "56656",
132         DNSSeeds:        []string{"www.mainnetseed.vapor.io"},
133         BasicConfig: BasicConfig{
134                 MaxBlockGas:                uint64(10000000),
135                 MaxGasAmount:               int64(200000),
136                 DefaultGasCredit:           int64(160000),
137                 StorageGasRate:             int64(1),
138                 VMGasRate:                  int64(200),
139                 VotePendingBlockNumber:     uint64(10000),
140                 CoinbasePendingBlockNumber: uint64(100),
141                 CoinbaseArbitrarySizeLimit: 128,
142         },
143         DPOSConfig:  VaporDPOSConfig(),
144         Checkpoints: []Checkpoint{},
145         ProducerSubsidys: []ProducerSubsidy{
146                 {BeginBlock: 1, EndBlock: 63072000, Subsidy: 15000000},
147         },
148 }
149
150 // TestNetParams is the config for vapor-testnet
151 var TestNetParams = Params{
152         Name:            "test",
153         Bech32HRPSegwit: "tp",
154         DefaultPort:     "56657",
155         DNSSeeds:        []string{"www.testnetseed.vapor.io"},
156         BasicConfig: BasicConfig{
157                 MaxBlockGas:                uint64(10000000),
158                 MaxGasAmount:               int64(200000),
159                 DefaultGasCredit:           int64(160000),
160                 StorageGasRate:             int64(1),
161                 VMGasRate:                  int64(200),
162                 VotePendingBlockNumber:     uint64(10000),
163                 CoinbasePendingBlockNumber: uint64(100),
164                 CoinbaseArbitrarySizeLimit: 128,
165         },
166         DPOSConfig:  VaporDPOSConfig(),
167         Checkpoints: []Checkpoint{},
168         ProducerSubsidys: []ProducerSubsidy{
169                 {BeginBlock: 1, EndBlock: 63072000, Subsidy: 15000000},
170         },
171 }
172
173 // SoloNetParams is the config for vapor solonet
174 var SoloNetParams = Params{
175         Name:            "solo",
176         Bech32HRPSegwit: "sp",
177         DefaultPort:     "56658",
178         BasicConfig: BasicConfig{
179                 MaxBlockGas:                uint64(10000000),
180                 MaxGasAmount:               int64(200000),
181                 DefaultGasCredit:           int64(160000),
182                 StorageGasRate:             int64(1),
183                 VMGasRate:                  int64(200),
184                 VotePendingBlockNumber:     uint64(10000),
185                 CoinbasePendingBlockNumber: uint64(100),
186                 CoinbaseArbitrarySizeLimit: 128,
187         },
188         DPOSConfig:  VaporDPOSConfig(),
189         Checkpoints: []Checkpoint{},
190         ProducerSubsidys: []ProducerSubsidy{
191                 {BeginBlock: 0, EndBlock: 0, Subsidy: 24},
192                 {BeginBlock: 1, EndBlock: 840000, Subsidy: 24},
193                 {BeginBlock: 840001, EndBlock: 1680000, Subsidy: 12},
194                 {BeginBlock: 1680001, EndBlock: 3360000, Subsidy: 6},
195         },
196 }
197
198 // BlockSubsidy calculate the coinbase rewards on given block height
199 func BlockSubsidy(height uint64) uint64 {
200         for _, subsidy := range ActiveNetParams.ProducerSubsidys {
201                 if height >= subsidy.BeginBlock && height <= subsidy.EndBlock {
202                         return subsidy.Subsidy
203                 }
204         }
205         return 0
206 }
207
208 // BytomMainNetParams is the config for bytom mainnet
209 var BytomMainNetParams = Params{
210         Name:            "main",
211         Bech32HRPSegwit: "bm",
212 }