@dripfi/drip-sdk 1.4.3-yelay-lite-12 → 1.4.3-yelay-lite-13

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.
@@ -1,4 +1,5 @@
1
1
  import VaultData from './VaultData';
2
+ import VaultType from './VaultType';
2
3
  type MyPerqBalance = {
3
4
  pendingDeposits: number;
4
5
  currentlyDeposited: number;
@@ -10,5 +11,6 @@ type MyPerqBalance = {
10
11
  type MyPerqData = VaultData & MyPerqBalance & {
11
12
  ethPrice: number;
12
13
  btcPrice: number;
14
+ distributionType: VaultType;
13
15
  };
14
16
  export default MyPerqData;
@@ -3,7 +3,6 @@ import DepositToken from './DepositToken';
3
3
  import Strategy from './Strategy';
4
4
  import StretchGoal from './StretchGoal';
5
5
  import VaultReward from './VaultReward';
6
- import VaultType from './VaultType';
7
6
  type VaultData = {
8
7
  depositToken: DepositToken;
9
8
  vaultAddress: string;
@@ -26,7 +25,6 @@ type VaultData = {
26
25
  coingeckoId?: string;
27
26
  expectedTge?: string;
28
27
  chainId: ChainId;
29
- distributionType: VaultType;
30
28
  strategies: Strategy[];
31
29
  stretchGoals: StretchGoal[];
32
30
  rewards: VaultReward[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dripfi/drip-sdk",
3
- "version": "1.4.3-yelay-lite-12",
3
+ "version": "1.4.3-yelay-lite-13",
4
4
  "description": "Drip SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",