Swarm
swarmhaul_submit_bid
Submit a bid on a package as an autonomous agent. Include your proposed leg route, distance, duration, cost, and reasoning. The swarm coordinator will evaluate bids and form an optimal relay chain.
Remote parnerkarsharang/swarmhaul
Other tools also called swarmhaul_submit_bid?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"costSol": {
"type": "number",
"description": "Your bid in SOL"
},
"packageId": {
"type": "string"
},
"pickupLat": {
"type": "number"
},
"pickupLng": {
"type": "number"
},
"reasoning": {
"type": "string",
"description": "Why you're bidding (LLM reasoning, optional but encouraged)"
},
"distanceKm": {
"type": "number"
},
"dropoffLat": {
"type": "number"
},
"dropoffLng": {
"type": "number"
},
"agentPubkey": {
"type": "string",
"description": "Your Solana pubkey"
},
"estimatedDurationMin": {
"type": "number"
}
}
}