@swapkit/core 1.0.0-rc.95 → 1.0.0-rc.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.es.js +443 -462
- package/dist/index.es.js.map +1 -1
- package/package.json +12 -12
- package/src/client/types.ts +10 -3
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { BSCToolbox } from '@swapkit/toolbox-evm';
|
|
|
7
7
|
import type { BTCToolbox } from '@swapkit/toolbox-utxo';
|
|
8
8
|
import { Chain } from '@swapkit/types';
|
|
9
9
|
import type { ChainflipToolbox } from '@swapkit/toolbox-substrate';
|
|
10
|
+
import type { DASHToolbox } from '@swapkit/toolbox-utxo';
|
|
10
11
|
import type { DepositParam } from '@swapkit/toolbox-cosmos';
|
|
11
12
|
import type { DOGEToolbox } from '@swapkit/toolbox-utxo';
|
|
12
13
|
import type { ETHToolbox } from '@swapkit/toolbox-evm';
|
|
@@ -208,15 +209,16 @@ export declare type WalletMethods = {
|
|
|
208
209
|
[Chain.Binance]: CosmosBasedWallet<typeof BinanceToolbox> | null;
|
|
209
210
|
[Chain.BitcoinCash]: UTXOWallet<typeof BCHToolbox> | null;
|
|
210
211
|
[Chain.Bitcoin]: UTXOWallet<typeof BTCToolbox> | null;
|
|
212
|
+
[Chain.Chainflip]: SubstrateBasedWallet<typeof ChainflipToolbox> | null;
|
|
211
213
|
[Chain.Cosmos]: CosmosBasedWallet<typeof GaiaToolbox> | null;
|
|
214
|
+
[Chain.Dash]: UTXOWallet<typeof DASHToolbox> | null;
|
|
212
215
|
[Chain.Dogecoin]: UTXOWallet<typeof DOGEToolbox> | null;
|
|
213
216
|
[Chain.Ethereum]: EVMWallet<typeof ETHToolbox> | null;
|
|
214
217
|
[Chain.Kujira]: CosmosBasedWallet<typeof KujiraToolbox> | null;
|
|
215
|
-
[Chain.Polkadot]: SubstrateBasedWallet<typeof PolkadotToolbox> | null;
|
|
216
|
-
[Chain.Chainflip]: SubstrateBasedWallet<typeof ChainflipToolbox> | null;
|
|
217
218
|
[Chain.Litecoin]: UTXOWallet<typeof LTCToolbox> | null;
|
|
218
219
|
[Chain.Maya]: ThorchainWallet | null;
|
|
219
220
|
[Chain.Optimism]: EVMWallet<typeof OPToolbox> | null;
|
|
221
|
+
[Chain.Polkadot]: SubstrateBasedWallet<typeof PolkadotToolbox> | null;
|
|
220
222
|
[Chain.Polygon]: EVMWallet<typeof MATICToolbox> | null;
|
|
221
223
|
[Chain.THORChain]: ThorchainWallet | null;
|
|
222
224
|
};
|