cosmwasm_core/
lib.rs

1//! CosmWasm is a smart contract platform for the Cosmos ecosystem.
2//! This crate contains components of cosmwasm-std that can be used in no_std environments.
3//!
4//! For more information, see: <https://docs.cosmwasm.com>
5
6#![no_std]
7
8mod crypto;
9
10#[doc(hidden)]
11pub use self::crypto::{
12    BLS12_381_G1_GENERATOR, BLS12_381_G1_POINT_LEN, BLS12_381_G2_GENERATOR, BLS12_381_G2_POINT_LEN,
13};