pmxtjs 2.50.14 → 2.50.15

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.
@@ -58,8 +58,7 @@ export declare function resolvePmxtBaseUrl(args: {
58
58
  */
59
59
  export declare const PREFUNDED_ESCROW_ADDRESSES: ReadonlySet<string>;
60
60
  /**
61
- * Lowercase 0x-prefixed escrow addresses that the hosted trading API treats
62
- * as venue-owned escrows. Currently empty; populated as venues onboard.
61
+ * Lowercase 0x-prefixed VenueEscrow addresses on BSC (chain 56).
63
62
  */
64
63
  export declare const VENUE_ESCROW_ADDRESSES: ReadonlySet<string>;
65
64
  /**
@@ -67,10 +67,11 @@ export const PREFUNDED_ESCROW_ADDRESSES = new Set([
67
67
  "0x3ad326f78b1390b9a5dc5f00e7f62f8632de23e2",
68
68
  ]);
69
69
  /**
70
- * Lowercase 0x-prefixed escrow addresses that the hosted trading API treats
71
- * as venue-owned escrows. Currently empty; populated as venues onboard.
70
+ * Lowercase 0x-prefixed VenueEscrow addresses on BSC (chain 56).
72
71
  */
73
- export const VENUE_ESCROW_ADDRESSES = new Set();
72
+ export const VENUE_ESCROW_ADDRESSES = new Set([
73
+ "0x6a273643d84edbb603b808d8a724fb963c7a298a",
74
+ ]);
74
75
  /**
75
76
  * Limitless VenueEscrow contract addresses on Base (chain 8453).
76
77
  */
@@ -58,8 +58,7 @@ export declare function resolvePmxtBaseUrl(args: {
58
58
  */
59
59
  export declare const PREFUNDED_ESCROW_ADDRESSES: ReadonlySet<string>;
60
60
  /**
61
- * Lowercase 0x-prefixed escrow addresses that the hosted trading API treats
62
- * as venue-owned escrows. Currently empty; populated as venues onboard.
61
+ * Lowercase 0x-prefixed VenueEscrow addresses on BSC (chain 56).
63
62
  */
64
63
  export declare const VENUE_ESCROW_ADDRESSES: ReadonlySet<string>;
65
64
  /**
@@ -71,10 +71,11 @@ exports.PREFUNDED_ESCROW_ADDRESSES = new Set([
71
71
  "0x3ad326f78b1390b9a5dc5f00e7f62f8632de23e2",
72
72
  ]);
73
73
  /**
74
- * Lowercase 0x-prefixed escrow addresses that the hosted trading API treats
75
- * as venue-owned escrows. Currently empty; populated as venues onboard.
74
+ * Lowercase 0x-prefixed VenueEscrow addresses on BSC (chain 56).
76
75
  */
77
- exports.VENUE_ESCROW_ADDRESSES = new Set();
76
+ exports.VENUE_ESCROW_ADDRESSES = new Set([
77
+ "0x6a273643d84edbb603b808d8a724fb963c7a298a",
78
+ ]);
78
79
  /**
79
80
  * Limitless VenueEscrow contract addresses on Base (chain 8453).
80
81
  */
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmxtjs",
3
- "version": "2.50.14",
3
+ "version": "2.50.15",
4
4
  "description": "OpenAPI client for pmxtjs",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmxtjs",
3
- "version": "2.50.14",
3
+ "version": "2.50.15",
4
4
  "description": "Unified prediction market data API - The ccxt for prediction markets",
5
5
  "author": "PMXT Contributors",
6
6
  "repository": {
@@ -43,7 +43,7 @@
43
43
  "unified"
44
44
  ],
45
45
  "dependencies": {
46
- "pmxt-core": "2.50.14",
46
+ "pmxt-core": "2.50.15",
47
47
  "ws": "^8.18.0"
48
48
  },
49
49
  "peerDependencies": {
package/pmxt/constants.ts CHANGED
@@ -76,10 +76,11 @@ export const PREFUNDED_ESCROW_ADDRESSES: ReadonlySet<string> = new Set([
76
76
  ]);
77
77
 
78
78
  /**
79
- * Lowercase 0x-prefixed escrow addresses that the hosted trading API treats
80
- * as venue-owned escrows. Currently empty; populated as venues onboard.
79
+ * Lowercase 0x-prefixed VenueEscrow addresses on BSC (chain 56).
81
80
  */
82
- export const VENUE_ESCROW_ADDRESSES: ReadonlySet<string> = new Set<string>();
81
+ export const VENUE_ESCROW_ADDRESSES: ReadonlySet<string> = new Set<string>([
82
+ "0x6a273643d84edbb603b808d8a724fb963c7a298a",
83
+ ]);
83
84
 
84
85
  /**
85
86
  * Limitless VenueEscrow contract addresses on Base (chain 8453).