import { isBitcoinWalletAccount, sendBitcoin } from '@dynamic-labs-sdk/bitcoin';
if (!isBitcoinWalletAccount(walletAccount)) {
throw new Error('This wallet is not a Bitcoin wallet');
}
const result = await sendBitcoin({
walletAccount,
transaction: {
amount: 100000000n,
recipientAddress: 'SOME-ADDRESS',
},
});