identity_iota_core/
iota_interaction_adapter.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2020-2025 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

// The following platform compile switch provides all the
// ...Adapter types from iota_interaction_rust or iota_interaction_ts
// like IotaClientAdapter, AssetMoveCallsAdapter, IdentityMoveCallsAdapter,
// TransactionBuilderAdapter, MigrationMoveCallsAdapter, ... and so on

cfg_if::cfg_if! {
    if #[cfg(target_arch = "wasm32")] {
        pub(crate) use iota_interaction_ts::*;
    } else {
        pub(crate) use crate::iota_interaction_rust::*;
    }
}