@dripfi/drip-sdk 1.1.8 → 1.1.9
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/DEPLOY.md +1 -1
- package/README.md +10 -3
- package/dist/types/Vault.d.ts +3 -0
- package/package.json +1 -1
package/DEPLOY.md
CHANGED
package/README.md
CHANGED
@@ -192,20 +192,27 @@ type Vault = {
|
|
192
192
|
apy: number
|
193
193
|
tvr: number
|
194
194
|
protocols: string[]
|
195
|
-
projectName: string
|
196
195
|
depositToken: VaultDepositToken
|
197
196
|
type: VaultType
|
198
197
|
rewards: VaultReward[]
|
199
|
-
rewardType:
|
198
|
+
rewardType: RewardType
|
200
199
|
liveUntil: string
|
200
|
+
liveFrom: string
|
201
201
|
liveUntilFormatted: string
|
202
202
|
hasPoolEnded: boolean
|
203
203
|
boosters: NFTBoost[]
|
204
|
-
stretchGoals: StretchGoal[]
|
205
204
|
strategies: Strategy[]
|
206
205
|
newWithdraw: boolean
|
207
206
|
tgePrice?: number
|
208
207
|
maxAmountOfTokens?: number
|
208
|
+
project: DeployedProject
|
209
|
+
projectId: number
|
210
|
+
coingeckoId?: string
|
211
|
+
depositTokenId: string
|
212
|
+
expectedTge?: string
|
213
|
+
tokenPrice: number,
|
214
|
+
change24h: number,
|
215
|
+
volume24h: number,
|
209
216
|
};
|
210
217
|
|
211
218
|
type VaultType = 'launch' | 'earn' | 'airdrop'
|
package/dist/types/Vault.d.ts
CHANGED