Crates.io | neutron-star-rt |
lib.rs | neutron-star-rt |
version | 0.2.1 |
source | src |
created_at | 2019-09-20 22:03:20.011563 |
updated_at | 2019-09-27 20:54:40.241003 |
description | The minimal runtime required for smart contracts built on the Qtum Neutron platform |
homepage | |
repository | https://github.com/qtumproject/neutron-star-rt |
max_upload_size | |
id | 166325 |
size | 12,885 |
This is the minimal runtime and low level routines required to use the Qtum Neutron x86 platform. This includes using proper linking setup and several assembly routines for system calls and initialization.
To compile:
./assemble.sh # requires yasm to be installed
xargo build --target i486-neutron
The following functions should be defined by users of this crate:
#[no_mangle]
pub extern "C" fn __init_neutron() {}
This is used internally by the neutron-star crate and is called before the main function is called.
fn on_call() -> u32;
fn on_create() -> u32;
These two functions must be defined by the using crate and are executed when the contract is called or initially created, respectively.
Static initializers probably do not work.
This requires a nightly build currently to use because of the custom target needed for the core
crate.