kona-std-fpvm 0.2.0

Platform specific APIs for interacting with Fault Proof VM kernels.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Contains common traits for the `client` role.
//!
//! When developing a new `client` program, these traits are implemented on an
//! architecture-specific type that provides the concrete implementation of the
//! kernel interfaces. The `client` program then uses these traits to perform operations
//! without needing to know the underlying implementation, which allows the same `client`
//! program to be compiled and ran on different target architectures.

mod basic;
pub use basic::BasicKernelInterface;