Skip to main content

stellar_multicall/
lib.rs

1#![no_std]
2
3#[cfg(test)]
4extern crate std;
5
6pub mod interface;
7
8pub mod types;
9
10#[cfg(test)]
11mod tests;
12
13cfg_if::cfg_if! {
14    if #[cfg(all(feature = "library", not(test)))] {
15        pub use interface::{MulticallInterface};
16    } else {
17        mod contract;
18
19        pub use contract::{Multicall, MulticallClient};
20    }
21}