🏟️Tipos de Ambiente de Cadeia
/// The fundamental types of the default configuration.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "std", derive(TypeInfo))]
pub enum DefaultEnvironment {}
impl Environment for DefaultEnvironment {
const MAX_EVENT_TOPICS: usize = 4;
type AccountId = ink_primitives::AccountId;
type Balance = u128;
type Hash = ink_primitives::Hash;
type Timestamp = u64;
type BlockNumber = u32;
type ChainExtension = NoChainExtension;
}Last updated