action nebl_testnet_get_address_total_sent { label: "Returns total sent by address in sats" description: "Returns total NEBL sent by address in satoshis" provider: nebl method: GET path: "/testnet/ins/addr/{address}/totalSent" encoding: json input: { type: "object" properties: { address: { type: "string" } } required: ["address"] additionalProperties: false } output: { type: "number" description: "Address total sent in satoshis" } }