polymesh-api-ink 1.7.0

Polymesh Ink! API core
Documentation
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod extension;

pub mod basic_types;
pub use basic_types::*;

pub mod hashing;
pub use hashing::*;

pub use sp_weights;

pub mod error;
pub use error::*;

pub mod block;
pub use block::*;