gitlab.com/flarenetwork/coreth@v0.1.1/params/avalanche_params.go (about)

     1  // (c) 2019-2020, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package params
     5  
     6  import (
     7  	"github.com/ava-labs/avalanchego/utils/units"
     8  )
     9  
    10  // Minimum Gas Price
    11  var (
    12  	// MinGasPrice is the number of nAVAX required per gas unit for a
    13  	// transaction to be valid, measured in wei
    14  	LaunchMinGasPrice        int64 = 470_000_000_000
    15  	ApricotPhase1MinGasPrice int64 = 225_000_000_000
    16  
    17  	AvalancheAtomicTxFee = units.MilliAvax
    18  
    19  	ApricotPhase1GasLimit uint64 = 8_000_000
    20  
    21  	ApricotPhase3ExtraDataSize        = 80
    22  	ApricotPhase3MinBaseFee     int64 = 75_000_000_000
    23  	ApricotPhase3MaxBaseFee     int64 = 225_000_000_000
    24  	ApricotPhase3InitialBaseFee int64 = 225_000_000_000
    25  )