Reputation: 56666
If I call the transaction endpoint from the API gateway:
I get the following data:
"data":"RVNEVE5GVFRyYW5zZmVyQDRkNDU1ODQ2NDE1MjRkMmQ2MjM5MzM2NTM2MzBAMDEyMzRmQDA1OWUxZDQ2YTljM2I4OWNhMkAwMDAwMDAwMDAwMDAwMDAwMDUwMDRmNzllYzQ0YmIxMzM3MmI1YWM5ZDk5NmQ3NDkxMjBmNDc2NDI3NjI3Y2ViQDYzNmY2ZDcwNmY3NTZlNjQ1MjY1Nzc2MTcyNjQ3Mw=="
What does it represent?
Upvotes: 2
Views: 237
Reputation: 56666
That "data" field is encoded in base64 and it represents the Input Data field available in explorer:
ESDTNFTTransfer@4d45584641524d2d623933653630@01234f@059e1d46a9c3b89ca2@000000000000000005004f79ec44bb13372b5ac9d996d749120f476427627ceb@636f6d706f756e6452657761726473
It can be decoded using an online base64 decoder.
Upvotes: 2