@subwallet-connect/taho
Version:
Taho SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern ja
31 lines (21 loc) • 716 B
Markdown
See [Taho Developer Docs](https://docs.tally.cash/tally/developers/integrating-dapps)
`npm i @subwallet-connect/taho`
```typescript
import Onboard from '@subwallet-connect/core'
import tahoWalletModule from '@subwallet-connect/taho'
// initialize the module with options
const tahoWalletSdk = tahoWalletModule()
const onboard = Onboard({
// ... other Onboard options
wallets: [
tahoWalletModule()
//... other wallets
]
})
const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)
```