@dripfi/drip-sdk 1.1.7 → 1.1.8

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 ADDED
@@ -0,0 +1,6 @@
1
+
2
+ To pulish a new sdk version:
3
+
4
+ 1 - make sure package.json "version" has the new version number
5
+ 1 - delete node_modules, dist and package-lock.json
6
+ 2 - run npm install and npm publish
@@ -32,6 +32,7 @@ export type DeployedProject = {
32
32
  projectRewardText: string;
33
33
  stretchGoals: StretchGoal[];
34
34
  owners: string[];
35
+ coingeckoId?: string;
35
36
  };
36
37
  export type ProjectBacker = {
37
38
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dripfi/drip-sdk",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Drip SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",