@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.
- package/dist/types/index.d.ts +6 -10
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
|
175
|
-
startTime
|
|
176
|
-
endTime
|
|
177
|
-
feeBps
|
|
178
|
-
payoutFee
|
|
179
|
-
mint
|
|
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
|
};
|