@morpho-org/blue-sdk 4.0.0-next.0 → 4.0.0-next.1
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/lib/addresses.d.ts +2 -0
- package/lib/addresses.js +2 -0
- package/package.json +4 -4
package/lib/addresses.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ declare const _addressesRegistry: {
|
|
|
153
153
|
readonly chainlinkOracleFactory: "0x1ff7895Eb842794c5d07C4c547b6730e61295215";
|
|
154
154
|
readonly preLiquidationFactory: "0xeDadDe37D76c72b98725614d0b41C20Fe612d304";
|
|
155
155
|
readonly wNative: "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270";
|
|
156
|
+
readonly usdc: "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359";
|
|
156
157
|
};
|
|
157
158
|
readonly 42161: {
|
|
158
159
|
readonly morpho: "0x6c247b1F6182318877311737BaC0844bAa518F5e";
|
|
@@ -466,6 +467,7 @@ export declare let addressesRegistry: {
|
|
|
466
467
|
readonly chainlinkOracleFactory: "0x1ff7895Eb842794c5d07C4c547b6730e61295215";
|
|
467
468
|
readonly preLiquidationFactory: "0xeDadDe37D76c72b98725614d0b41C20Fe612d304";
|
|
468
469
|
readonly wNative: "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270";
|
|
470
|
+
readonly usdc: "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359";
|
|
469
471
|
};
|
|
470
472
|
readonly 42161: {
|
|
471
473
|
readonly morpho: "0x6c247b1F6182318877311737BaC0844bAa518F5e";
|
package/lib/addresses.js
CHANGED
|
@@ -127,6 +127,8 @@ const _addressesRegistry = {
|
|
|
127
127
|
chainlinkOracleFactory: "0x1ff7895Eb842794c5d07C4c547b6730e61295215",
|
|
128
128
|
preLiquidationFactory: "0xeDadDe37D76c72b98725614d0b41C20Fe612d304",
|
|
129
129
|
wNative: "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
|
|
130
|
+
// Must implement USDC permit version 2 (otherwise breaks permit signatures).
|
|
131
|
+
usdc: "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
|
|
130
132
|
},
|
|
131
133
|
[chain_js_1.ChainId.ArbitrumMainnet]: {
|
|
132
134
|
morpho: "0x6c247b1F6182318877311737BaC0844bAa518F5e",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morpho-org/blue-sdk",
|
|
3
3
|
"description": "Framework-agnostic package that defines Morpho-related entity classes (such as `Market`, `Token`, `Vault`).",
|
|
4
|
-
"version": "4.0.0-next.
|
|
4
|
+
"version": "4.0.0-next.1",
|
|
5
5
|
"author": "Morpho Association <contact@morpho.org>",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Rubilmax <rmilon@gmail.com>"
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"lodash.mergewith": "^4.6.2"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@morpho-org/morpho-ts": "^2.
|
|
28
|
+
"@morpho-org/morpho-ts": "^2.3.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"typescript": "^5.7.2",
|
|
32
32
|
"viem": "^2.23.0",
|
|
33
33
|
"vitest": "^3.0.5",
|
|
34
|
-
"@morpho-org/
|
|
35
|
-
"@morpho-org/
|
|
34
|
+
"@morpho-org/morpho-ts": "^2.3.0",
|
|
35
|
+
"@morpho-org/test": "^2.1.3"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"prepublish": "$npm_execpath build",
|