@swapkit/sdk 4.6.4 → 4.6.5

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.
@@ -2,9 +2,9 @@
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts"],
4
4
  "sourcesContent": [
5
- "import { type SKConfigState, SwapKit } from \"@swapkit/core\";\nimport type { createPlugin } from \"@swapkit/plugins\";\nimport { ChainflipPlugin } from \"@swapkit/plugins/chainflip\";\nimport { EVMPlugin } from \"@swapkit/plugins/evm\";\nimport { GardenPlugin } from \"@swapkit/plugins/garden\";\nimport { HarborPlugin } from \"@swapkit/plugins/harbor\";\nimport { NearPlugin } from \"@swapkit/plugins/near\";\nimport { RadixPlugin } from \"@swapkit/plugins/radix\";\nimport { SolanaPlugin } from \"@swapkit/plugins/solana\";\nimport { SwapKitPlugin } from \"@swapkit/plugins/swapkit\";\nimport { MayachainPlugin, ThorchainPlugin } from \"@swapkit/plugins/thorchain\";\nimport type { createWallet } from \"@swapkit/wallets\";\n\nimport { bitgetWallet } from \"@swapkit/wallets/bitget\";\nimport { coinbaseWallet } from \"@swapkit/wallets/coinbase\";\nimport { ctrlWallet } from \"@swapkit/wallets/ctrl\";\nimport { evmWallet } from \"@swapkit/wallets/evm-extensions\";\nimport { keepkeyWallet } from \"@swapkit/wallets/keepkey\";\nimport { keepkeyBexWallet } from \"@swapkit/wallets/keepkey-bex\";\nimport { keplrWallet } from \"@swapkit/wallets/keplr\";\nimport { keystoreWallet } from \"@swapkit/wallets/keystore\";\nimport { ledgerWallet } from \"@swapkit/wallets/ledger\";\nimport { walletSelectorWallet } from \"@swapkit/wallets/near-wallet-selector\";\nimport { okxWallet } from \"@swapkit/wallets/okx\";\nimport { onekeyWallet } from \"@swapkit/wallets/onekey\";\nimport { passkeysWallet } from \"@swapkit/wallets/passkeys\";\nimport { phantomWallet } from \"@swapkit/wallets/phantom\";\nimport { radixWallet } from \"@swapkit/wallets/radix\";\nimport { talismanWallet } from \"@swapkit/wallets/talisman\";\nimport { trezorWallet } from \"@swapkit/wallets/trezor\";\nimport { tronlinkWallet } from \"@swapkit/wallets/tronlink\";\nimport { walletconnectWallet } from \"@swapkit/wallets/walletconnect\";\nimport { xamanWallet } from \"@swapkit/wallets/xaman\";\n\nexport * from \"@swapkit/core\";\nexport * from \"@swapkit/helpers\";\nexport * from \"@swapkit/helpers/api\";\nexport * from \"@swapkit/plugins\";\nexport * from \"@swapkit/plugins/chainflip\";\nexport * from \"@swapkit/plugins/evm\";\nexport * from \"@swapkit/plugins/harbor\";\nexport * from \"@swapkit/plugins/near\";\nexport * from \"@swapkit/plugins/radix\";\nexport * from \"@swapkit/plugins/solana\";\nexport * from \"@swapkit/plugins/swapkit\";\nexport * from \"@swapkit/plugins/thorchain\";\nexport * from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes/cosmos\";\nexport * from \"@swapkit/toolboxes/evm\";\nexport * from \"@swapkit/toolboxes/radix\";\nexport * from \"@swapkit/toolboxes/solana\";\nexport * from \"@swapkit/toolboxes/utxo\";\nexport * from \"@swapkit/wallets\";\n\nconst exodusWallet = { ...passkeysWallet, connectExodusWallet: passkeysWallet.connectPasskeys };\n\nexport {\n bitgetWallet,\n coinbaseWallet,\n ctrlWallet,\n evmWallet,\n exodusWallet,\n keepkeyBexWallet,\n keepkeyWallet,\n keplrWallet,\n keystoreWallet,\n ledgerWallet,\n okxWallet,\n onekeyWallet,\n passkeysWallet,\n phantomWallet,\n radixWallet,\n talismanWallet,\n trezorWallet,\n tronlinkWallet,\n walletSelectorWallet,\n walletconnectWallet,\n xamanWallet,\n};\n\nexport const defaultPlugins = {\n ...ChainflipPlugin,\n ...EVMPlugin,\n ...MayachainPlugin,\n ...ThorchainPlugin,\n ...RadixPlugin,\n ...SolanaPlugin,\n ...NearPlugin,\n ...GardenPlugin,\n ...SwapKitPlugin,\n ...HarborPlugin,\n};\n\nexport const defaultWallets = {\n ...bitgetWallet,\n ...coinbaseWallet,\n ...ctrlWallet,\n ...evmWallet,\n ...exodusWallet,\n ...keepkeyBexWallet,\n ...keepkeyWallet,\n ...keplrWallet,\n ...keystoreWallet,\n ...ledgerWallet,\n ...okxWallet,\n ...onekeyWallet,\n ...phantomWallet,\n ...passkeysWallet,\n ...radixWallet,\n ...talismanWallet,\n ...trezorWallet,\n ...tronlinkWallet,\n ...walletSelectorWallet,\n ...walletconnectWallet,\n ...xamanWallet,\n} as ReturnType<typeof createWallet>;\n\nexport function createSwapKit<\n Plugins extends ReturnType<typeof createPlugin>,\n Wallets extends ReturnType<typeof createWallet>,\n>({ config, plugins, wallets }: { config?: SKConfigState; plugins?: Plugins; wallets?: Wallets } = {}) {\n const mergedPlugins = { ...defaultPlugins, ...plugins };\n const mergedWallets = { ...defaultWallets, ...wallets };\n\n return SwapKit({ config: config, plugins: mergedPlugins, wallets: mergedWallets });\n}\n"
5
+ "import { type SKConfigState, SwapKit } from \"@swapkit/core\";\nimport type { createPlugin } from \"@swapkit/plugins\";\nimport { ChainflipPlugin } from \"@swapkit/plugins/chainflip\";\nimport { EVMPlugin } from \"@swapkit/plugins/evm\";\nimport { GardenPlugin } from \"@swapkit/plugins/garden\";\nimport { HarborPlugin } from \"@swapkit/plugins/harbor\";\nimport { NearPlugin } from \"@swapkit/plugins/near\";\nimport { RadixPlugin } from \"@swapkit/plugins/radix\";\nimport { SolanaPlugin } from \"@swapkit/plugins/solana\";\nimport { SwapKitPlugin } from \"@swapkit/plugins/swapkit\";\nimport { MayachainPlugin, ThorchainPlugin } from \"@swapkit/plugins/thorchain\";\nimport type { createWallet } from \"@swapkit/wallets\";\n\nimport { bitgetWallet } from \"@swapkit/wallets/bitget\";\nimport { coinbaseWallet } from \"@swapkit/wallets/coinbase\";\nimport { ctrlWallet } from \"@swapkit/wallets/ctrl\";\nimport { evmWallet } from \"@swapkit/wallets/evm-extensions\";\nimport { keepkeyWallet } from \"@swapkit/wallets/keepkey\";\nimport { keepkeyBexWallet } from \"@swapkit/wallets/keepkey-bex\";\nimport { keplrWallet } from \"@swapkit/wallets/keplr\";\nimport { keystoreWallet } from \"@swapkit/wallets/keystore\";\nimport { ledgerWallet } from \"@swapkit/wallets/ledger\";\nimport { walletSelectorWallet } from \"@swapkit/wallets/near-wallet-selector\";\nimport { okxWallet } from \"@swapkit/wallets/okx\";\nimport { onekeyWallet } from \"@swapkit/wallets/onekey\";\nimport { passkeysWallet } from \"@swapkit/wallets/passkeys\";\nimport { phantomWallet } from \"@swapkit/wallets/phantom\";\nimport { radixWallet } from \"@swapkit/wallets/radix\";\nimport { talismanWallet } from \"@swapkit/wallets/talisman\";\nimport { trezorWallet } from \"@swapkit/wallets/trezor\";\nimport { tronlinkWallet } from \"@swapkit/wallets/tronlink\";\nimport { walletconnectWallet } from \"@swapkit/wallets/walletconnect\";\nimport { xamanWallet } from \"@swapkit/wallets/xaman\";\n\nexport * from \"@swapkit/core\";\nexport * from \"@swapkit/helpers\";\nexport * from \"@swapkit/helpers/api\";\nexport * from \"@swapkit/plugins\";\nexport * from \"@swapkit/plugins/chainflip\";\nexport * from \"@swapkit/plugins/evm\";\nexport * from \"@swapkit/plugins/harbor\";\nexport * from \"@swapkit/plugins/near\";\nexport * from \"@swapkit/plugins/radix\";\nexport * from \"@swapkit/plugins/solana\";\nexport * from \"@swapkit/plugins/swapkit\";\nexport * from \"@swapkit/plugins/thorchain\";\nexport type { HDWalletAccountParams } from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes/cosmos\";\nexport * from \"@swapkit/toolboxes/evm\";\nexport * from \"@swapkit/toolboxes/radix\";\nexport * from \"@swapkit/toolboxes/solana\";\nexport * from \"@swapkit/toolboxes/utxo\";\nexport * from \"@swapkit/wallets\";\n\nconst exodusWallet = { ...passkeysWallet, connectExodusWallet: passkeysWallet.connectPasskeys };\n\nexport {\n bitgetWallet,\n coinbaseWallet,\n ctrlWallet,\n evmWallet,\n exodusWallet,\n keepkeyBexWallet,\n keepkeyWallet,\n keplrWallet,\n keystoreWallet,\n ledgerWallet,\n okxWallet,\n onekeyWallet,\n passkeysWallet,\n phantomWallet,\n radixWallet,\n talismanWallet,\n trezorWallet,\n tronlinkWallet,\n walletconnectWallet,\n walletSelectorWallet,\n xamanWallet,\n};\n\nexport const defaultPlugins = {\n ...ChainflipPlugin,\n ...EVMPlugin,\n ...MayachainPlugin,\n ...ThorchainPlugin,\n ...RadixPlugin,\n ...SolanaPlugin,\n ...NearPlugin,\n ...GardenPlugin,\n ...SwapKitPlugin,\n ...HarborPlugin,\n};\n\nexport const defaultWallets = {\n ...bitgetWallet,\n ...coinbaseWallet,\n ...ctrlWallet,\n ...evmWallet,\n ...exodusWallet,\n ...keepkeyBexWallet,\n ...keepkeyWallet,\n ...keplrWallet,\n ...keystoreWallet,\n ...ledgerWallet,\n ...okxWallet,\n ...onekeyWallet,\n ...phantomWallet,\n ...passkeysWallet,\n ...radixWallet,\n ...talismanWallet,\n ...trezorWallet,\n ...tronlinkWallet,\n ...walletSelectorWallet,\n ...walletconnectWallet,\n ...xamanWallet,\n} as ReturnType<typeof createWallet>;\n\nexport function createSwapKit<\n Plugins extends ReturnType<typeof createPlugin>,\n Wallets extends ReturnType<typeof createWallet>,\n>({ config, plugins, wallets }: { config?: SKConfigState; plugins?: Plugins; wallets?: Wallets } = {}) {\n const mergedPlugins = { ...defaultPlugins, ...plugins };\n const mergedWallets = { ...defaultWallets, ...wallets };\n\n return SwapKit({ config: config, plugins: mergedPlugins, wallets: mergedWallets });\n}\n"
6
6
  ],
7
- "mappings": "6xBAA4C,IAA5C,2BAEA,wCACA,kCACA,qCACA,qCACA,mCACA,oCACA,qCACA,sCACA,wCAGA,qCACA,uCACA,mCACA,6CACA,sCACA,0CACA,oCACA,uCACA,qCACA,mDACA,kCACA,qCACA,uCACA,sCACA,oCACA,uCACA,qCACA,uCACA,4CACA,oCAEA,6CACA,gDACA,oDACA,gDACA,0DACA,oDACA,uDACA,qDACA,sDACA,uDACA,wDACA,0DACA,kDACA,yDACA,sDACA,wDACA,yDACA,uDACA,gDAEA,IAAM,EAAe,IAAK,iBAAgB,oBAAqB,iBAAe,eAAgB,EA0BvF,IAAM,EAAiB,IACzB,qBACA,eACA,qBACA,qBACA,iBACA,kBACA,gBACA,kBACA,mBACA,cACL,EAEa,EAAiB,IACzB,kBACA,oBACA,gBACA,eACA,KACA,sBACA,mBACA,iBACA,oBACA,kBACA,eACA,kBACA,mBACA,oBACA,iBACA,oBACA,kBACA,oBACA,0BACA,yBACA,aACL,EAEO,SAAS,CAGf,EAAG,SAAQ,UAAS,WAA8E,CAAC,EAAG,CACrG,IAAM,EAAgB,IAAK,KAAmB,CAAQ,EAChD,EAAgB,IAAK,KAAmB,CAAQ,EAEtD,OAAO,UAAQ,CAAE,OAAQ,EAAQ,QAAS,EAAe,QAAS,CAAc,CAAC",
7
+ "mappings": "6xBAA4C,IAA5C,2BAEA,wCACA,kCACA,qCACA,qCACA,mCACA,oCACA,qCACA,sCACA,wCAGA,qCACA,uCACA,mCACA,6CACA,sCACA,0CACA,oCACA,uCACA,qCACA,mDACA,kCACA,qCACA,uCACA,sCACA,oCACA,uCACA,qCACA,uCACA,4CACA,oCAEA,6CACA,gDACA,oDACA,gDACA,0DACA,oDACA,uDACA,qDACA,sDACA,uDACA,wDACA,0DAEA,kDACA,yDACA,sDACA,wDACA,yDACA,uDACA,gDAEA,IAAM,EAAe,IAAK,iBAAgB,oBAAqB,iBAAe,eAAgB,EA0BvF,IAAM,EAAiB,IACzB,qBACA,eACA,qBACA,qBACA,iBACA,kBACA,gBACA,kBACA,mBACA,cACL,EAEa,EAAiB,IACzB,kBACA,oBACA,gBACA,eACA,KACA,sBACA,mBACA,iBACA,oBACA,kBACA,eACA,kBACA,mBACA,oBACA,iBACA,oBACA,kBACA,oBACA,0BACA,yBACA,aACL,EAEO,SAAS,CAGf,EAAG,SAAQ,UAAS,WAA8E,CAAC,EAAG,CACrG,IAAM,EAAgB,IAAK,KAAmB,CAAQ,EAChD,EAAgB,IAAK,KAAmB,CAAQ,EAEtD,OAAO,UAAQ,CAAE,OAAQ,EAAQ,QAAS,EAAe,QAAS,CAAc,CAAC",
8
8
  "debugId": "3501EDEB219D816964756E2164756E21",
9
9
  "names": []
10
10
  }
package/dist/index.js.map CHANGED
@@ -2,9 +2,9 @@
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts"],
4
4
  "sourcesContent": [
5
- "import { type SKConfigState, SwapKit } from \"@swapkit/core\";\nimport type { createPlugin } from \"@swapkit/plugins\";\nimport { ChainflipPlugin } from \"@swapkit/plugins/chainflip\";\nimport { EVMPlugin } from \"@swapkit/plugins/evm\";\nimport { GardenPlugin } from \"@swapkit/plugins/garden\";\nimport { HarborPlugin } from \"@swapkit/plugins/harbor\";\nimport { NearPlugin } from \"@swapkit/plugins/near\";\nimport { RadixPlugin } from \"@swapkit/plugins/radix\";\nimport { SolanaPlugin } from \"@swapkit/plugins/solana\";\nimport { SwapKitPlugin } from \"@swapkit/plugins/swapkit\";\nimport { MayachainPlugin, ThorchainPlugin } from \"@swapkit/plugins/thorchain\";\nimport type { createWallet } from \"@swapkit/wallets\";\n\nimport { bitgetWallet } from \"@swapkit/wallets/bitget\";\nimport { coinbaseWallet } from \"@swapkit/wallets/coinbase\";\nimport { ctrlWallet } from \"@swapkit/wallets/ctrl\";\nimport { evmWallet } from \"@swapkit/wallets/evm-extensions\";\nimport { keepkeyWallet } from \"@swapkit/wallets/keepkey\";\nimport { keepkeyBexWallet } from \"@swapkit/wallets/keepkey-bex\";\nimport { keplrWallet } from \"@swapkit/wallets/keplr\";\nimport { keystoreWallet } from \"@swapkit/wallets/keystore\";\nimport { ledgerWallet } from \"@swapkit/wallets/ledger\";\nimport { walletSelectorWallet } from \"@swapkit/wallets/near-wallet-selector\";\nimport { okxWallet } from \"@swapkit/wallets/okx\";\nimport { onekeyWallet } from \"@swapkit/wallets/onekey\";\nimport { passkeysWallet } from \"@swapkit/wallets/passkeys\";\nimport { phantomWallet } from \"@swapkit/wallets/phantom\";\nimport { radixWallet } from \"@swapkit/wallets/radix\";\nimport { talismanWallet } from \"@swapkit/wallets/talisman\";\nimport { trezorWallet } from \"@swapkit/wallets/trezor\";\nimport { tronlinkWallet } from \"@swapkit/wallets/tronlink\";\nimport { walletconnectWallet } from \"@swapkit/wallets/walletconnect\";\nimport { xamanWallet } from \"@swapkit/wallets/xaman\";\n\nexport * from \"@swapkit/core\";\nexport * from \"@swapkit/helpers\";\nexport * from \"@swapkit/helpers/api\";\nexport * from \"@swapkit/plugins\";\nexport * from \"@swapkit/plugins/chainflip\";\nexport * from \"@swapkit/plugins/evm\";\nexport * from \"@swapkit/plugins/harbor\";\nexport * from \"@swapkit/plugins/near\";\nexport * from \"@swapkit/plugins/radix\";\nexport * from \"@swapkit/plugins/solana\";\nexport * from \"@swapkit/plugins/swapkit\";\nexport * from \"@swapkit/plugins/thorchain\";\nexport * from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes/cosmos\";\nexport * from \"@swapkit/toolboxes/evm\";\nexport * from \"@swapkit/toolboxes/radix\";\nexport * from \"@swapkit/toolboxes/solana\";\nexport * from \"@swapkit/toolboxes/utxo\";\nexport * from \"@swapkit/wallets\";\n\nconst exodusWallet = { ...passkeysWallet, connectExodusWallet: passkeysWallet.connectPasskeys };\n\nexport {\n bitgetWallet,\n coinbaseWallet,\n ctrlWallet,\n evmWallet,\n exodusWallet,\n keepkeyBexWallet,\n keepkeyWallet,\n keplrWallet,\n keystoreWallet,\n ledgerWallet,\n okxWallet,\n onekeyWallet,\n passkeysWallet,\n phantomWallet,\n radixWallet,\n talismanWallet,\n trezorWallet,\n tronlinkWallet,\n walletSelectorWallet,\n walletconnectWallet,\n xamanWallet,\n};\n\nexport const defaultPlugins = {\n ...ChainflipPlugin,\n ...EVMPlugin,\n ...MayachainPlugin,\n ...ThorchainPlugin,\n ...RadixPlugin,\n ...SolanaPlugin,\n ...NearPlugin,\n ...GardenPlugin,\n ...SwapKitPlugin,\n ...HarborPlugin,\n};\n\nexport const defaultWallets = {\n ...bitgetWallet,\n ...coinbaseWallet,\n ...ctrlWallet,\n ...evmWallet,\n ...exodusWallet,\n ...keepkeyBexWallet,\n ...keepkeyWallet,\n ...keplrWallet,\n ...keystoreWallet,\n ...ledgerWallet,\n ...okxWallet,\n ...onekeyWallet,\n ...phantomWallet,\n ...passkeysWallet,\n ...radixWallet,\n ...talismanWallet,\n ...trezorWallet,\n ...tronlinkWallet,\n ...walletSelectorWallet,\n ...walletconnectWallet,\n ...xamanWallet,\n} as ReturnType<typeof createWallet>;\n\nexport function createSwapKit<\n Plugins extends ReturnType<typeof createPlugin>,\n Wallets extends ReturnType<typeof createWallet>,\n>({ config, plugins, wallets }: { config?: SKConfigState; plugins?: Plugins; wallets?: Wallets } = {}) {\n const mergedPlugins = { ...defaultPlugins, ...plugins };\n const mergedWallets = { ...defaultWallets, ...wallets };\n\n return SwapKit({ config: config, plugins: mergedPlugins, wallets: mergedWallets });\n}\n"
5
+ "import { type SKConfigState, SwapKit } from \"@swapkit/core\";\nimport type { createPlugin } from \"@swapkit/plugins\";\nimport { ChainflipPlugin } from \"@swapkit/plugins/chainflip\";\nimport { EVMPlugin } from \"@swapkit/plugins/evm\";\nimport { GardenPlugin } from \"@swapkit/plugins/garden\";\nimport { HarborPlugin } from \"@swapkit/plugins/harbor\";\nimport { NearPlugin } from \"@swapkit/plugins/near\";\nimport { RadixPlugin } from \"@swapkit/plugins/radix\";\nimport { SolanaPlugin } from \"@swapkit/plugins/solana\";\nimport { SwapKitPlugin } from \"@swapkit/plugins/swapkit\";\nimport { MayachainPlugin, ThorchainPlugin } from \"@swapkit/plugins/thorchain\";\nimport type { createWallet } from \"@swapkit/wallets\";\n\nimport { bitgetWallet } from \"@swapkit/wallets/bitget\";\nimport { coinbaseWallet } from \"@swapkit/wallets/coinbase\";\nimport { ctrlWallet } from \"@swapkit/wallets/ctrl\";\nimport { evmWallet } from \"@swapkit/wallets/evm-extensions\";\nimport { keepkeyWallet } from \"@swapkit/wallets/keepkey\";\nimport { keepkeyBexWallet } from \"@swapkit/wallets/keepkey-bex\";\nimport { keplrWallet } from \"@swapkit/wallets/keplr\";\nimport { keystoreWallet } from \"@swapkit/wallets/keystore\";\nimport { ledgerWallet } from \"@swapkit/wallets/ledger\";\nimport { walletSelectorWallet } from \"@swapkit/wallets/near-wallet-selector\";\nimport { okxWallet } from \"@swapkit/wallets/okx\";\nimport { onekeyWallet } from \"@swapkit/wallets/onekey\";\nimport { passkeysWallet } from \"@swapkit/wallets/passkeys\";\nimport { phantomWallet } from \"@swapkit/wallets/phantom\";\nimport { radixWallet } from \"@swapkit/wallets/radix\";\nimport { talismanWallet } from \"@swapkit/wallets/talisman\";\nimport { trezorWallet } from \"@swapkit/wallets/trezor\";\nimport { tronlinkWallet } from \"@swapkit/wallets/tronlink\";\nimport { walletconnectWallet } from \"@swapkit/wallets/walletconnect\";\nimport { xamanWallet } from \"@swapkit/wallets/xaman\";\n\nexport * from \"@swapkit/core\";\nexport * from \"@swapkit/helpers\";\nexport * from \"@swapkit/helpers/api\";\nexport * from \"@swapkit/plugins\";\nexport * from \"@swapkit/plugins/chainflip\";\nexport * from \"@swapkit/plugins/evm\";\nexport * from \"@swapkit/plugins/harbor\";\nexport * from \"@swapkit/plugins/near\";\nexport * from \"@swapkit/plugins/radix\";\nexport * from \"@swapkit/plugins/solana\";\nexport * from \"@swapkit/plugins/swapkit\";\nexport * from \"@swapkit/plugins/thorchain\";\nexport type { HDWalletAccountParams } from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes\";\nexport * from \"@swapkit/toolboxes/cosmos\";\nexport * from \"@swapkit/toolboxes/evm\";\nexport * from \"@swapkit/toolboxes/radix\";\nexport * from \"@swapkit/toolboxes/solana\";\nexport * from \"@swapkit/toolboxes/utxo\";\nexport * from \"@swapkit/wallets\";\n\nconst exodusWallet = { ...passkeysWallet, connectExodusWallet: passkeysWallet.connectPasskeys };\n\nexport {\n bitgetWallet,\n coinbaseWallet,\n ctrlWallet,\n evmWallet,\n exodusWallet,\n keepkeyBexWallet,\n keepkeyWallet,\n keplrWallet,\n keystoreWallet,\n ledgerWallet,\n okxWallet,\n onekeyWallet,\n passkeysWallet,\n phantomWallet,\n radixWallet,\n talismanWallet,\n trezorWallet,\n tronlinkWallet,\n walletconnectWallet,\n walletSelectorWallet,\n xamanWallet,\n};\n\nexport const defaultPlugins = {\n ...ChainflipPlugin,\n ...EVMPlugin,\n ...MayachainPlugin,\n ...ThorchainPlugin,\n ...RadixPlugin,\n ...SolanaPlugin,\n ...NearPlugin,\n ...GardenPlugin,\n ...SwapKitPlugin,\n ...HarborPlugin,\n};\n\nexport const defaultWallets = {\n ...bitgetWallet,\n ...coinbaseWallet,\n ...ctrlWallet,\n ...evmWallet,\n ...exodusWallet,\n ...keepkeyBexWallet,\n ...keepkeyWallet,\n ...keplrWallet,\n ...keystoreWallet,\n ...ledgerWallet,\n ...okxWallet,\n ...onekeyWallet,\n ...phantomWallet,\n ...passkeysWallet,\n ...radixWallet,\n ...talismanWallet,\n ...trezorWallet,\n ...tronlinkWallet,\n ...walletSelectorWallet,\n ...walletconnectWallet,\n ...xamanWallet,\n} as ReturnType<typeof createWallet>;\n\nexport function createSwapKit<\n Plugins extends ReturnType<typeof createPlugin>,\n Wallets extends ReturnType<typeof createWallet>,\n>({ config, plugins, wallets }: { config?: SKConfigState; plugins?: Plugins; wallets?: Wallets } = {}) {\n const mergedPlugins = { ...defaultPlugins, ...plugins };\n const mergedWallets = { ...defaultWallets, ...wallets };\n\n return SwapKit({ config: config, plugins: mergedPlugins, wallets: mergedWallets });\n}\n"
6
6
  ],
7
- "mappings": "AAAA,kBAA6B,sBAE7B,0BAAS,mCACT,oBAAS,6BACT,uBAAS,gCACT,uBAAS,gCACT,qBAAS,8BACT,sBAAS,+BACT,uBAAS,gCACT,wBAAS,iCACT,0BAAS,qBAAiB,mCAG1B,uBAAS,gCACT,yBAAS,kCACT,qBAAS,8BACT,oBAAS,wCACT,wBAAS,iCACT,2BAAS,qCACT,sBAAS,+BACT,yBAAS,kCACT,uBAAS,gCACT,+BAAS,8CACT,oBAAS,6BACT,uBAAS,gCACT,yBAAS,kCACT,wBAAS,iCACT,sBAAS,+BACT,yBAAS,kCACT,uBAAS,gCACT,yBAAS,kCACT,8BAAS,uCACT,sBAAS,+BAET,2BACA,8BACA,kCACA,8BACA,wCACA,kCACA,qCACA,mCACA,oCACA,qCACA,sCACA,wCACA,gCACA,uCACA,oCACA,sCACA,uCACA,qCACA,8BAEA,IAAM,EAAe,IAAK,EAAgB,oBAAqB,EAAe,eAAgB,EA0BvF,IAAM,EAAiB,IACzB,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,CACL,EAEa,EAAiB,IACzB,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,CACL,EAEO,SAAS,EAGf,EAAG,SAAQ,UAAS,WAA8E,CAAC,EAAG,CACrG,IAAM,EAAgB,IAAK,KAAmB,CAAQ,EAChD,EAAgB,IAAK,KAAmB,CAAQ,EAEtD,OAAO,EAAQ,CAAE,OAAQ,EAAQ,QAAS,EAAe,QAAS,CAAc,CAAC",
7
+ "mappings": "AAAA,kBAA6B,sBAE7B,0BAAS,mCACT,oBAAS,6BACT,uBAAS,gCACT,uBAAS,gCACT,qBAAS,8BACT,sBAAS,+BACT,uBAAS,gCACT,wBAAS,iCACT,0BAAS,qBAAiB,mCAG1B,uBAAS,gCACT,yBAAS,kCACT,qBAAS,8BACT,oBAAS,wCACT,wBAAS,iCACT,2BAAS,qCACT,sBAAS,+BACT,yBAAS,kCACT,uBAAS,gCACT,+BAAS,8CACT,oBAAS,6BACT,uBAAS,gCACT,yBAAS,kCACT,wBAAS,iCACT,sBAAS,+BACT,yBAAS,kCACT,uBAAS,gCACT,yBAAS,kCACT,8BAAS,uCACT,sBAAS,+BAET,2BACA,8BACA,kCACA,8BACA,wCACA,kCACA,qCACA,mCACA,oCACA,qCACA,sCACA,wCAEA,gCACA,uCACA,oCACA,sCACA,uCACA,qCACA,8BAEA,IAAM,EAAe,IAAK,EAAgB,oBAAqB,EAAe,eAAgB,EA0BvF,IAAM,EAAiB,IACzB,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,CACL,EAEa,EAAiB,IACzB,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,CACL,EAEO,SAAS,EAGf,EAAG,SAAQ,UAAS,WAA8E,CAAC,EAAG,CACrG,IAAM,EAAgB,IAAK,KAAmB,CAAQ,EAChD,EAAgB,IAAK,KAAmB,CAAQ,EAEtD,OAAO,EAAQ,CAAE,OAAQ,EAAQ,QAAS,EAAe,QAAS,CAAc,CAAC",
8
8
  "debugId": "1BD728DD6FF78C8464756E2164756E21",
9
9
  "names": []
10
10
  }
package/package.json CHANGED
@@ -2,13 +2,13 @@
2
2
  "author": "swapkit-dev",
3
3
  "dependencies": {
4
4
  "@stricahq/typhonjs": "~3.0.1",
5
- "@swapkit/core": "^4.4.12",
5
+ "@swapkit/core": "^4.4.13",
6
6
  "@swapkit/helpers": "^4.13.0",
7
7
  "@swapkit/plugins": "^4.6.26",
8
8
  "@swapkit/server": "^4.2.37",
9
- "@swapkit/toolboxes": "^4.14.5",
9
+ "@swapkit/toolboxes": "^4.15.0",
10
10
  "@swapkit/wallet-core": "^4.2.0",
11
- "@swapkit/wallet-keystore": "^4.3.18",
11
+ "@swapkit/wallet-keystore": "^4.3.19",
12
12
  "@swapkit/wallets": "workspace:*",
13
13
  "cosmjs-types": "0.10.1"
14
14
  },
@@ -67,5 +67,5 @@
67
67
  "type-check:go": "tsgo"
68
68
  },
69
69
  "type": "module",
70
- "version": "4.6.4"
70
+ "version": "4.6.5"
71
71
  }