[{"name":"generate_wallet","method":"POST","path":"/","auth":"none","description":"Generate a new Ethereum-compatible wallet with address and private key. No auth required.","input_schema":{"type":"object","properties":{},"required":[]},"output_schema":{"type":"object","properties":{"address":{"type":"string"},"private_key":{"type":"string"},"created_at":{"type":"string"}}}},{"name":"redeem_code","method":"POST","path":"/redeem","auth":"none","description":"Redeem a code for a funded wallet with $10.00 in ecosystem credits.","input_schema":{"type":"object","properties":{"code":{"type":"string"}},"required":["code"]},"output_schema":{"type":"object","properties":{"address":{"type":"string"},"private_key":{"type":"string"},"credits":{"type":"object"}}}},{"name":"check_credits","method":"GET","path":"/credits/{address}","auth":"wallet_signature","description":"Check ecosystem credit balance for a wallet address.","input_schema":{"type":"object","properties":{},"required":[]},"output_schema":{"type":"object","properties":{"address":{"type":"string"},"balance":{"type":"integer"},"currency":{"type":"string"}}}}]