multiversx_sc_wasm_adapter/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
#![allow(unknown_lints)]

// Allows us to use alloc::vec::Vec;
// TODO: get rid of the legacy API and also of this.
extern crate alloc;

pub use multiversx_sc;

pub mod api;
pub mod error_hook;
pub mod panic;
pub mod wasm_alloc;
mod wasm_macros;