@morpho-dev/router 0.0.5 → 0.0.7

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/README.md +0 -6
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -22,12 +22,6 @@ const router = Router.connect();
22
22
  const router = Router.connect({
23
23
  url: "https://router.morpho.dev"
24
24
  });
25
-
26
- // With API key
27
- const router = Router.connect({
28
- url: "https://router.morpho.dev",
29
- apiKey: "your-api-key"
30
- });
31
25
  ```
32
26
 
33
27
  ### Get Offers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morpho-dev/router",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Router package for Morpho protocol",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -39,7 +39,7 @@
39
39
  "@repo/typescript-config": "1.0.0"
40
40
  },
41
41
  "dependencies": {
42
- "@morpho-dev/mempool": "0.0.10"
42
+ "@morpho-dev/mempool": "0.0.11"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "viem": "^2.31.2"
@@ -52,7 +52,6 @@
52
52
  "lint:ci": "biome ci src/",
53
53
  "test": "vitest",
54
54
  "test:watch": "vitest watch",
55
- "test:coverage": "vitest run --coverage",
56
55
  "test:ui": "vitest --ui",
57
56
  "typecheck": "tsc --project tsconfig.json --noEmit --incremental"
58
57
  }