openethereum/src/evm/ext.rs

34 lines
1.0 KiB
Rust
Raw Normal View History

2015-12-30 12:46:10 +01:00
//! Contract execution environment.
2015-12-23 13:02:01 +01:00
use util::hash::*;
2015-12-29 12:04:03 +01:00
use util::uint::*;
2016-01-06 13:00:14 +01:00
use util::bytes::*;
2016-01-09 00:51:09 +01:00
pub trait Ext {
2016-01-07 23:33:54 +01:00
/// Returns a value for given key.
fn sload(&self, key: &H256) -> H256;
/// Stores a value for given key.
fn sstore(&mut self, key: H256, value: H256);
/// Returns address balance.
fn balance(&self, address: &Address) -> U256;
/// Returns the hash of one of the 256 most recent complete blocks.
fn blockhash(&self, number: &U256) -> H256;
/// Creates new contract.
/// Returns new contract address and gas used.
2016-01-09 00:51:09 +01:00
fn create(&mut self, gas: u64, endowment: &U256, code: &[u8]) -> (Address, u64);
2016-01-07 23:33:54 +01:00
/// Calls existing contract.
/// Returns call output and gas used.
2016-01-09 00:51:09 +01:00
fn call(&mut self, gas: u64, call_gas: u64, receive_address: &Address, value: &U256, data: &[u8], code_address: &Address) -> Option<(Vec<u8>, u64)>;
2016-01-07 23:33:54 +01:00
/// Returns code at given address
fn extcode(&self, address: &Address) -> Vec<u8>;
/// Creates log entry with given topics and data
fn log(&mut self, topics: Vec<H256>, data: Bytes);
}