mod precompiled;
pub use self::precompiled::*;
use bigint::{Address, Gas, U256, H160};
pub trait AccountPatch {
fn initial_nonce() -> U256;
fn initial_create_nonce() -> U256;
fn empty_considered_exists() -> bool;
fn allow_partial_change() -> bool {
Self::empty_considered_exists()
}
}
pub struct EmbeddedAccountPatch;
impl AccountPatch for EmbeddedAccountPatch {
fn initial_nonce() -> U256 { U256::zero() }
fn initial_create_nonce() -> U256 { Self::initial_nonce() }
fn empty_considered_exists() -> bool { true }
}
pub struct EmbeddedByzantiumAccountPatch;
impl AccountPatch for EmbeddedByzantiumAccountPatch {
fn initial_nonce() -> U256 { U256::zero() }
fn initial_create_nonce() -> U256 { Self::initial_nonce() + U256::one() }
fn empty_considered_exists() -> bool { false }
}
pub trait Patch {
type Account: AccountPatch;
fn code_deposit_limit() -> Option<usize>;
fn callstack_limit() -> usize;
fn gas_extcode() -> Gas;
fn gas_balance() -> Gas;
fn gas_sload() -> Gas;
fn gas_suicide() -> Gas;
fn gas_suicide_new_account() -> Gas;
fn gas_call() -> Gas;
fn gas_expbyte() -> Gas;
fn gas_transaction_create() -> Gas;
fn force_code_deposit() -> bool;
fn has_delegate_call() -> bool;
fn has_static_call() -> bool;
fn has_revert() -> bool;
fn has_return_data() -> bool;
fn err_on_call_with_more_gas() -> bool;
fn call_create_l64_after_gas() -> bool;
fn memory_limit() -> usize;
fn precompileds() -> &'static [(Address, Option<&'static [u8]>, &'static Precompiled)];
}
pub static EMBEDDED_PRECOMPILEDS: [(Address, Option<&'static [u8]>, &'static Precompiled); 4] = [
(H160([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x01]),
None,
&ECREC_PRECOMPILED),
(H160([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x02]),
None,
&SHA256_PRECOMPILED),
(H160([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x03]),
None,
&RIP160_PRECOMPILED),
(H160([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x04]),
None,
&ID_PRECOMPILED),
];
pub struct VMTestPatch;
impl Patch for VMTestPatch {
type Account = EmbeddedAccountPatch;
fn code_deposit_limit() -> Option<usize> { None }
fn callstack_limit() -> usize { 2 }
fn gas_extcode() -> Gas { Gas::from(20usize) }
fn gas_balance() -> Gas { Gas::from(20usize) }
fn gas_sload() -> Gas { Gas::from(50usize) }
fn gas_suicide() -> Gas { Gas::from(0usize) }
fn gas_suicide_new_account() -> Gas { Gas::from(0usize) }
fn gas_call() -> Gas { Gas::from(40usize) }
fn gas_expbyte() -> Gas { Gas::from(10usize) }
fn gas_transaction_create() -> Gas { Gas::from(0usize) }
fn force_code_deposit() -> bool { true }
fn has_delegate_call() -> bool { false }
fn has_static_call() -> bool { false }
fn has_revert() -> bool { false }
fn has_return_data() -> bool { false }
fn err_on_call_with_more_gas() -> bool { true }
fn call_create_l64_after_gas() -> bool { false }
fn memory_limit() -> usize { usize::max_value() }
fn precompileds() -> &'static [(Address, Option<&'static [u8]>, &'static Precompiled)] {
&EMBEDDED_PRECOMPILEDS }
}
pub struct EmbeddedPatch;
impl Patch for EmbeddedPatch {
type Account = EmbeddedAccountPatch;
fn code_deposit_limit() -> Option<usize> { None }
fn callstack_limit() -> usize { 1024 }
fn gas_extcode() -> Gas { Gas::from(700usize) }
fn gas_balance() -> Gas { Gas::from(400usize) }
fn gas_sload() -> Gas { Gas::from(200usize) }
fn gas_suicide() -> Gas { Gas::from(5000usize) }
fn gas_suicide_new_account() -> Gas { Gas::from(25000usize) }
fn gas_call() -> Gas { Gas::from(700usize) }
fn gas_expbyte() -> Gas { Gas::from(50usize) }
fn gas_transaction_create() -> Gas { Gas::from(32000usize) }
fn force_code_deposit() -> bool { false }
fn has_delegate_call() -> bool { true }
fn has_static_call() -> bool { false }
fn has_revert() -> bool { false }
fn has_return_data() -> bool { false }
fn err_on_call_with_more_gas() -> bool { false }
fn call_create_l64_after_gas() -> bool { true }
fn memory_limit() -> usize { usize::max_value() }
fn precompileds() -> &'static [(Address, Option<&'static [u8]>, &'static Precompiled)] {
&EMBEDDED_PRECOMPILEDS }
}
pub struct EmbeddedByzantiumPatch;
impl Patch for EmbeddedByzantiumPatch {
type Account = EmbeddedAccountPatch;
fn code_deposit_limit() -> Option<usize> { Some(0x6000) }
fn callstack_limit() -> usize { 1024 }
fn gas_extcode() -> Gas { Gas::from(700usize) }
fn gas_balance() -> Gas { Gas::from(400usize) }
fn gas_sload() -> Gas { Gas::from(200usize) }
fn gas_suicide() -> Gas { Gas::from(5000usize) }
fn gas_suicide_new_account() -> Gas { Gas::from(25000usize) }
fn gas_call() -> Gas { Gas::from(700usize) }
fn gas_expbyte() -> Gas { Gas::from(50usize) }
fn gas_transaction_create() -> Gas { Gas::from(32000usize) }
fn force_code_deposit() -> bool { false }
fn has_delegate_call() -> bool { true }
fn has_static_call() -> bool { true }
fn has_revert() -> bool { true }
fn has_return_data() -> bool { true }
fn err_on_call_with_more_gas() -> bool { false }
fn call_create_l64_after_gas() -> bool { true }
fn memory_limit() -> usize { usize::max_value() }
fn precompileds() -> &'static [(Address, Option<&'static [u8]>, &'static Precompiled)] {
&EMBEDDED_PRECOMPILEDS }
}