@biuauth/wallet-connect-v2-adapter
Version:
wallet connect v2 adapter for web3auth
14 lines (11 loc) • 484 B
text/typescript
import type { WalletConnectModal } from "@walletconnect/modal";
import type { EngineTypes, SignClientTypes } from "@walletconnect/types";
import { BaseAdapterSettings } from "@web3auth/base";
export interface IAdapterSettings {
walletConnectInitOptions?: SignClientTypes.Options;
qrcodeModal?: WalletConnectModal;
}
export interface WalletConnectV2AdapterOptions extends BaseAdapterSettings {
adapterSettings?: IAdapterSettings;
loginSettings?: EngineTypes.ConnectParams;
}