MCPcopy Create free account
hub / github.com/EvoMap/evolver / verifyDelivery

Function verifyDelivery

src/atp/hubClient.js:207–214  ·  view source on GitHub ↗

* POST /a2a/atp/verify -- confirm or trigger AI judge verification * @param {string} orderId * @param {string} action - 'confirm' | 'ai_judge'

(orderId, action)

Source from the content-addressed store, hash-verified

205 * @param {string} action - 'confirm' | 'ai_judge'
206 */
207function verifyDelivery(orderId, action) {
208 const nodeId = getNodeId();
209 return _post('/atp/verify', '/a2a/atp/verify', {
210 sender_id: nodeId,
211 order_id: orderId,
212 action: action || 'confirm',
213 });
214}
215
216/**
217 * POST /a2a/atp/settle -- force settlement

Callers 2

confirmDeliveryFunction · 0.85
requestAiJudgeFunction · 0.85

Calls 1

_postFunction · 0.85

Tested by

no test coverage detected