inkpad-browser 0.1.0

Run ink! contract in browser!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod result;
mod ri;
mod runtime;
mod ti;
mod tree;

// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;

pub use self::{
    result::{Error, Result},
    ri::Interface,
    runtime::Runtime,
    ti::Transaction,
    tree::Tree,
};