@pioneer-platform/keystore
v3.0.1
Published
THORSwap Lib keystore
Downloads
1
Readme
@pioneer-platform/keystore
Install:
pnpm add @pioneer-platform/keystore
To use the keystore you need to extend core with keystoreWallet
and install the corresponding package for the chain you want to use.
import { SwapKitCore } from '@pioneer-platform/swapkit-core';
import { keystoreWallet } from '@pioneer-platform/keystore';
const client = new SwapKitCore();
client.extend({
wallets: [keystoreWallet],
});
Supported chains:
| chain | status | package | | ---------------- | ------ | --------------------------------------------------------------------- | | BTC | ✅ | @pioneer-platform/toolbox-utxo | | LTC | ✅ | @pioneer-platform/toolbox-utxo | | BCH | ✅ | @pioneer-platform/toolbox-utxo | | DOGE | ✅ | @pioneer-platform/toolbox-utxo | | ETH | ✅ | @pioneer-platform/toolbox-evm | | AVAX | ✅ | @pioneer-platform/toolbox-evm | | BSC | ✅ | @pioneer-platform/toolbox-evm | | COSMOS (ATOM) | ✅ | @pioneer-platform/toolbox-cosmos | | BNB | ✅ | @pioneer-platform/toolbox-cosmos | | THORCHAIN (RUNE) | ✅ | @pioneer-platform/toolbox-cosmos |