Crate ss_ewasm_api[−][src]
Expand description
ewasm_api is a library used to interface with Ethereum’s EEI in Ewasm, a set of enhancements to the Ethereum smart contract platform. ewasm_api exposes both a set of unsafe “native” functions representing the actual EEI functions, and a set of safe wrappers around them. It is recommended not to use the native functions as they do not perform bounds-checking.
To use ewasm_api, simply include it as a dependency in your project. ewasm_api can be built with various feature sets:
default
: Builds withwee_alloc
as the global allocator and with the Rust standard library.qimalloc
: Builds with qimalloc as the global allocator.debug
: Exposes the debugging interface.experimental
: Exposes the experimental bignum system library API.
Examples
use ewasm_api::prelude::*;
fn entry() {
let a: Hash = block_hash(1);
finish_data(&a.bytes);
}
ewasm_entry_point!(entry);
Using lower-level primitives:
use ewasm_api::{types::Hash, block_hash, finish_data};
#[cfg(target_arch = "wasm32")]
#[no_mangle]
pub extern "C" fn main() {
let a: types::Hash = block_hash(1);
finish_data(&a.bytes);
}
Modules
Re-export of all the basic features.
High-level types commonly used in Ethereum contracts.
Macros
Declare entry point for a contract. Expects a Rust function name to be executed. This will only compile in when using the wasm32 target.
Enums
Enum describing the result of a call. Used by call
, callCode
, callDelegate
, and
callStatic
.
Enum describing the result of create
. On success, the data contained is the address of the
newly created contract.
Enum representing an error code for EEI calls. Currently used by codeCopy
, callDataCopy
,
externalCodeCopy
, and returnDataCopy
.
Functions
Halts execution, reverts all changes to the state and consumes all gas.
Returns the beneficiary address for the block this transaction is in (current block)
Returns the difficulty of the most recent block.
Returns the gas limit of the most recent block.
Returns the hash of the number
th most recent block.
Returns the number of the most recent block.
Returns the timestamp of the most recent block.
Executes another account’s code in the context of the caller.
Executes a call similar to call_code
, but retaining the currently executing call’s sender
and value.
Executes a standard call to the specified address with the given gas limit, ether value, and data.
Executes a static call which cannot mutate the state.
Returns a vector containing all data passed with the currently executing call.
Returns the segment of call data beginning at from
, and continuing for length
bytes.
Returns the length of the call data supplied with the currently executing call.
Returns the sender of the currently executing call.
Returns the value sent with the currently executing call.
Returns the currently executing code.
Copies the segment of running code beginning at from
and continuing for length
bytes.
Returns the size of the currently executing code.
Subtracts the given amount from the VM’s gas counter. This is usually injected by the metering contract at deployment time, and hence is unneeded in most cases.
Creates a contract with the the given code, sending the specified ether value to its address.
Returns the executing address.
Returns the balance of the address given.
Returns the code at the specified address.
Returns the segment of code at address
beginning at from
and continuing for length
bytes.
Returns the size of the code at the specified address.
Ends execution, signalling success.
Fills the return buffer with the given data and halts execution, signalling success.
Returns the gas left in the current call.
Appends log data without a topic.
Appends log data with one topic.
Appends log data with two topics.
Appends log data with three topics.
Appends log data with four topics.
Returns the data in the VM’s return buffer.
Returns the segment of return buffer data beginning at from
and continuing for length
bytes.
Returns the length of the data in the VM’s return buffer.
Halts execution and reverts all changes to the state.
Fills the return buffer with the given data and halts execution, reverting all state changes.
Self-destructs the running contract, sending all its ether to a specified beneficiary address.
Accesses the storage data at the specified key.
Sets the storage data at the specified key.
Returns the gas price of the currently executing call.
Returns the address of the original transaction sender.
Executes callDataCopy, but does not check for overflow.
Executes codeCopy, but does not check for overflow.
Executes externalCodeCopy, but does not check for overflow.
Executes returnDataCopy, but does not check for overflow.