VaultLayer supports connecting various wallets, including Bitcoin and EVM-compatible wallets. Hereβs how you can open the connect modal and handle wallet connections:
import { useEffect } from 'react';
const btcProvider = useBitcoinProvider();
// Will show a confirmation Modal:
const res = await btcProvider?.sendBitcoin(
fromAddress: string;
toAddress: string;
satoshis: number;
options: {
fee: "slow" | "avg" | "fast";
bitcoinRpc: '';
forceHideConfirmModal?: boolean;
}
);
// Or directly sign a PSBT bitcoin transaction:
const txHex = await btcProvider??.signPsbt(psbt, { forceHideConfirmModal: false });
const txID = await btcProvider?.pushTx(txHex);
Ethereum Transactions
import { useEffect } from 'react';
const ethProvider = useEthereumProvider();
// Will show a confirmation Modal:
const res = await ethProvider?.vaultEthClient?.signMessage({
account: smartVault.ethAddress as any,
message: 'Hello VaultLayer!\n\nChain-Abstraction for 1 click Bitcoin DeFi'
});
// Or directly sign an Ethereum transaction:
const res = await vaultEthWallet?.signMessage('Hello VaultLayer!\n\nChain-Abstraction for 1 click Bitcoin DeFi');