#neutron #run-time #blockchain #platform #required #syscalls #qtum

nightly neutron-star-rt

The minimal runtime required for smart contracts built on the Qtum Neutron platform

3 unstable releases

0.2.1 Sep 27, 2019
0.2.0 Sep 27, 2019
0.1.0 Sep 20, 2019

#8 in #neutron

30 downloads per month

MIT license

10KB
243 lines

Contains (ELF exe, 1KB) bin/lowlevel.o

Neutron-star-rt

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.

Caveats

Static initializers probably do not work.

This requires a nightly build currently to use because of the custom target needed for the core crate.

No runtime deps

~170KB