You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.3 KiB
78 lines
2.3 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file FeeStructure.cpp
|
|
* @author Gav Wood <i@gavwood.com>
|
|
* @date 2014
|
|
*/
|
|
|
|
#include "Params.h"
|
|
|
|
using namespace std;
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
|
|
//--- BEGIN: AUTOGENERATED FROM /feeStructure.json
|
|
u256 const c_genesisDifficulty = 131072;
|
|
u256 const c_maximumExtraDataSize = 1024;
|
|
u256 const c_epochDuration = 3000;
|
|
u256 const c_genesisGasLimit = 1000000;
|
|
u256 const c_minGasLimit = 125000;
|
|
u256 const c_gasLimitBoundDivisor = 1024;
|
|
u256 const c_minimumDifficulty = 131072;
|
|
u256 const c_difficultyBoundDivisor = 2048;
|
|
u256 const c_durationLimit = 8;
|
|
u256 const c_tierStepGas[] = {0, 2, 3, 5, 8, 10, 20, 0};
|
|
u256 const c_expGas = 10;
|
|
u256 const c_expByteGas = 10;
|
|
u256 const c_sha3Gas = 30;
|
|
u256 const c_sha3WordGas = 6;
|
|
u256 const c_sloadGas = 50;
|
|
u256 const c_sstoreSetGas = 20000;
|
|
u256 const c_sstoreResetGas = 5000;
|
|
u256 const c_sstoreClearGas = 5000;
|
|
u256 const c_sstoreRefundGas = 15000;
|
|
u256 const c_jumpdestGas = 1;
|
|
u256 const c_logGas = 375;
|
|
u256 const c_logDataGas = 8;
|
|
u256 const c_logTopicGas = 375;
|
|
u256 const c_createGas = 32000;
|
|
u256 const c_callGas = 40;
|
|
u256 const c_callStipend = 2300;
|
|
u256 const c_callValueTransferGas = 9000;
|
|
u256 const c_callNewAccountGas = 25000;
|
|
u256 const c_suicideRefundGas = 24000;
|
|
u256 const c_memoryGas = 3;
|
|
u256 const c_quadCoeffDiv = 512;
|
|
u256 const c_createDataGas = 200;
|
|
u256 const c_txGas = 21000;
|
|
u256 const c_txDataZeroGas = 4;
|
|
u256 const c_txDataNonZeroGas = 68;
|
|
u256 const c_copyGas = 3;
|
|
u256 const c_ecrecoverGas = 3000;
|
|
u256 const c_sha256Gas = 60;
|
|
u256 const c_sha256WordGas = 12;
|
|
u256 const c_ripemd160Gas = 600;
|
|
u256 const c_ripemd160WordGas = 120;
|
|
u256 const c_identityGas = 15;
|
|
u256 const c_identityWordGas = 3;
|
|
//--- END: AUTOGENERATED FROM /feeStructure.json
|
|
|
|
}
|
|
}
|
|
|
|
|