Skip to content

Commit

Permalink
Add Timestamp to Mirror Node REST API Response (#952)
Browse files Browse the repository at this point in the history
Signed-off-by: Edwin Greene <[email protected]>
  • Loading branch information
edwin-greene authored May 8, 2024
1 parent 8778e16 commit 4632960
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions HIP/hip-904.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ status: Accepted
last-call-date-time: 2024-04-08T07:00:00Z
created: 2024-02-25
discussions-to: https://github.com/hashgraph/hedera-improvement-proposal/discussions/905
updated: 2024-04-17
updated: 2024-05-06
replaces: 655, 777
---

Expand Down Expand Up @@ -1011,21 +1011,33 @@ The SDKs must update the `TransactionRecord` to return the following information
"amount": 333,
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": null,
"serial_number": null,
"timestamp": {
"from": "1111111111.111111111",
"to": null
},
"token_id": "0.0.111"
},
{
"amount": 555,
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": null,
"serial_number": null,
"timestamp": {
"from": "1111111111.111111112",
"to": null
},
"token_id": "0.0.444"
},
{
"amount": null,
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": 888,
"timestamp": {
"from": "1111111111.111111113",
"to": null
},
"token_id": "0.0.666"
}
],
Expand Down Expand Up @@ -1055,20 +1067,32 @@ The SDKs must update the `TransactionRecord` to return the following information
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": null,
"timestamp": {
"from": "1111111111.111111111",
"to": null
},
"token_id": "0.0.111"
},
{
"amount": 555,
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": null,
"timestamp": {
"from": "1111111111.111111112",
"to": null
},
"token_id": "0.0.444"
},
{
"amount": null,
"receiver_id": "0.0.999",
"sender_id": "0.0.222",
"serial_number": 888,
"timestamp": {
"from": "1111111111.111111113",
"to": null
},
"token_id": "0.0.666"
}
],
Expand Down

0 comments on commit 4632960

Please sign in to comment.