@triadxyz/triad-protocol 2.4.4-beta → 2.4.5-beta

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.
@@ -166,23 +166,19 @@ export type CreateMarketArgs = {
166
166
  mint: PublicKey;
167
167
  poolId?: number;
168
168
  currentMarketId?: number;
169
- upPrice?: number;
170
- downPrice?: number;
171
169
  };
172
170
  export type CreateOrUpdatePoolArgs = {
173
171
  poolId: number;
174
- question: string;
175
- startTime?: number;
176
- endTime?: number;
177
- feeBps?: number;
178
- payoutFee?: number;
179
- mint?: PublicKey;
172
+ question?: string;
173
+ startTime: number;
174
+ endTime: number;
175
+ feeBps: number;
176
+ payoutFee: number;
177
+ mint: PublicKey;
180
178
  customer?: PublicKey | null;
181
179
  markets: {
182
180
  marketId: number;
183
181
  question: string;
184
- upPrice?: number;
185
- downPrice?: number;
186
182
  }[];
187
183
  isFast?: boolean;
188
184
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triadxyz/triad-protocol",
3
- "version": "2.4.4-beta",
3
+ "version": "2.4.5-beta",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",