@numen-crypto/contract 0.19.0 → 0.20.0
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/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -0
- package/dist/index.d.ts +36 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1289,6 +1289,9 @@ var PredictionSchema = zod.z.object({
|
|
|
1289
1289
|
poolYes: MoneyStringSchema,
|
|
1290
1290
|
poolNo: MoneyStringSchema,
|
|
1291
1291
|
poolTotal: MoneyStringSchema,
|
|
1292
|
+
/** Staked by real bettors, house seed excluded — this is what actually funds a payout. */
|
|
1293
|
+
stakedYes: MoneyStringSchema,
|
|
1294
|
+
stakedNo: MoneyStringSchema,
|
|
1292
1295
|
/** Share of the total pool sitting on YES, in basis points. */
|
|
1293
1296
|
yesShareBp: zod.z.number().int().min(0).max(1e4),
|
|
1294
1297
|
participants: zod.z.number().int().nonnegative(),
|