@swapkit/core 1.0.0-rc.40 → 1.0.0-rc.42

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/src/client/index.ts +1 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "swapkit-oss-team",
3
3
  "dependencies": {
4
4
  "@swapkit/types": "1.0.0-rc.15",
5
- "@swapkit/helpers": "1.0.0-rc.33"
5
+ "@swapkit/helpers": "1.0.0-rc.34"
6
6
  },
7
7
  "description": "SwapKit Lib core",
8
8
  "devDependencies": {
@@ -14,17 +14,17 @@
14
14
  "vitest": "0.34.4",
15
15
  "@internal/config": "0.0.0-rc.1",
16
16
  "@swapkit/api": "1.0.0-rc.15",
17
- "@swapkit/tokens": "1.0.0-rc.15",
18
- "@swapkit/toolbox-cosmos": "1.0.0-rc.35",
19
- "@swapkit/toolbox-evm": "1.0.0-rc.35",
20
- "@swapkit/toolbox-utxo": "1.0.0-rc.35"
17
+ "@swapkit/tokens": "1.0.0-rc.16",
18
+ "@swapkit/toolbox-cosmos": "1.0.0-rc.36",
19
+ "@swapkit/toolbox-evm": "1.0.0-rc.36",
20
+ "@swapkit/toolbox-utxo": "1.0.0-rc.36"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@swapkit/api": "1.0.0-rc.15",
24
- "@swapkit/tokens": "1.0.0-rc.15",
25
- "@swapkit/toolbox-cosmos": "1.0.0-rc.35",
26
- "@swapkit/toolbox-evm": "1.0.0-rc.35",
27
- "@swapkit/toolbox-utxo": "1.0.0-rc.35"
24
+ "@swapkit/tokens": "1.0.0-rc.16",
25
+ "@swapkit/toolbox-cosmos": "1.0.0-rc.36",
26
+ "@swapkit/toolbox-evm": "1.0.0-rc.36",
27
+ "@swapkit/toolbox-utxo": "1.0.0-rc.36"
28
28
  },
29
29
  "eslintConfig": {
30
30
  "extends": "../../../internal/eslint-config"
@@ -52,7 +52,7 @@
52
52
  "repository": "https://github.com/thorswap/SwapKit.git",
53
53
  "type": "module",
54
54
  "types": "./dist/index.d.ts",
55
- "version": "1.0.0-rc.40",
55
+ "version": "1.0.0-rc.42",
56
56
  "scripts": {
57
57
  "build": "NODE_OPTIONS=--max_old_space_size=16384 vite build",
58
58
  "clean": "rm -rf dist vite.config.ts.* .turbo node_modules",
@@ -519,7 +519,7 @@ export class SwapKitCore<T = ''> {
519
519
  extend = ({ wallets, config, apis = {}, rpcUrls = {} }: ExtendParams<T>) => {
520
520
  try {
521
521
  wallets.forEach((wallet) => {
522
- // @ts-expect-error ANCHOR - Not Worth
522
+ // @ts-expect-error - this is fine as we are extending the class
523
523
  this[wallet.connectMethodName] = wallet.connect({
524
524
  addChain: this.#addConnectedChain,
525
525
  config: config || {},