🔭Lendo Valores do Armazenamento
Funções do Contrato
impl MyContract {
// Public and Private functions can go here
}Funções Públicas e Privadas
impl MyContract {
/// Public function
#[ink(message)]
pub fn my_public_function(&self) {
/* --snip-- */
}
/// Private function
fn my_private_function(&self) {
/* --snip-- */
}
/* --snip-- */
}Obtendo um Valor
Last updated