{"x402Version":2,"service":"HALOWERK agentenwerk","version":"1.0.0","network":"eip155:8453","network_name":"Base Mainnet","chain_id":8453,"recipient":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","asset":{"symbol":"USDC","address":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","decimals":6},"facilitators":["CDP","https://facilitator.xpay.sh"],"payment_headers":{"primary":"PAYMENT-SIGNATURE","accepted":["PAYMENT-SIGNATURE","X-Payment","PAYMENT"],"challenge":["PAYMENT-REQUIRED"],"response":["PAYMENT-RESPONSE"]},"resources":[{"url":"https://agent.halowerk.com/v1/webhook-inbox","method":"POST","name":"webhook_inbox","description":"Gives an agent without a reachable server a place to receive callbacks. create returns a public URL that accepts any POST, GET or PUT from a third party; poll returns the events that arrived since a cursor you carry forward, with headers, parsed body and arrival time. The inbox expires after at most seven days and holds at most 500 events, oldest dropped first. Reading requires the secret returned at creation. Do not point payment or authentication callbacks here: anyone who learns the URL can post to it, and stored bodies are readable with the secret alone.","summary":"Create a short-lived public receive URL, then poll it for the events that arrived, parsed and in order.","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["create","poll","delete"],"description":"create makes a new inbox, poll reads events, delete removes it."},"inbox_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for poll and delete."},"secret":{"type":"string","minLength":8,"maxLength":128,"description":"The secret returned by create. Required for poll and delete."},"cursor":{"type":"integer","minimum":0,"default":0,"description":"Only events with a higher sequence number are returned."},"limit":{"type":"integer","minimum":1,"maximum":200,"default":50,"description":"Maximum events per poll."},"ttl_seconds":{"type":"integer","minimum":60,"maximum":604800,"default":3600,"description":"Lifetime of a new inbox, at most seven days."},"max_events":{"type":"integer","minimum":1,"maximum":500,"default":100,"description":"How many events the inbox keeps before dropping the oldest."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/state-store","method":"POST","name":"state_store","description":"Key-value state for agents that need to survive between calls. Every write carries a time-to-live; the maximum is 30 days and there is no way to store something permanently. Values are opaque JSON up to 64 KB, at most 1000 live keys per namespace. Actions: set, get, list, delete. A get on a missing or expired key answers found=false, it is not an error. The namespace is a plain string chosen by the caller and is not authenticated — anyone who knows it can read it, so do not put secrets in it. Expired rows are removed on access, not on a timer, so a list can lag a few seconds behind the exact expiry moment.","summary":"Store, read, list and delete small pieces of agent state under a namespace, with a mandatory expiry so nothing is kept forever.","inputSchema":{"type":"object","required":["action","namespace"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["set","get","list","delete"],"description":"What to do."},"namespace":{"type":"string","minLength":3,"maxLength":128,"description":"Namespace the key lives in. Not a secret and not authenticated."},"key":{"type":"string","minLength":1,"maxLength":256,"description":"Key. Required for set, get and delete."},"value":{"description":"Any JSON value. Required for set. Serialised size must stay under 64 KB."},"ttl_seconds":{"type":"integer","minimum":1,"maximum":2592000,"default":3600,"description":"Lifetime in seconds, at most 30 days."},"limit":{"type":"integer","minimum":1,"maximum":500,"default":100,"description":"Maximum keys returned by list."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/wakeup","method":"POST","name":"wakeup_schedule","description":"Books a single POST to a URL you own, at a time you name, with a payload you supply. Delivery is retried up to five times with growing gaps and every attempt is recorded with its status. Lead time is between 10 seconds and 30 days, and at most 200 pending wakeups per target URL. The target must be a public https address: private, loopback and link-local addresses are refused, so this cannot be pointed at an internal network. Delivery is at-least-once and the time is a floor, not a guarantee — the dispatcher checks every 15 seconds, so expect a few seconds of lag. Actions: schedule, status, cancel, list.","summary":"Schedule one HTTP callback to your own URL at a fixed time, then check or cancel it — for agents that are not running when the moment arrives.","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["schedule","status","cancel","list"],"description":"What to do."},"target_url":{"type":"string","maxLength":2000,"description":"Public https URL that receives the POST. Required for schedule and list."},"due_at":{"type":"string","description":"Absolute time as ISO 8601, e.g. 2026-08-12T09:00:00Z. Either this or delay_seconds."},"delay_seconds":{"type":"integer","minimum":10,"maximum":2592000,"description":"Relative lead time in seconds. Either this or due_at."},"payload":{"description":"JSON body delivered with the callback. Up to 16 KB."},"header_name":{"type":"string","maxLength":64,"description":"Optional header name sent with the callback, e.g. X-Agent-Token."},"header_value":{"type":"string","maxLength":512,"description":"Value for that header. Stored as given."},"wakeup_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and cancel."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."},"limit":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"Maximum entries returned by list."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/job-runner","method":"POST","name":"job_runner","description":"For work that outlives one HTTP response. You submit steps, each an HTTP request against a public address; the job is acknowledged at once and runs in the background, and the collected results are POSTed to your callback URL when finished. Every step reports its status, timing, response headers and body up to 256 KB, and a failing step never aborts the others. Price is 0.003 USDC per step, quoted before payment. Only http and https against public hosts are performed — private and loopback addresses are refused and no supplied code is ever executed. Steps run one after another with a 20 second cap each, so a 50-step job can take several minutes. Actions: submit, status, cancel.","summary":"Hand over a list of up to 50 HTTP calls, get an immediate job id, and have the collected results posted to your callback when they are done.","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["submit","status","cancel"],"description":"What to do."},"steps":{"type":"array","minItems":1,"maxItems":50,"description":"The calls to make, in order. Required for submit.","items":{"type":"object","required":["url"],"additionalProperties":false,"properties":{"url":{"type":"string","maxLength":2000,"description":"Public http or https address."},"method":{"type":"string","enum":["GET","POST","PUT","HEAD"],"default":"GET","description":"HTTP method."},"headers":{"type":"object","description":"Extra request headers."},"body":{"description":"Request body. Objects are sent as JSON."},"label":{"type":"string","maxLength":100,"description":"Name for this step in the result."}}}},"callback_url":{"type":"string","maxLength":2000,"description":"Public https URL that receives the finished job. Required for submit."},"callback_header_name":{"type":"string","maxLength":64,"description":"Optional header sent with the callback."},"callback_header_value":{"type":"string","maxLength":512,"description":"Value for that header."},"job_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and cancel."},"token":{"type":"string","minLength":16,"maxLength":128,"description":"The token from submit. Required for status and cancel."},"include_results":{"type":"boolean","default":false,"description":"Return the collected results with status as well as via callback."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"3000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/file-vault","method":"POST","name":"file_vault","description":"Takes a base64 file up to 25 MB and stores it for as long as you say, at most seven days. You get a download URL carrying a 32-byte token; whoever holds the link can fetch the file once or up to a limit you set, with no payment and no account. Price is 0.004 USDC per started megabyte, quoted before payment from the size you declare. Actions: store, status, delete. Anything expired is deleted with its contents, and a link is only as private as you keep it, so this is not a place for personal or secret material. Content is stored and served unchanged and is never inspected or scanned.","summary":"Park a file for a limited time and get back an unguessable download URL that anyone you send it to can fetch without a wallet.","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["store","status","delete"],"description":"What to do."},"content_base64":{"type":"string","description":"File content, base64 encoded. Required for store."},"filename":{"type":"string","maxLength":255,"description":"Name suggested to the downloader."},"content_type":{"type":"string","maxLength":128,"default":"application/octet-stream","description":"MIME type served on download."},"ttl_seconds":{"type":"integer","minimum":60,"maximum":604800,"default":3600,"description":"Lifetime, at most seven days."},"max_downloads":{"type":"integer","minimum":1,"maximum":1000,"description":"Delete after this many downloads. Unlimited within the lifetime if omitted."},"size_bytes":{"type":"integer","minimum":1,"maximum":26214400,"description":"Declared size, used to quote the price before payment. Must match the real size."},"file_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and delete."},"token":{"type":"string","minLength":16,"maxLength":128,"description":"The token returned by store. Required for status and delete."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/a2a-card-validate","method":"POST","name":"a2a_card_validate","description":"Validates an Agent Card document against the A2A convention and returns findings by severity: error (the card is unusable as published), warning (works, but a consuming agent will guess), info (recommended field absent). Checked: the required fields name, description, url, version, capabilities and skills; that url is absolute and https; that every skill carries id, name, description and tags and that skill ids are unique; that declared securitySchemes use a known type and that every entry in security refers to a defined scheme; that input and output modes are declared; that streaming and pushNotifications are booleans. This endpoint does not fetch the card and never contacts the agent: it judges only the document handed to it, so a passing card is not proof that the endpoint is reachable or honest.","summary":"Check an A2A Agent Card for required fields, skill definitions, authentication declarations and transport hygiene, and get every deviation listed with its JSON path.","inputSchema":{"type":"object","required":["card"],"additionalProperties":false,"properties":{"card":{"type":"object","description":"The Agent Card document as JSON."},"strict":{"type":"boolean","default":false,"description":"If true, recommended-field findings count as warnings and lower the verdict."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/mcp-inspect","method":"POST","name":"mcp_inspect","description":"Performs the MCP handshake against a streamable-HTTP endpoint and then reads the catalogue: tools with their input schemas, resources with their URIs and mime types, and prompts with their arguments. Servers answering as an event stream are handled as well as plain JSON, and a session id is carried across calls. Only listing methods are sent — no tool of the inspected server is ever executed, nothing is written, and no resource contents are read. The target must be a public address; private and loopback addresses are refused. An unreachable or non-conforming server yields a reachable=false report with the reason, not an error.","summary":"Look at a remote MCP server from the outside: whether it answers, which protocol it speaks, and the tools, resources and prompts it offers with their schemas.","inputSchema":{"type":"object","required":["url"],"additionalProperties":false,"properties":{"url":{"type":"string","maxLength":2000,"description":"The MCP endpoint, e.g. https://example.com/mcp. Public https address."},"include":{"type":"array","default":["tools","resources","prompts"],"items":{"type":"string","enum":["tools","resources","prompts"]},"description":"Which catalogues to read."},"include_schemas":{"type":"boolean","default":true,"description":"Return the full input schema per tool. If false, only names and descriptions."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/mcp-normalize","method":"POST","name":"mcp_normalize","description":"Takes a list of MCP tool definitions, as returned by tools/list on any number of servers, and rewrites them into one common form. Servers disagree on where the schema lives — inputSchema, input_schema, parameters, schema or arguments are all in use — and a consumer reading only one of them loses the others silently; every spelling is accepted and the one found is reported. For each tool the result carries a flat field list with type, required flag and description, a synthetic example call built from the schema, and the tool name normalised to snake_case. Name collisions across servers are detected and reported with the servers involved. The example call shows the shape only: values like \"string\" and 0 are placeholders and must never be sent to a live server. No network access happens here — only the definitions handed in are read.","summary":"Bring MCP tool definitions from different servers into one shape: uniform input schemas, a field list, a synthetic example call and a common set of error codes.","inputSchema":{"type":"object","required":["tools"],"additionalProperties":false,"properties":{"tools":{"type":"array","minItems":1,"maxItems":200,"description":"The MCP tool definitions to normalise.","items":{"type":"object","required":["name"],"properties":{"name":{"type":"string","minLength":1,"description":"Tool name."},"server":{"type":"string","description":"Which server the tool came from. Used for collision reporting."}}}},"include_examples":{"type":"boolean","default":true,"description":"Build a synthetic example call per tool."},"naming":{"type":"string","enum":["snake_case","preserve"],"default":"snake_case","description":"How to normalise tool names."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/fallback-resolve","method":"POST","name":"fallback_resolve","description":"Searches the public x402 discovery catalogue for services able to replace a broken dependency. Give the failed URL and, better still, a short description of what it did and the fields you need back; matches are scored on overlap between your task words and the candidate name, description and path, then ordered by score and price. Every hit carries the reason it matched, its price in USDC, its network and when the catalogue last saw it. The endpoint that failed is excluded from its own replacement list. This reads a public index and never calls a candidate: a listed service is not proof that it works today, and the input schema of a replacement will differ, so treat the result as a shortlist to test, not a drop-in.","summary":"Find paid x402 endpoints that can stand in for one that stopped answering, ranked by how well they match the task and what they cost.","inputSchema":{"type":"object","required":["failed_url"],"additionalProperties":false,"properties":{"failed_url":{"type":"string","maxLength":2000,"description":"The endpoint that stopped working."},"task":{"type":"string","maxLength":500,"description":"What it did, in a few words. The single strongest signal for a good match."},"required_fields":{"type":"array","items":{"type":"string"},"default":[],"description":"Field names you need in the answer. Candidates mentioning them score higher."},"max_price_usdc":{"type":"number","minimum":0,"description":"Ignore candidates above this price per call."},"network":{"type":"string","maxLength":64,"description":"Only candidates on this network, e.g. eip155:8453."},"limit":{"type":"integer","minimum":1,"maximum":25,"default":10,"description":"How many candidates to return."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/task-quote-compare","method":"POST","name":"task_quote_compare","description":"Normalises offers that describe the same task in different shapes and ranks them. Each offer may carry a price, a delivery time, a list of capabilities and one or more delivery formats. You state which capabilities and formats the task requires; offers missing a required capability or format are marked ineligible and ranked last, never silently dropped. The ranking is a weighted score over price, speed and capability coverage, with weights you supply and which are echoed back. Every ranked entry carries the sub-scores it was built from, so the order can be recomputed by hand. Prices must already be in one currency: no conversion happens here, and a mixed-currency input is rejected rather than compared wrongly.","summary":"Compare competing agent offers for one task on price, delivery time, required capabilities and output format, and get a ranked list with the reason for every position.","inputSchema":{"type":"object","required":["offers"],"additionalProperties":false,"properties":{"offers":{"type":"array","minItems":1,"maxItems":25,"description":"The competing offers.","items":{"type":"object","required":["agent"],"additionalProperties":false,"properties":{"agent":{"type":"string","minLength":1,"maxLength":128,"description":"Name of the offering agent."},"price":{"type":"number","minimum":0,"description":"Price for the whole task."},"currency":{"type":"string","minLength":2,"maxLength":10,"default":"USDC","description":"Currency. Must be the same across all offers."},"delivery_seconds":{"type":"integer","minimum":0,"description":"Promised delivery time in seconds."},"capabilities":{"type":"array","items":{"type":"string"},"default":[],"description":"What the agent says it can do."},"formats":{"type":"array","items":{"type":"string"},"default":[],"description":"Delivery formats offered, e.g. json, pdf, markdown."},"note":{"type":"string","maxLength":500,"description":"Free text carried through unchanged."}}}},"required_capabilities":{"type":"array","items":{"type":"string"},"default":[],"description":"Capabilities the task cannot do without."},"required_formats":{"type":"array","items":{"type":"string"},"default":[],"description":"Acceptable delivery formats. An offer matching any one of them qualifies."},"max_price":{"type":"number","minimum":0,"description":"Offers above this are marked ineligible."},"max_delivery_seconds":{"type":"integer","minimum":0,"description":"Offers slower than this are marked ineligible."},"weights":{"type":"object","additionalProperties":false,"description":"Weighting of the three criteria. Normalised to sum 1.","properties":{"price":{"type":"number","minimum":0,"default":0.4},"speed":{"type":"number","minimum":0,"default":0.3},"capability":{"type":"number","minimum":0,"default":0.3}}}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"url":"https://agent.halowerk.com/v1/result-consensus","method":"POST","name":"result_consensus","description":"Takes two to twelve answers and returns a field-by-field comparison. For JSON answers every leaf path is compared across responders: a path is agreed when all responders that supplied it carry the same value, conflicting when they differ, and partial when some omitted it. Numbers count as equal inside a relative tolerance you set. For plain-text answers the comparison is word-overlap similarity, which measures shared vocabulary and not meaning — two correct answers in different words will score low, and that is reported as low agreement, not as a contradiction. The result names a majority value per conflicting path together with how many responders backed it. This endpoint does not decide who is right: it has no ground truth and no model, it only shows where the answers part company.","summary":"Compare several agent answers to the same question, report where they agree, and list every field where they contradict each other with the competing values.","inputSchema":{"type":"object","required":["answers"],"additionalProperties":false,"properties":{"answers":{"type":"array","minItems":2,"maxItems":12,"description":"The answers to compare. Two to twelve entries.","items":{"type":"object","required":["responder","value"],"additionalProperties":false,"properties":{"responder":{"type":"string","minLength":1,"maxLength":128,"description":"Name of the answering agent."},"value":{"description":"The answer: a JSON document or a string."},"weight":{"type":"number","minimum":0,"maximum":100,"default":1,"description":"Optional weight for the majority count."}}}},"number_tolerance":{"type":"number","minimum":0,"maximum":1,"default":0.001,"description":"Relative tolerance below which two numbers count as equal."},"text_similarity_threshold":{"type":"number","minimum":0,"maximum":1,"default":0.6,"description":"Word-overlap ratio from which two texts count as agreeing."}}},"mimeType":"application/json","accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]}]}