ckb-std

Crates.io

This library contains serveral modules that help you write CKB contract with Rust.

Usage

Documentation

Modules

Memory allocator

Default 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.

Examples

Check examples and tests to learn how to use.

See also ckb-tool which helps you write tests.