This library contains serveral modules that help you write CKB contract with Rust.
syscalls
module: defines CKB syscallshigh_level
module: defines high level APIsdebug!
macro: a println!
like macro helps debuggingentry!
macro: defines contract entry pointdefault_alloc!
and libc_alloc!
macro: defines global allocator for no-std rustckb-std
supports two memory allocators: default allocator(pure rust) and libc allocator(libc dependent).
Default allocator allocate 64K
bytes memory, a panic will occured if out of memory.
Use the macro to change the default value:
rust
// indicate the heap size(default heap size is 64KB, with 16B minimal memory block)
default_alloc!(64 * 1024, 16)
Beware, the allocate parameters affect cycles of the contract; you should always test the contract after customizing parameters.
To use libc
global allocator, you must static link libc into the binary, and enable libc
feature in this crate.
Check examples
and tests to learn how to use.
See also ckb-tool which helps you write tests.