@qidao/sdk 5.2.0 → 5.2.5
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/ProtocolInfo.d.ts +7 -0
- package/dist/src/constants.d.ts +6 -1
- package/dist/src/entities/currency.d.ts +1 -0
- package/dist/src/entities/token.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/vaultInfo.d.ts +3221 -11
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type PLATFORM = 'Beefy' | 'Yearn' | 'Curve' | 'AaveV2' | 'AaveV3' | 'Balancer' | 'Lido' | 'Arrakis' | 'QuickSwap' | 'Gains' | 'GotchiVault' | 'Stader' | 'StakeDAO' | 'Tetu' | 'Spookyswap' | 'Convex';
|
|
2
|
+
export declare const ProtocolInfo: {
|
|
3
|
+
[k in PLATFORM]: {
|
|
4
|
+
description: string;
|
|
5
|
+
logo: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
package/dist/src/constants.d.ts
CHANGED
|
@@ -43,7 +43,8 @@ export declare enum ChainId {
|
|
|
43
43
|
BOBA = 288,
|
|
44
44
|
CUBE = 1818,
|
|
45
45
|
CANTO = 7700,
|
|
46
|
-
DOGECHAIN = 2000
|
|
46
|
+
DOGECHAIN = 2000,
|
|
47
|
+
ZKEVM = 1101
|
|
47
48
|
}
|
|
48
49
|
export declare enum TradeType {
|
|
49
50
|
EXACT_INPUT = 0,
|
|
@@ -307,6 +308,8 @@ export declare const ARBI_ARB_ADDRESS = "0x912CE59144191C1204E64559FE8253a0e49E6
|
|
|
307
308
|
export declare const ETH_CBETH_ADDRESS = "0xBe9895146f7AF43049ca1c1AE358B0541Ea49704";
|
|
308
309
|
export declare const ETH_STETH_ADDRESS = "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84";
|
|
309
310
|
export declare const ETH_LDO_ADDRESS = "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32";
|
|
311
|
+
export declare const ZKEVM_WETH_ADDRESS = "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9";
|
|
312
|
+
export declare const ZKEVM_WMATIC_ADDRESS = "0xa2036f0538221a77A3937F1379699f44945018d0";
|
|
310
313
|
export declare const CAMWMATIC_VAULT_ADDRESS = "0x88d84a85A87ED12B8f098e8953B322fF789fCD1a";
|
|
311
314
|
export declare const CAMWETH_VAULT_ADDRESS = "0x11A33631a5B5349AF3F165d2B7901A4d67e561ad";
|
|
312
315
|
export declare const CAMAAVE_VAULT_ADDRESS = "0x578375c3af7d61586c2C3A7BA87d2eEd640EFA40";
|
|
@@ -349,3 +352,5 @@ export declare const MATIC_WETH_I_VAULT_ADDRESS = "0xB5B31E6A13aE856bc30b3C76B16
|
|
|
349
352
|
export declare const ETH_CBETH_VAULT_ADDRESS = "0x4ce4C542D96Ce1872fEA4fa3fbB2E7aE31862Bad";
|
|
350
353
|
export declare const ETH_STETH_VAULT_ADDRESS = "0x5773e8953cF60F495eB3c2Db45DD753b5c4b7473";
|
|
351
354
|
export declare const ETH_LDO_VAULT_ADDRESS = "0x954ac12c339c60eafbb32213b15af3f7c7a0dec2";
|
|
355
|
+
export declare const ZKEVM_WETH_VAULT_ADDRESS = "0xdb1103a8F51823f5a2439c52C06921CDF929F6A7";
|
|
356
|
+
export declare const ZKEVM_WMATIC_VAULT_ADDRESS = "0x8AB01c5Ee3422099156ab151eecB83c095626599";
|
package/dist/src/index.d.ts
CHANGED