@swapkit/types 1.0.0-rc.5 → 1.0.0-rc.6

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.d.ts CHANGED
@@ -199,7 +199,11 @@ export declare type ConnectConfig = {
199
199
  */
200
200
  ethplorerApiKey?: string;
201
201
  /**
202
- * @required for BTC, LTC, DOGE & BCH
202
+ * @required for BTC, BCH, LTC, DOGE
203
+ */
204
+ blockchairApiKey?: string;
205
+ /**
206
+ * @deprecated - use blockchairApiKey instead
203
207
  */
204
208
  utxoApiKey?: string;
205
209
  /**
package/package.json CHANGED
@@ -33,7 +33,7 @@
33
33
  "repository": "https://github.com/thorswap/SwapKit.git",
34
34
  "type": "module",
35
35
  "types": "./dist/index.d.ts",
36
- "version": "1.0.0-rc.5",
36
+ "version": "1.0.0-rc.6",
37
37
  "scripts": {
38
38
  "build": "vite build",
39
39
  "clean": "rm -rf dist vite.config.ts.* .turbo node_modules",
@@ -30,7 +30,11 @@ export type ConnectConfig = {
30
30
  */
31
31
  ethplorerApiKey?: string;
32
32
  /**
33
- * @required for BTC, LTC, DOGE & BCH
33
+ * @required for BTC, BCH, LTC, DOGE
34
+ */
35
+ blockchairApiKey?: string;
36
+ /**
37
+ * @deprecated - use blockchairApiKey instead
34
38
  */
35
39
  utxoApiKey?: string;
36
40
  /**