multiversx_chain_core/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5pub mod builtin_func_names;
6pub mod token_identifier_util;
7pub mod types;
8
9#[cfg(feature = "std")]
10pub mod std;
11
12/// Re-exported for convenience.
13pub use multiversx_sc_codec as codec;
14
15/// The equivalent ESDT token identifier for transferring EGLD, the native MultiversX token.
16pub const EGLD_000000_TOKEN_IDENTIFIER: &str = "EGLD-000000";