@qidao/sdk 5.1.27 → 5.1.30
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/ZapMeta.d.ts +1 -0
- package/dist/src/constants.d.ts +5 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/vaultInfo.d.ts +1 -0
- package/package.json +2 -2
package/dist/src/ZapMeta.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export default interface ZapMeta {
|
|
|
12
12
|
vaultType: 'YEARN' | 'BEEFY';
|
|
13
13
|
underlying: Token;
|
|
14
14
|
underlyingPriceSourceAddress: string;
|
|
15
|
+
mooAssetAddress: string;
|
|
15
16
|
zapperAddress: string;
|
|
16
17
|
zapInFunction: (amount: BigNumber, vaultIndex: BigNumber, signer: Signer) => any;
|
|
17
18
|
zapOutFunction: (amount: BigNumber, vaultIndex: BigNumber, signer: Signer) => any;
|
package/dist/src/constants.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export declare const MULTICALL_NETWORKS: {
|
|
|
71
71
|
[chainId in ChainId]: string;
|
|
72
72
|
};
|
|
73
73
|
export declare const WFTM_ADDRESS = "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83";
|
|
74
|
+
export declare const STETH_ADDRESS = "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84";
|
|
74
75
|
export declare const CAMWMATIC_VAULT_ADDRESS = "0x88d84a85A87ED12B8f098e8953B322fF789fCD1a";
|
|
75
76
|
export declare const CAMWETH_VAULT_ADDRESS = "0x11A33631a5B5349AF3F165d2B7901A4d67e561ad";
|
|
76
77
|
export declare const CAMAAVE_VAULT_ADDRESS = "0x578375c3af7d61586c2C3A7BA87d2eEd640EFA40";
|
|
@@ -88,3 +89,7 @@ export declare const MOO_SCREAM_WFTM_VAULT_ADDRESS = "0x3609A304c6A41d87E895b9c1
|
|
|
88
89
|
export declare const MOO_SCREAM_LINK_VAULT_ADDRESS = "0x8e5e4D08485673770Ab372c05f95081BE0636Fa2";
|
|
89
90
|
export declare const MOO_BIFI_FTM_VAULT_ADDRESS = "0x75D4aB6843593C111Eeb02Ff07055009c836A1EF";
|
|
90
91
|
export declare const MOO_WAVAX_VAULT_ADDRESS = "0xfA19c1d104F4AEfb8d5564f02B3AdCa1b515da58";
|
|
92
|
+
export declare const YVETH_VAULT_ADDRESS = "0xEcbd32bD581e241739be1763DFE7a8fFcC844ae1";
|
|
93
|
+
export declare const YVLINK_VAULT_ADDRESS = "0x60d133c666919B54a3254E0d3F14332cB783B733";
|
|
94
|
+
export declare const WETH_ADDRESS = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2";
|
|
95
|
+
export declare const LINK_ADDRESS = "0x514910771AF9Ca656af840dff83E8264EcF986CA";
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/vaultInfo.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qidao/sdk",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "5.1.
|
|
4
|
+
"version": "5.1.30",
|
|
5
5
|
"description": "🛠 An SDK for building applications on top of QiDao Protocol.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"umd:main": "dist/index.umd.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "microbundle",
|
|
24
24
|
"start": "microbundle watch",
|
|
25
|
-
"
|
|
25
|
+
"prepack": "typechain --discriminate-types --target ethers-v5 --out-dir src/contracts \"src/abis/toGenerate/**/*.json\" && microbundle"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"big.js": "5.2.2",
|