@glowlabs-org/utils 0.2.39 → 0.2.40

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.
@@ -125,12 +125,8 @@ export type KickstarterStatus = "draft" | "collecting-support" | "completed" | "
125
125
  export interface CreateKickstarterPayload {
126
126
  creatorWallet: string;
127
127
  regionName: string;
128
- isUs?: boolean;
129
128
  title: string;
130
129
  description: string;
131
- stakeTargetGctl: string;
132
- requiredFarmCount?: number;
133
- requiredInstallerCount?: number;
134
130
  code: string;
135
131
  }
136
132
  export interface KickstarterCreateResponse {
@@ -125,12 +125,8 @@ export type KickstarterStatus = "draft" | "collecting-support" | "completed" | "
125
125
  export interface CreateKickstarterPayload {
126
126
  creatorWallet: string;
127
127
  regionName: string;
128
- isUs?: boolean;
129
128
  title: string;
130
129
  description: string;
131
- stakeTargetGctl: string;
132
- requiredFarmCount?: number;
133
- requiredInstallerCount?: number;
134
130
  code: string;
135
131
  }
136
132
  export interface KickstarterCreateResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowlabs-org/utils",
3
- "version": "0.2.39",
3
+ "version": "0.2.40",
4
4
  "description": "A library containing all typechain types and addresses relating to the glow guarded launch",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -158,12 +158,8 @@ export type KickstarterStatus =
158
158
  export interface CreateKickstarterPayload {
159
159
  creatorWallet: string;
160
160
  regionName: string;
161
- isUs?: boolean;
162
161
  title: string;
163
162
  description: string;
164
- stakeTargetGctl: string; // decimal string
165
- requiredFarmCount?: number; // defaults server-side
166
- requiredInstallerCount?: number; // defaults server-side
167
163
  code: string; // region code (e.g., "US-FL", "US", "CA")
168
164
  }
169
165