@dripfi/drip-sdk 1.4.0 → 1.4.1

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/CHANGELOG.md CHANGED
@@ -51,7 +51,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
51
  - `PerqSdk` takes new param `PerqConfig` in constructor
52
52
  - Moved `DripConfig` methods to fetch contracts address as constants into `PRODUCTION` and `DEVELOPMENT`
53
53
 
54
-
55
54
  ### Added
56
55
 
57
56
  - `PerqConfig` type, used to initiallize `PerqSdk`
@@ -59,6 +58,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
58
 
60
59
  ### Removed
61
60
 
62
- - types `NULL_ADDRESS`, `Chain`
63
- - class `DripConfig`
61
+ - types `NULL_ADDRESS`, `Chain`
62
+ - class `DripConfig`
63
+
64
+ ## [1.4.1] - 2025-01-29
65
+
66
+ ### Added
64
67
 
68
+ - The properites `rewardTooltipName` was added to the `DeployedProject` type
package/README.md CHANGED
@@ -269,6 +269,7 @@ type DeployedProject = {
269
269
  yelayVersion: YelayVersion;
270
270
  bannerImage?: string;
271
271
  rewardImage?: string;
272
+ rewardTooltipName?: string;
272
273
  };
273
274
 
274
275
  type DeployedVault = {
@@ -38,6 +38,7 @@ type DeployedProject = {
38
38
  yelayVersion: YelayVersion;
39
39
  bannerImage?: string;
40
40
  rewardImage?: string;
41
+ rewardTooltipName?: string;
41
42
  };
42
43
  export default DeployedProject;
43
44
  export type ProjectBacker = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dripfi/drip-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Drip SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",