Skip to main content

qf_polkavm_sdk/
lib.rs

1//! Native Rust smart contracts SDK for QF Network. Smart contract functionality in QF Network is
2//! implemented using `pallet-revive` from Polkadot SDK / Substrate and this SDK should work for
3//! creating smart contracts for other blockchains that integrate `pallet-revive` as well.
4
5#![no_std]
6#![no_main]
7
8#[cfg(feature = "global-allocator")]
9pub mod bump_allocator;
10
11#[cfg(feature = "panic-handler")]
12pub mod panic_handler;
13
14pub mod prelude;