@ichidao/ichi-vaults-sdk 0.0.111 → 0.0.113
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 +57 -44
- 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 +144 -118
- package/dist/src/utils/config/addresses.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1070,6 +1070,7 @@ enum SupportedChainId {
|
|
1070
1070
|
mainnet = 1,
|
1071
1071
|
mantle = 5000,
|
1072
1072
|
mode = 34443,
|
1073
|
+
monad_testnet = 10143,
|
1073
1074
|
polygon = 137,
|
1074
1075
|
polygon_zkevm = 1101,
|
1075
1076
|
real = 111188,
|
@@ -1093,6 +1094,7 @@ enum SupportedChainId {
|
|
1093
1094
|
enum SupportedDex {
|
1094
1095
|
Agni = 'Agni',
|
1095
1096
|
Ascent = 'Ascent',
|
1097
|
+
Atlantis = 'Anlantis',
|
1096
1098
|
Blueprint = 'Blueprint',
|
1097
1099
|
Cleo = 'Cleo',
|
1098
1100
|
Crust = 'Crust',
|
@@ -1130,6 +1132,7 @@ enum SupportedDex {
|
|
1130
1132
|
Ubeswap = 'Ubeswap',
|
1131
1133
|
UniswapV3 = 'Uniswap V3',
|
1132
1134
|
Velocore = 'Velocore',
|
1135
|
+
Velodrome = 'Velodrome',
|
1133
1136
|
Voltage = 'Voltage',
|
1134
1137
|
Wasabee = 'Wasabee',
|
1135
1138
|
XSwap = 'XSwap',
|