@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.
@@ -24,7 +24,7 @@ __export(Chain_exports, {
24
24
  chains: () => chains,
25
25
  getChain: () => getChain
26
26
  });
27
- var chainNames = ["ethereum", "base"];
27
+ var chainNames = ["ethereum", "base", "ethereum-virtual-testnet"];
28
28
  var ChainId = {
29
29
  ETHEREUM: BigInt(mainnet.id),
30
30
  BASE: BigInt(base.id)
@@ -66,6 +66,20 @@ var chains = {
66
66
  ].map((address) => address.toLowerCase())
67
67
  ),
68
68
  morpho: "0x0000000000000000000000000000000000000000"
69
+ },
70
+ "ethereum-virtual-testnet": {
71
+ ...mainnet,
72
+ id: 1111n,
73
+ name: "ethereum-virtual-testnet",
74
+ whitelistedAssets: new Set(
75
+ [
76
+ "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
77
+ // USDC
78
+ "0x6B175474E89094C44Da98b954EedeAC495271d0F"
79
+ // DAI
80
+ ].map((address) => address.toLowerCase())
81
+ ),
82
+ morpho: "0x0000000000000000000000000000000000000000"
69
83
  }
70
84
  };
71
85