Return an interaction class for obtaining metadata from the given keystore.
keystore
Supported keystores: BitBox, Trezor, Ledger
import {GetMetadata, TREZOR} from "@caravan/wallets";// Works similarly for Ledger.const interaction = GetMetadata({keystore: TREZOR});const metadata = await interaction.run(); Copy
import {GetMetadata, TREZOR} from "@caravan/wallets";// Works similarly for Ledger.const interaction = GetMetadata({keystore: TREZOR});const metadata = await interaction.run();
Return an interaction class for obtaining metadata from the given
keystore.Supported keystores: BitBox, Trezor, Ledger