1
2
3
4
5
6
7
8
9
// In order to have wasm-bindgen export types we need to import at least one type
// from each other crate.
// We can't use pub use cml_foo_wasm::*; as that will generate a warning due to
// multiple of them including a utils module so we just import an arbitrary type.
// We don't need to worry about cml_core_wasm and cml_crypto_wasm since they
// will be exported by the other crates here.
pub use cml_chain_wasm::AssetNameList;
pub use cml_cip25_wasm::CIP25Metadata;
pub use cml_cip36_wasm::CIP36DeregistrationCbor;