Web3 Wallet & On-Chain Trading 6.0.3
Latest3 September 2026
Web3 Wallet Trading v6.0.3
Release Date: September 3, 2026 Tags: LIQUIDITY, CUSTODY, ECOSYSTEM
Overview
One fix to the pool readiness check. The check that refuses a platform-held address as a pool's seeding wallet recognised the Ecosystem master wallets and custodial contracts but never a customer's deposit address, because it hashed the lowercased spelling while the wallet table indexes the checksummed one. It now tries both.
Update Instructions
pnpm updatorServer-side only; no schema change and nothing to run.
Fixed
The seeding-wallet custody check never recognised a customer deposit address
findCustodialOwner lowercases the address it is given and hashed that
spelling to look the wallet table up by its indexed address key. Every deposit
address the platform derives is stored checksummed, so the hash never matched
and a customer deposit address offered as a seeding wallet came back as "not
custodial". The master-wallet and custodial-contract halves of the check were
unaffected.
- Fixed — the lookup hashes both the checksummed and the lowercased spelling. With the Ecosystem extension's per-user address model several wallets share one address, which the lookup treats as one owner.