Good day, on my self-hosting server i write a transaction (txs) to the database, but I also want to add to it the logs that came with it. How can I do this?
An example of a received object from the stream
{
...,
"logs": [ ... ],
"txs": [ ... ],
"txsInternal": [],
"erc20Transfers": [ ... ],
"erc20Approvals": [],
"nftTokenApprovals": [],
"nftApprovals": {
"ERC721": [],
"ERC1155": []
},
"nftTransfers": [],
"nativeBalances": []
}
@cryptokid, do you know of any way i can do this?