github.com/pixichain/go-pixicoin@v0.0.0-20220708132717-27ba739265ff/core/fees.go (about)

     1  // Copyright 2014 The Go-Ethereum Authors
     2  // This file is part of the Go-Ethereum library.
     3  //
     4  // Copyright 2017 The Go-pixicoin Authors
     5  // This file is part of the Go-pixicoin library.
     6  //
     7  // The go-ethereum library is free software: you can redistribute it and/or modify
     8  // it under the terms of the GNU Lesser General Public License as published by
     9  // the Free Software Foundation, either version 3 of the License, or
    10  // (at your option) any later version.
    11  //
    12  // The go-ethereum library is distributed in the hope that it will be useful,
    13  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    14  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    15  // GNU Lesser General Public License for more details.
    16  //
    17  // You should have received a copy of the GNU Lesser General Public License
    18  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    19  
    20  package core
    21  
    22  import (
    23  	"math/big"
    24  )
    25  
    26  var BlockReward *big.Int = new(big.Int).Mul(big.NewInt(314), big.NewInt(1e+18))
    27  var NewBlockReward *big.Int = new(big.Int).Mul(big.NewInt(250), big.NewInt(1e+18))
    28  var NMBlockReward *big.Int = new(big.Int).Mul(big.NewInt(0), big.NewInt(1e+18))
    29  var QTBlockReward *big.Int = new(big.Int).Mul(big.NewInt(50), big.NewInt(1e+18))
    30  var UBIReward *big.Int = new(big.Int).Mul(big.NewInt(50), big.NewInt(1e+18))
    31  var DevReward *big.Int = new(big.Int).Mul(big.NewInt(14), big.NewInt(1e+18))