cardano_multiplatform_lib/
lib.rs

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