ckb-std 0.7.4

This library contains serveral modules help you write CKB contract with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// re-export to maintain compatible with old versions
pub use crate::error::SysError;

#[cfg(not(feature = "simulator"))]
mod native;
#[cfg(not(feature = "simulator"))]
pub use native::*;

#[cfg(feature = "simulator")]
mod simulator;
#[cfg(feature = "simulator")]
pub use simulator::*;