You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update testnet deployments to new contract, improve DX
- Testnet contract address changed to 0x428c850be686E933DD641eE43574BA35f550c94c (same as mainnet)
- Add tUSDT pool to both Sepolia and BSC Testnet (verified on-chain)
- Update max amounts to uint128 max from new contract
- README Quick Start uses SEPOLIA_TESTNET preset instead of placeholder URLs
- Add chain preset reference table to README
- Improve seed validation error message with HKDF context
- Add JSDoc to WalletSessionInput.seed
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
if(seed.length<16)thrownewError('Seed must be at least 16 characters');
14
+
if(seed.length<16)thrownewError('Seed must be at least 16 characters. Any passphrase, hex string, or random bytes will work — it is run through HKDF-SHA256 internally.');
0 commit comments