cosmwasm-core 3.0.5

Components of cosmwasm-std that can be used in no_std environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! CosmWasm is a smart contract platform for the Cosmos ecosystem.
//! This crate contains components of cosmwasm-std that can be used in no_std environments.
//!
//! For more information, see: <https://docs.cosmwasm.com>

#![no_std]

mod crypto;

#[doc(hidden)]
pub use self::crypto::{
    BLS12_381_G1_GENERATOR, BLS12_381_G1_POINT_LEN, BLS12_381_G2_GENERATOR, BLS12_381_G2_POINT_LEN,
};