THORSwap SwapKit
Ask or search…
K
Links
Comment on page

Keystore

Installation

pnpm
yarn
npm
pnpm add @swapkit/wallet-keystore
yarn add @swapkit/wallet-keystore
npm add @swapkit/wallet-keystore

Integrations

Chain
Supported
Toolbox
BTC
UTXO
LTC
UTXO
BCH
UTXO
DOGE
UTXO
ETH
EVM
AVAX
EVM
BSC
EVM
BNB
COSMOS
COSMOS (ATOM)
COSMOS
THORCHAIN
COSMOS
MAYA
COSMOS

✅ - Ready 🤔 - Planned ⏳ - In Progress ❌ - Not Integrated / Can't be integrated

Example:

import { SwapKitCore, Chain } from '@swapkit/core';
import { keystoreWallet } from '@swapkit/wallet-keystore';
const client = new SwapKitCore();
client.extend({ wallets: [keystoreWallet] });
await client.connectKeystore([Chain.ETH, Chain.THORChain, Chain.Maya], "secret 12 or more phrase words")

Usage

Wallets are used via @swapkit/core . Check out it's API Reference
Last modified 1mo ago