revive-runtime-api 1.2.0

Implements the low level runtime API bindings with pallet contracts
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crate vendors the [PolkaVM][0] C API and provides a LLVM module for interacting
//! with the `pallet-revive` runtime API.
//! At present, the contracts pallet requires blobs to export `call` and `deploy`,
//! and offers a bunch of [runtime API methods][1]. The provided implements
//! those exports and imports.
//!
//! [0]: [<https://crates.io/crates/polkavm>]
//! [1]: [<https://docs.rs/pallet-contracts/latest/pallet_contracts/api_doc/index.html>]

pub mod calling_convention;
pub mod immutable_data;
pub mod polkavm_exports;
pub mod polkavm_imports;