Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sdks/python/pmxt/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,11 @@ def resolve_pmxt_base_url(
return ResolvedBaseUrl(LOCAL_URL, None, False)


#: Known PreFundedEscrow contract addresses on Polygon (chain 137).
#: Known pre-funded PreFundedEscrow contract addresses on Polygon (chain 137).
#:
#: Hosted typed-data validation accepts these addresses as EIP-712
#: ``verifyingContract`` values.
#: ``verifyingContract`` values, allowing orders to use the shared escrow
#: balance rather than a per-venue deposit.
PREFUNDED_ESCROW_ADDRESSES: frozenset[str] = frozenset({
"0x3ad326f78b1390b9a5dc5f00e7f62f8632de23e2",
})
Expand Down
7 changes: 4 additions & 3 deletions sdks/typescript/pmxt/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ export function resolvePmxtBaseUrl(args: {
}

/**
* Lowercase 0x-prefixed escrow addresses that are pre-funded by pmxt for
* hosted trading. Orders routed through these addresses use the shared
* escrow balance rather than a per-venue deposit.
* Lowercase 0x-prefixed PreFundedEscrow addresses on Polygon (chain 137).
* Hosted typed-data validation accepts these addresses as EIP-712
* verifyingContract values, allowing orders to use the shared escrow balance
* rather than a per-venue deposit.
*/
export const PREFUNDED_ESCROW_ADDRESSES: ReadonlySet<string> = new Set([
"0x3ad326f78b1390b9a5dc5f00e7f62f8632de23e2",
Expand Down
Loading