@ichidao/ichi-vaults-sdk 0.0.110 → 0.0.112
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/README.md +3 -0
- package/dist/abis/types/ClPool.d.ts +986 -0
- package/dist/abis/types/ClPool.js +3 -0
- package/dist/abis/types/ClPool.js.map +1 -0
- package/dist/abis/types/factories/ClPool__factory.d.ts +1020 -0
- package/dist/abis/types/factories/ClPool__factory.js +1317 -0
- package/dist/abis/types/factories/ClPool__factory.js.map +1 -0
- package/dist/abis/types/factories/index.d.ts +1 -0
- package/dist/abis/types/factories/index.js +3 -1
- package/dist/abis/types/factories/index.js.map +1 -1
- package/dist/abis/types/index.d.ts +2 -0
- package/dist/abis/types/index.js +3 -1
- package/dist/abis/types/index.js.map +1 -1
- package/dist/src/abis/types/ClPool.d.ts +986 -0
- package/dist/src/abis/types/factories/ClPool__factory.d.ts +1020 -0
- package/dist/src/abis/types/factories/index.d.ts +1 -0
- package/dist/src/abis/types/index.d.ts +2 -0
- package/dist/src/contracts/index.d.ts +2 -1
- package/dist/src/contracts/index.js +11 -1
- package/dist/src/contracts/index.js.map +1 -1
- package/dist/src/functions/priceFromPool.d.ts +2 -1
- package/dist/src/functions/priceFromPool.js +63 -33
- package/dist/src/functions/priceFromPool.js.map +1 -1
- package/dist/src/functions/vaultMetrics.js +31 -55
- package/dist/src/functions/vaultMetrics.js.map +1 -1
- package/dist/src/graphql/constants.js +81 -68
- package/dist/src/graphql/constants.js.map +1 -1
- package/dist/src/index.cjs.js +1 -1
- package/dist/src/index.esm.js +1 -1
- package/dist/src/src/contracts/index.d.ts +2 -1
- package/dist/src/src/functions/priceFromPool.d.ts +2 -1
- package/dist/src/src/types/index.d.ts +3 -0
- package/dist/src/src/utils/config/addresses.d.ts +4 -0
- package/dist/src/types/index.d.ts +3 -0
- package/dist/src/types/index.js +3 -1
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/utils/config/addresses.d.ts +4 -0
- package/dist/src/utils/config/addresses.js +152 -126
- package/dist/src/utils/config/addresses.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1062,6 +1062,7 @@ enum SupportedChainId {
|
|
1062
1062
|
haven1_devnet = 8110,
|
1063
1063
|
hedera = 295,
|
1064
1064
|
hedera_testnet = 296,
|
1065
|
+
hyperevm = 999,
|
1065
1066
|
ink = 57073,
|
1066
1067
|
ink_sepolia = 763373,
|
1067
1068
|
kava = 2222,
|
@@ -1101,6 +1102,7 @@ enum SupportedDex {
|
|
1101
1102
|
Henjin = 'Henjin',
|
1102
1103
|
Honeypot = 'Honeypot',
|
1103
1104
|
hSwap = 'hSwap',
|
1105
|
+
HyperSwap = 'HyperSwap',
|
1104
1106
|
Kim = 'Kim',
|
1105
1107
|
Kinetix = 'Kinetix',
|
1106
1108
|
Kodiak = 'Kodiak',
|
@@ -1128,6 +1130,7 @@ enum SupportedDex {
|
|
1128
1130
|
Ubeswap = 'Ubeswap',
|
1129
1131
|
UniswapV3 = 'Uniswap V3',
|
1130
1132
|
Velocore = 'Velocore',
|
1133
|
+
Velodrome = 'Velodrome',
|
1131
1134
|
Voltage = 'Voltage',
|
1132
1135
|
Wasabee = 'Wasabee',
|
1133
1136
|
XSwap = 'XSwap',
|