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 rustDefault allocator uses a mixed allocation strategy:
User can invoke macro with arguments to customize the heap size. The default heap size arguments are:
(fixed heap size 4KB, dynamic heap size 64KB, dynamic heap min memory block 64B)
Use the macro with arguments to change it:
rust
default_alloc!(4 * 1024, 64 * 1024, 64)
Beware, use difference heap size or memory block size may affect cycles of the contract; you should always test the contract after customizing parameters.
Check examples
and tests to learn how to use.
See also ckb-tool which helps you write tests.