auramaxxgg-web/src/features/agents/AgentsPage.tsx#live-trading-flow
Live Trading Flow
The delegated-user trading loop for buy, offer, sell, and transfer, with read-first and no-mutation rules.
AGENT FLOWS
Live Trading Flow
Read First, Then Prepare
Read Before You Act
- Load current market state from https://api.auramaxx.gg/api/tempo/developer/v1/marketplace/catalog.
- Load the authenticated user inventory from https://api.auramaxx.gg/api/tempo/developer/v1/marketplace/inventory.
Execution Rules
- Quote the requested action first.
- Prepare the matching action and sign the returned call batch locally.
- Do not mutate price, quantity, destination, or wallet between quote and prepare.
Prepare Endpoints
Document Reference
auramaxxgg-web/src/features/agents/AgentsPage.tsx#live-trading-flow
