multiversx-chain-core 0.23.0

MultiversX chain interfaces, constants, and base types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod builtin_func_names;
pub mod token_identifier_util;
pub mod types;

#[cfg(feature = "std")]
pub mod std;

/// Re-exported for convenience.
pub use multiversx_sc_codec as codec;

/// The equivalent ESDT token identifier for transferring EGLD, the native MultiversX token.
pub const EGLD_000000_TOKEN_IDENTIFIER: &str = "EGLD-000000";