Futures
Hundreds of contracts settled in USDT or BTC
TradFi
Gold
Trade global traditional assets with USDT in one place
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Futures Kickoff
Get prepared for your futures trading
Futures Events
Participate in events to win generous rewards
Demo Trading
Use virtual funds to experience risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and enjoy airdrop rewards!
Futures Points
Earn futures points and claim airdrop rewards
Investment
Simple Earn
Earn interests with idle tokens
Auto-Invest
Auto-invest on a regular basis
Dual Investment
Buy low and sell high to take profits from price fluctuations
Soft Staking
Earn rewards with flexible staking
Crypto Loan
0 Fees
Pledge one crypto to borrow another
Lending Center
One-stop lending hub
VIP Wealth Hub
Customized wealth management empowers your assets growth
Private Wealth Management
Customized asset management to grow your digital assets
Quant Fund
Top asset management team helps you profit without hassle
Staking
Stake cryptos to earn in PoS products
Smart Leverage
New
No forced liquidation before maturity, worry-free leveraged gains
GUSD Minting
Use USDT/USDC to mint GUSD for treasury-level yields
Before the recent upgrade to Claude Code's memory system, I shared a plan for adding memory to Claude Code. Recently, a new round of upgrades was implemented, with the core change being the separation of "what to remember, when to remember, and where to store" into three layers:
**Capture Layer** — Defines which signals are worth recording: over 15 minutes of troubleshooting, counterintuitive technical discoveries, trade-offs in strategic decisions. Not all conversations are worth remembering; key is filtering.
**Timing Layer** — Controls the writing rhythm: after completing each task, record progress; after each commit, update project context; upon detecting leave signals ("That's it," "Leaving"), immediately save everything. No manual trigger needed.
**Routing Layer** — Ensures data is written to the correct location: technical pitfalls → project; reusable experience → daily progress. Uses ChromaDB for vector storage + BM25 keyword search as a plain text backup. Implements double writing (database + file); indexes are incrementally synchronized rather than rebuilt entirely.
Each layer manages one aspect: adding new capture rules doesn't require changing the writing logic; changing storage locations doesn't affect signal recognition. Claude Code's hooks mechanism is naturally suited for this event-driven pipeline.
**Result:** Cross-session memory is finally stable. Claude can remember last week's troubleshooting experiences, and during debugging, it will review historical records before acting.