OSDN Git Service

Merge branch 'dev' into dev-verify
[bytom/bytom.git] / consensus / general.go
index 8eefff0..3c26ba8 100644 (file)
@@ -1,26 +1,43 @@
 package consensus
 
 import (
+       "strings"
+
        "github.com/bytom/protocol/bc"
 )
 
+//consensus variables
 const (
-       // define the Max transaction size and Max block size
-       MaxTxSize    = uint64(1024)
-       MaxBlockSzie = uint64(16384)
+       // Max gas that one block contains
+       MaxBlockGas      = uint64(10000000)
+       VMGasRate        = int64(200)
+       StorageGasRate   = int64(1)
+       MaxGasAmount     = int64(200000)
+       DefaultGasCredit = int64(30000)
 
        //config parameter for coinbase reward
-       subsidyReductionInterval = uint64(560640)
-       baseSubsidy              = uint64(624000000000)
-       initialBlockSubsidy      = uint64(1470000000000000000)
+       CoinbasePendingBlockNumber = uint64(100)
+       subsidyReductionInterval   = uint64(840000)
+       baseSubsidy                = uint64(41250000000)
+       InitialBlockSubsidy        = uint64(140700041250000000)
 
        // config for pow mining
-       powMinBits            = uint64(2161727821138738707)
-       BlocksPerRetarget     = uint64(1024)
-       targetSecondsPerBlock = uint64(60)
+       BlocksPerRetarget     = uint64(2016)
+       TargetSecondsPerBlock = uint64(150)
+       SeedPerRetarget       = uint64(256)
+
+       // MaxTimeOffsetSeconds is the maximum number of seconds a block time is allowed to be ahead of the current time
+       MaxTimeOffsetSeconds = uint64(60 * 60)
+       MedianTimeBlocks     = 11
+
+       PayToWitnessPubKeyHashDataSize = 20
+       PayToWitnessScriptHashDataSize = 32
+       CoinbaseArbitrarySizeLimit     = 128
+
+       BTMAlias = "BTM"
 )
 
-// define the BTM asset id, the soul asset of Bytom
+// BTMAssetID is BTM's asset id, the soul asset of Bytom
 var BTMAssetID = &bc.AssetID{
        V0: uint64(18446744073709551615),
        V1: uint64(18446744073709551615),
@@ -28,13 +45,69 @@ var BTMAssetID = &bc.AssetID{
        V3: uint64(18446744073709551615),
 }
 
+// InitialSeed is SHA3-256 of Byte[0^32]
+var InitialSeed = &bc.Hash{
+       V0: uint64(11412844483649490393),
+       V1: uint64(4614157290180302959),
+       V2: uint64(1780246333311066183),
+       V3: uint64(9357197556716379726),
+}
+
+// BTMDefinitionMap is the ....
+var BTMDefinitionMap = map[string]interface{}{
+       "name":        BTMAlias,
+       "symbol":      BTMAlias,
+       "decimals":    8,
+       "description": `Bytom Official Issue`,
+}
+
+// BlockSubsidy calculate the coinbase rewards on given block height
 func BlockSubsidy(height uint64) uint64 {
        if height == 0 {
-               return initialBlockSubsidy
+               return InitialBlockSubsidy
        }
        return baseSubsidy >> uint(height/subsidyReductionInterval)
 }
 
-func InitBlock() []byte {
-       return []byte("0301000000000000000000000000000000000000000000000000000000000000000000d9a9c883f72b408b6eb2c2fb757ece7d5b7bf36c978e2edeb5ff98a4e8cccfa0cc8b1ed6cacdfd492159980684155da19e87de0d1b37b35c1a1123770ec1dcc710aabe77607cceacb68c0293fcb680808080801e0107010700d9a9c883f72b000001012cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8080ccdee2a69fb314010151000000")
+// IsBech32SegwitPrefix returns whether the prefix is a known prefix for segwit
+// addresses on any default or registered network.  This is used when decoding
+// an address string into a specific address type.
+func IsBech32SegwitPrefix(prefix string, params *Params) bool {
+       prefix = strings.ToLower(prefix)
+       return prefix == params.Bech32HRPSegwit+"1"
+}
+
+// Params store the config for different network
+type Params struct {
+       // Name defines a human-readable identifier for the network.
+       Name            string
+       Bech32HRPSegwit string
+}
+
+// ActiveNetParams is ...
+var ActiveNetParams = MainNetParams
+
+// NetParams is the correspondence between chain_id and Params
+var NetParams = map[string]Params{
+       "mainnet": MainNetParams,
+       "testnet": TestNetParams,
+       "solonet": SoloNetParams,
+}
+
+// MainNetParams is the config for production
+var MainNetParams = Params{
+       Name:            "main",
+       Bech32HRPSegwit: "bm",
+}
+
+// TestNetParams is the config for test-net
+var TestNetParams = Params{
+       Name:            "test",
+       Bech32HRPSegwit: "tm",
+}
+
+// TestNetParams is the config for test-net
+var SoloNetParams = Params{
+       Name:            "solo",
+       Bech32HRPSegwit: "sm",
 }