@swapkit/wallet-keepkey

Installation

<pnpm|bun> add @swapkit/wallet-keepkey

Integration

Implementation with @swapkit/core

import { SwapKit } from '@swapkit/core'
import { keepkeyWallet } from '@swapkit/wallet-keepkey'

const swapKitClient = SwapKit({
  wallets: { ...keepkeyWallet },
});

await swapKitClient.connectKeepkey([Chain.Ethereum, Chain.Avalanche])

const avaxWallet = await swapKitClient.getWalletWithBalance(Chain.Avalanche)
const ethWallet = await swapKitClient.getWalletWithBalance(Chain.Ethereum)

Wallet Support

Last updated