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.
70 lines
2.0 KiB
70 lines
2.0 KiB
11 years ago
|
/*
|
||
|
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/>.
|
||
|
*/
|
||
10 years ago
|
/** @file Params.cpp
|
||
11 years ago
|
* @author Gav Wood <i@gavwood.com>
|
||
|
* @date 2014
|
||
|
*/
|
||
|
|
||
10 years ago
|
#include "Params.h"
|
||
11 years ago
|
|
||
|
using namespace std;
|
||
10 years ago
|
namespace dev
|
||
|
{
|
||
|
namespace eth
|
||
|
{
|
||
|
|
||
10 years ago
|
//--- BEGIN: AUTOGENERATED FROM github.com/ethereum/common/params.json
|
||
10 years ago
|
u256 const c_stackLimit = 1024;
|
||
10 years ago
|
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_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
|
||
|
|
||
|
}
|
||
|
}
|
||
10 years ago
|
|