exergynet_get_proof_transaction
Retrieve a proven SettleExergy transaction signature for autonomous agent compute settlement verification.
Instructions
Return the proven SettleExergy transaction signature.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:48-48 (handler)Handler for exergynet_get_proof_transaction: returns the hardcoded PROOF_TRANSACTION constant (a Solana transaction signature string).
case "exergynet_get_proof_transaction": return { content:[{ type: "text", text: PROOF_TRANSACTION }] }; - src/index.ts:21-21 (registration)Registration of the tool 'exergynet_get_proof_transaction' in the ListTools handler, with description and empty input schema.
{ name: "exergynet_get_proof_transaction", description: "Return the proven SettleExergy transaction signature.", inputSchema: { type: "object", properties: {} } }, - src/index.ts:12-12 (helper)PROOF_TRANSACTION constant defined as a Solana transaction signature string: '5ZB3LmFMHfuicuT6jQ6gG6v4ny1e5BVQgi1VqkbrA5LriLBzaHUVrDCkmrcgv9jbmyyKtXgsfNwy2daqGqyCgi9h'.
const PROOF_TRANSACTION = "5ZB3LmFMHfuicuT6jQ6gG6v4ny1e5BVQgi1VqkbrA5LriLBzaHUVrDCkmrcgv9jbmyyKtXgsfNwy2daqGqyCgi9h";