@agoric/portfolio-api 0.1.1-dev-ec5d164.0.ec5d164 → 0.1.1-dev-7659397.0.7659397
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/package.json +4 -4
- package/src/instruments.d.ts +8 -0
- package/src/instruments.js +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/portfolio-api",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-7659397.0.7659397",
|
|
4
4
|
"description": "API for Portfolio management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"generate:ymax-machine": "npx tsx scripts/gen-ymax-machine.mts"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/internal": "0.3.3-dev-
|
|
31
|
-
"@agoric/orchestration": "0.1.1-dev-
|
|
30
|
+
"@agoric/internal": "0.3.3-dev-7659397.0.7659397",
|
|
31
|
+
"@agoric/orchestration": "0.1.1-dev-7659397.0.7659397",
|
|
32
32
|
"@endo/common": "^1.2.13",
|
|
33
33
|
"@endo/errors": "^1.2.13",
|
|
34
34
|
"@endo/patterns": "^1.7.0"
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": "^20.9 || ^22.11"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "765939731ebc0ba3bef0de521b61575967d5cf4e"
|
|
73
73
|
}
|
package/src/instruments.d.ts
CHANGED
|
@@ -40,6 +40,14 @@ export namespace InstrumentId {
|
|
|
40
40
|
let ERC4626_morphoHyperithmUsdcMidcurve_Ethereum: "ERC4626_morphoHyperithmUsdcMidcurve_Ethereum";
|
|
41
41
|
let ERC4626_morphoHyperithmUsdcDegen_Ethereum: "ERC4626_morphoHyperithmUsdcDegen_Ethereum";
|
|
42
42
|
let ERC4626_morphoGauntletUsdcCore_Ethereum: "ERC4626_morphoGauntletUsdcCore_Ethereum";
|
|
43
|
+
let ERC4626_morphoSteakhousePrimeUsdc_Base: "ERC4626_morphoSteakhousePrimeUsdc_Base";
|
|
44
|
+
let ERC4626_morphoSteakhouseUsdc_Base: "ERC4626_morphoSteakhouseUsdc_Base";
|
|
45
|
+
let ERC4626_morphoGauntletUsdcPrime_Base: "ERC4626_morphoGauntletUsdcPrime_Base";
|
|
46
|
+
let ERC4626_morphoSeamlessUsdcVault_Base: "ERC4626_morphoSeamlessUsdcVault_Base";
|
|
47
|
+
let ERC4626_morphoSteakhouseHighYieldUsdc_Arbitrum: "ERC4626_morphoSteakhouseHighYieldUsdc_Arbitrum";
|
|
48
|
+
let ERC4626_morphoGauntletUsdcCore_Arbitrum: "ERC4626_morphoGauntletUsdcCore_Arbitrum";
|
|
49
|
+
let ERC4626_morphoHyperithmUsdc_Arbitrum: "ERC4626_morphoHyperithmUsdc_Arbitrum";
|
|
50
|
+
let ERC4626_morphoGauntletUsdcPrime_Optimism: "ERC4626_morphoGauntletUsdcPrime_Optimism";
|
|
43
51
|
let USDN: "USDN";
|
|
44
52
|
let USDNVault: "USDNVault";
|
|
45
53
|
}
|
package/src/instruments.js
CHANGED
|
@@ -51,6 +51,18 @@ export const InstrumentId = /** @type {const} */ ({
|
|
|
51
51
|
'ERC4626_morphoHyperithmUsdcDegen_Ethereum',
|
|
52
52
|
ERC4626_morphoGauntletUsdcCore_Ethereum:
|
|
53
53
|
'ERC4626_morphoGauntletUsdcCore_Ethereum',
|
|
54
|
+
ERC4626_morphoSteakhousePrimeUsdc_Base:
|
|
55
|
+
'ERC4626_morphoSteakhousePrimeUsdc_Base',
|
|
56
|
+
ERC4626_morphoSteakhouseUsdc_Base: 'ERC4626_morphoSteakhouseUsdc_Base',
|
|
57
|
+
ERC4626_morphoGauntletUsdcPrime_Base: 'ERC4626_morphoGauntletUsdcPrime_Base',
|
|
58
|
+
ERC4626_morphoSeamlessUsdcVault_Base: 'ERC4626_morphoSeamlessUsdcVault_Base',
|
|
59
|
+
ERC4626_morphoSteakhouseHighYieldUsdc_Arbitrum:
|
|
60
|
+
'ERC4626_morphoSteakhouseHighYieldUsdc_Arbitrum',
|
|
61
|
+
ERC4626_morphoGauntletUsdcCore_Arbitrum:
|
|
62
|
+
'ERC4626_morphoGauntletUsdcCore_Arbitrum',
|
|
63
|
+
ERC4626_morphoHyperithmUsdc_Arbitrum: 'ERC4626_morphoHyperithmUsdc_Arbitrum',
|
|
64
|
+
ERC4626_morphoGauntletUsdcPrime_Optimism:
|
|
65
|
+
'ERC4626_morphoGauntletUsdcPrime_Optimism',
|
|
54
66
|
USDN: 'USDN',
|
|
55
67
|
USDNVault: 'USDNVault',
|
|
56
68
|
});
|