DigitalNoteXDN / OLD-digitalnote

Base core code for DigitalNote
11 stars 10 forks source link

get_transfer_by_txid method #10

Closed campurro closed 5 years ago

campurro commented 5 years ago

Example request: curl -X POST http://127.0.0.1:42082/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"get_transfer_by_txid","params":{"txid":"b060bc2fe7...816d2fdb7e"}}' -H 'Content-Type: application/json'

Example response: { "id": "0", "jsonrpc": "2.0", "result": { "transfer": { "address": "ddd...", "amount": 50000100000, "blockIndex": 732291, "fee": 100000, "output": true, "paymentId": "45977...e6c1def94", "time": 1538130616, "transactionHash": "b060bc2fe7...816d2fdb7e", "unlockTime": 0 } } }