2 unstable releases
0.2.0 | May 29, 2023 |
---|---|
0.1.0 | May 29, 2023 |
#1015 in WebAssembly
Used in 2 crates
(via kythera-lib)
39KB
99 lines
kythera-actors
kythera-actors
is a crate that contains all necessary actors for Kythera to run and be tested.
🗒️ Note
Not directly because of the project structure but because of Rust itself,
build.rs
will only run if a source file changes.
Actors
The only actor that is currently used for utilities by Kythera is the Cheatcodes actor.
This actor will always be deployed at ID 98
Test Actors
Those actors will only be built and made available if kythera-actors
is used along its testing
feature. This should only
happen when contributing to Kythera development.
Acknowledgements
The code to build and use Wasm bytecodes is heavily inspired and copied from the implementation over the ref-fvm
done by @fridrik01.