@morpho-dev/router 0.0.21 → 0.0.22

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.
@@ -13,7 +13,7 @@ import * as hono from 'hono';
13
13
  import { Context } from 'hono';
14
14
  import * as hono_utils_http_status from 'hono/utils/http-status';
15
15
 
16
- declare const chainNames: readonly ["ethereum", "base"];
16
+ declare const chainNames: readonly ["ethereum", "base", "ethereum-virtual-testnet"];
17
17
  type ChainName = (typeof chainNames)[number];
18
18
  declare const ChainId: {
19
19
  ETHEREUM: bigint;
@@ -13,7 +13,7 @@ import * as hono from 'hono';
13
13
  import { Context } from 'hono';
14
14
  import * as hono_utils_http_status from 'hono/utils/http-status';
15
15
 
16
- declare const chainNames: readonly ["ethereum", "base"];
16
+ declare const chainNames: readonly ["ethereum", "base", "ethereum-virtual-testnet"];
17
17
  type ChainName = (typeof chainNames)[number];
18
18
  declare const ChainId: {
19
19
  ETHEREUM: bigint;
@@ -25,7 +25,7 @@ __export(Chain_exports, {
25
25
  chains: () => chains,
26
26
  getChain: () => getChain
27
27
  });
28
- var chainNames = ["ethereum", "base"];
28
+ var chainNames = ["ethereum", "base", "ethereum-virtual-testnet"];
29
29
  var ChainId = {
30
30
  ETHEREUM: BigInt(chains$1.mainnet.id),
31
31
  BASE: BigInt(chains$1.base.id)
@@ -67,6 +67,20 @@ var chains = {
67
67
  ].map((address) => address.toLowerCase())
68
68
  ),
69
69
  morpho: "0x0000000000000000000000000000000000000000"
70
+ },
71
+ "ethereum-virtual-testnet": {
72
+ ...chains$1.mainnet,
73
+ id: 1111n,
74
+ name: "ethereum-virtual-testnet",
75
+ whitelistedAssets: new Set(
76
+ [
77
+ "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
78
+ // USDC
79
+ "0x6B175474E89094C44Da98b954EedeAC495271d0F"
80
+ // DAI
81
+ ].map((address) => address.toLowerCase())
82
+ ),
83
+ morpho: "0x0000000000000000000000000000000000000000"
70
84
  }
71
85
  };
72
86