OSDN Git Service

modify general config (#257)
[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 = VaporNetParams
119
120 // NetParams is the correspondence between chain_id and Params
121 var NetParams = map[string]Params{
122         "mainnet": MainNetParams,
123         "wisdom":  TestNetParams,
124         "vapor":   VaporNetParams,
125         "solonet": SoloNetParams,
126 }
127
128 // MainNetParams is the config for bytom main-net
129 var MainNetParams = Params{
130         Name:            "main",
131         Bech32HRPSegwit: "bm",
132         DefaultPort:     "46657",
133         DNSSeeds:        []string{"www.mainnetseed.bytom.io"},
134         Checkpoints:     []Checkpoint{},
135 }
136
137 // TestNetParams is the config for bytom test-net
138 var TestNetParams = Params{
139         Name:            "test",
140         Bech32HRPSegwit: "tm",
141         DefaultPort:     "46656",
142         DNSSeeds:        []string{"www.testnetseed.bytom.io"},
143         Checkpoints:     []Checkpoint{},
144 }
145
146 // VaporNetParams is the config for vapor-net
147 var VaporNetParams = Params{
148         Name:            "vapor",
149         Bech32HRPSegwit: "vp",
150         BasicConfig: BasicConfig{
151                 MaxBlockGas:                uint64(10000000),
152                 MaxGasAmount:               int64(200000),
153                 DefaultGasCredit:           int64(160000),
154                 StorageGasRate:             int64(1),
155                 VMGasRate:                  int64(200),
156                 VotePendingBlockNumber:     uint64(10000),
157                 CoinbasePendingBlockNumber: uint64(100),
158                 CoinbaseArbitrarySizeLimit: 128,
159         },
160         DPOSConfig:  VaporDPOSConfig(),
161         Checkpoints: []Checkpoint{},
162         ProducerSubsidys: []ProducerSubsidy{
163                 {BeginBlock: 1, EndBlock: 63072000, Subsidy: 15000000},
164         },
165 }
166
167 // SoloNetParams is the config for solo test-net
168 var SoloNetParams = Params{
169         Name:            "solo",
170         Bech32HRPSegwit: "sm",
171         BasicConfig: BasicConfig{
172                 MaxBlockGas:                uint64(10000000),
173                 MaxGasAmount:               int64(200000),
174                 DefaultGasCredit:           int64(160000),
175                 StorageGasRate:             int64(1),
176                 VMGasRate:                  int64(200),
177                 VotePendingBlockNumber:     uint64(10000),
178                 CoinbasePendingBlockNumber: uint64(100),
179                 CoinbaseArbitrarySizeLimit: 128,
180         },
181         DPOSConfig:  VaporDPOSConfig(),
182         Checkpoints: []Checkpoint{},
183         ProducerSubsidys: []ProducerSubsidy{
184                 {BeginBlock: 0, EndBlock: 0, Subsidy: 24},
185                 {BeginBlock: 1, EndBlock: 840000, Subsidy: 24},
186                 {BeginBlock: 840001, EndBlock: 1680000, Subsidy: 12},
187                 {BeginBlock: 1680001, EndBlock: 3360000, Subsidy: 6},
188         },
189 }
190
191 // BlockSubsidy calculate the coinbase rewards on given block height
192 func BlockSubsidy(height uint64) uint64 {
193         for _, subsidy := range ActiveNetParams.ProducerSubsidys {
194                 if height >= subsidy.BeginBlock && height <= subsidy.EndBlock {
195                         return subsidy.Subsidy
196                 }
197         }
198         return 0
199 }