diff --git a/analyzer/runtime/extract.go b/analyzer/runtime/extract.go index 70cc72dc7..949682d3c 100644 --- a/analyzer/runtime/extract.go +++ b/analyzer/runtime/extract.go @@ -86,8 +86,8 @@ type EventData struct { Type apiTypes.RuntimeEventType Body EventBody WithScope ScopedSdkEvent - EvmLogName string - EvmLogSignature ethCommon.Hash + EvmLogName *string + EvmLogSignature *ethCommon.Hash EvmLogParams []*apiTypes.EvmAbiParam RelatedAddresses map[apiTypes.Address]bool } @@ -902,8 +902,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad if fromZero != toZero && value.Cmp(&big.Int{}) != 0 { blockData.PossibleTokens[eventAddr].Mutated = true } - eventData.EvmLogName = apiTypes.Erc20Transfer - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(apiTypes.Erc20Transfer) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "from", @@ -943,8 +943,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad if _, ok := blockData.PossibleTokens[eventAddr]; !ok { blockData.PossibleTokens[eventAddr] = &evm.EVMPossibleToken{} } - eventData.EvmLogName = apiTypes.Erc20Approval - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(apiTypes.Erc20Approval) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "owner", @@ -1010,8 +1010,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad registerNFTExist(blockData.PossibleNFTs, eventAddr, tokenID) // Mints, burns, and zero-value transfers all count as transfers. registerNFTTransfer(blockData.PossibleNFTs, eventAddr, tokenID, toZero, toAddr) - eventData.EvmLogName = evmabi.ERC721.Events["Transfer"].Name - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(evmabi.ERC721.Events["Transfer"].Name) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "from", @@ -1052,8 +1052,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad blockData.PossibleTokens[eventAddr] = &evm.EVMPossibleToken{} } registerNFTExist(blockData.PossibleNFTs, eventAddr, tokenID) - eventData.EvmLogName = evmabi.ERC721.Events["Approval"].Name - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(evmabi.ERC721.Events["Approval"].Name) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "owner", @@ -1093,8 +1093,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad if _, ok := blockData.PossibleTokens[eventAddr]; !ok { blockData.PossibleTokens[eventAddr] = &evm.EVMPossibleToken{} } - eventData.EvmLogName = evmabi.ERC721.Events["ApprovalForAll"].Name - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(evmabi.ERC721.Events["ApprovalForAll"].Name) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "owner", @@ -1143,8 +1143,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad blockData.PossibleTokens[eventAddr] = &evm.EVMPossibleToken{} } - eventData.EvmLogName = evmabi.WROSE.Events["Deposit"].Name - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(evmabi.WROSE.Events["Deposit"].Name) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "dst", @@ -1177,8 +1177,8 @@ func extractEvents(blockData *BlockData, relatedAccountAddresses map[apiTypes.Ad blockData.PossibleTokens[eventAddr] = &evm.EVMPossibleToken{} } - eventData.EvmLogName = evmabi.WROSE.Events["Withdrawal"].Name - eventData.EvmLogSignature = ethCommon.BytesToHash(event.Topics[0]) + eventData.EvmLogName = common.Ptr(evmabi.WROSE.Events["Withdrawal"].Name) + eventData.EvmLogSignature = common.Ptr(ethCommon.BytesToHash(event.Topics[0])) eventData.EvmLogParams = []*apiTypes.EvmAbiParam{ { Name: "src", diff --git a/tests/e2e_regression/expected/emerald_events.body b/tests/e2e_regression/expected/emerald_events.body index 3cdd39c6c..a26f73675 100644 --- a/tests/e2e_regression/expected/emerald_events.body +++ b/tests/e2e_regression/expected/emerald_events.body @@ -9,7 +9,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -24,7 +24,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -39,7 +39,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -54,7 +54,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -69,7 +69,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -84,7 +84,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -99,7 +99,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -114,7 +114,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -129,7 +129,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -144,7 +144,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -159,7 +159,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060339, "timestamp": "2023-12-12T10:06:44Z", "tx_hash": null, @@ -175,7 +175,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "8a5b6cd62141f380e4b481a48814fea9c40f7f382cd819d9d49e021af76ca6d8", - "evm_log_name": "", + "evm_log_name": null, "round": 8060338, "timestamp": "2023-12-12T10:06:38Z", "tx_hash": "ec1173a69272c67f126f18012019d19cd25199e831f9417b6206fb7844406f9d", @@ -187,7 +187,7 @@ "amount": 22136 }, "eth_tx_hash": "8a5b6cd62141f380e4b481a48814fea9c40f7f382cd819d9d49e021af76ca6d8", - "evm_log_name": "", + "evm_log_name": null, "round": 8060338, "timestamp": "2023-12-12T10:06:38Z", "tx_hash": "ec1173a69272c67f126f18012019d19cd25199e831f9417b6206fb7844406f9d", @@ -203,7 +203,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060338, "timestamp": "2023-12-12T10:06:38Z", "tx_hash": null, @@ -218,7 +218,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -233,7 +233,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -248,7 +248,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -263,7 +263,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -278,7 +278,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -293,7 +293,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -308,7 +308,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -323,7 +323,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -338,7 +338,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -353,7 +353,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -368,7 +368,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060337, "timestamp": "2023-12-12T10:06:32Z", "tx_hash": null, @@ -384,7 +384,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "547aa2944a8be90f55f37c34afab8b9b8e08be5ff998f8a401efedaa2f77793e", - "evm_log_name": "", + "evm_log_name": null, "round": 8060336, "timestamp": "2023-12-12T10:06:26Z", "tx_hash": "a0c8251ab648e04b9aade29d96d94f8abd5d6f71456da12bbbfb34844cf028e7", @@ -396,7 +396,7 @@ "amount": 22136 }, "eth_tx_hash": "547aa2944a8be90f55f37c34afab8b9b8e08be5ff998f8a401efedaa2f77793e", - "evm_log_name": "", + "evm_log_name": null, "round": 8060336, "timestamp": "2023-12-12T10:06:26Z", "tx_hash": "a0c8251ab648e04b9aade29d96d94f8abd5d6f71456da12bbbfb34844cf028e7", @@ -412,7 +412,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060336, "timestamp": "2023-12-12T10:06:26Z", "tx_hash": null, @@ -427,7 +427,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -442,7 +442,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -457,7 +457,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -472,7 +472,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -487,7 +487,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -502,7 +502,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -517,7 +517,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -532,7 +532,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -547,7 +547,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -562,7 +562,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -577,7 +577,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060335, "timestamp": "2023-12-12T10:06:21Z", "tx_hash": null, @@ -593,7 +593,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "f3f39a596bc8d93e220d51f5304bf0265e7ce94e9968960be43030642cf31d7d", - "evm_log_name": "", + "evm_log_name": null, "round": 8060334, "timestamp": "2023-12-12T10:06:15Z", "tx_hash": "165ad5f1bda6ff87876e3a0dbb9f8578da6cb2472120a359e5fbd6d9af6c51bb", @@ -605,7 +605,7 @@ "amount": 22136 }, "eth_tx_hash": "f3f39a596bc8d93e220d51f5304bf0265e7ce94e9968960be43030642cf31d7d", - "evm_log_name": "", + "evm_log_name": null, "round": 8060334, "timestamp": "2023-12-12T10:06:15Z", "tx_hash": "165ad5f1bda6ff87876e3a0dbb9f8578da6cb2472120a359e5fbd6d9af6c51bb", @@ -621,7 +621,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060334, "timestamp": "2023-12-12T10:06:15Z", "tx_hash": null, @@ -635,7 +635,7 @@ }, "owner": "oasis1qqn5lhdlq7t730qyrsxj4ph4a8xnhwjtcs87fmrd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -650,7 +650,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -665,7 +665,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -680,7 +680,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -695,7 +695,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -710,7 +710,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -725,7 +725,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -740,7 +740,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -755,7 +755,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -770,7 +770,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -785,7 +785,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -800,7 +800,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -816,7 +816,7 @@ "nonce": 201377, "to": "oasis1qqn5lhdlq7t730qyrsxj4ph4a8xnhwjtcs87fmrd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060333, "timestamp": "2023-12-12T10:06:09Z", "tx_hash": null, @@ -832,7 +832,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "aca7d562c32924a98d3d3a5c3a33d4b34f7471ee8e4604ade5cf54f64ff32817", - "evm_log_name": "", + "evm_log_name": null, "round": 8060332, "timestamp": "2023-12-12T10:06:03Z", "tx_hash": "78709473a80f616194adcbea98823894628a916b2502ba9b9c8b8128c73fff7d", @@ -844,7 +844,7 @@ "amount": 22136 }, "eth_tx_hash": "aca7d562c32924a98d3d3a5c3a33d4b34f7471ee8e4604ade5cf54f64ff32817", - "evm_log_name": "", + "evm_log_name": null, "round": 8060332, "timestamp": "2023-12-12T10:06:03Z", "tx_hash": "78709473a80f616194adcbea98823894628a916b2502ba9b9c8b8128c73fff7d", @@ -855,7 +855,7 @@ "body": { "amount": 61294 }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060332, "timestamp": "2023-12-12T10:06:03Z", "tx_hash": "73cba102c282b9a64b03828a2eb2ef85af5006a9d3c3d8bed55d00fd2576da78", @@ -871,7 +871,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060332, "timestamp": "2023-12-12T10:06:03Z", "tx_hash": null, @@ -886,7 +886,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -901,7 +901,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -916,7 +916,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -931,7 +931,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -946,7 +946,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -961,7 +961,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -976,7 +976,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -991,7 +991,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -1006,7 +1006,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -1021,7 +1021,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -1036,7 +1036,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060331, "timestamp": "2023-12-12T10:05:57Z", "tx_hash": null, @@ -1052,7 +1052,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "759dca8bbf142aef388bde551a9425fb655e2d0d4dc0f8f718ffec1489a9c3cd", - "evm_log_name": "", + "evm_log_name": null, "round": 8060330, "timestamp": "2023-12-12T10:05:51Z", "tx_hash": "e0dbb7feb3a08b43a0e3c1561d229344edeeb750774f54f2b3974c4cedb49fd9", @@ -1064,7 +1064,7 @@ "amount": 22136 }, "eth_tx_hash": "759dca8bbf142aef388bde551a9425fb655e2d0d4dc0f8f718ffec1489a9c3cd", - "evm_log_name": "", + "evm_log_name": null, "round": 8060330, "timestamp": "2023-12-12T10:05:51Z", "tx_hash": "e0dbb7feb3a08b43a0e3c1561d229344edeeb750774f54f2b3974c4cedb49fd9", @@ -1081,7 +1081,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "8c24652f1b27f107c64aa4abfa9d794a6a2c0b9e5236caa99ea2f53b2e5dbc83", - "evm_log_name": "", + "evm_log_name": null, "round": 8060330, "timestamp": "2023-12-12T10:05:51Z", "tx_hash": "a2ca8bc1aa18335747b8d194764c779c4f432ef31d154c8e9cc00e8bbd6fc48d", @@ -1093,7 +1093,7 @@ "amount": 22144 }, "eth_tx_hash": "8c24652f1b27f107c64aa4abfa9d794a6a2c0b9e5236caa99ea2f53b2e5dbc83", - "evm_log_name": "", + "evm_log_name": null, "round": 8060330, "timestamp": "2023-12-12T10:05:51Z", "tx_hash": "a2ca8bc1aa18335747b8d194764c779c4f432ef31d154c8e9cc00e8bbd6fc48d", @@ -1109,7 +1109,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060330, "timestamp": "2023-12-12T10:05:51Z", "tx_hash": null, @@ -1124,7 +1124,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1139,7 +1139,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1154,7 +1154,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1169,7 +1169,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1184,7 +1184,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1199,7 +1199,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1214,7 +1214,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1229,7 +1229,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1244,7 +1244,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1259,7 +1259,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1274,7 +1274,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060329, "timestamp": "2023-12-12T10:05:46Z", "tx_hash": null, @@ -1290,7 +1290,7 @@ "to": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4" }, "eth_tx_hash": "c5f0d68d7ed2280fccb2c3181a598e954fa4d003caea6b1d54b86c11540afe15", - "evm_log_name": "", + "evm_log_name": null, "round": 8060328, "timestamp": "2023-12-12T10:05:40Z", "tx_hash": "9ee113d29da2cafb8bb08fa1307f83db880c4f4e42993750466966decd229ffe", @@ -1302,7 +1302,7 @@ "amount": 22136 }, "eth_tx_hash": "c5f0d68d7ed2280fccb2c3181a598e954fa4d003caea6b1d54b86c11540afe15", - "evm_log_name": "", + "evm_log_name": null, "round": 8060328, "timestamp": "2023-12-12T10:05:40Z", "tx_hash": "9ee113d29da2cafb8bb08fa1307f83db880c4f4e42993750466966decd229ffe", @@ -1318,7 +1318,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060328, "timestamp": "2023-12-12T10:05:40Z", "tx_hash": null, @@ -1333,7 +1333,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qp334gzlzrap6k2ch6wc9vxxplw9sg3v9cfvvgsy" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1348,7 +1348,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qq0xmq7r0z9sdv02t5j9zs7en3n6574gtg8v9fyt" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1363,7 +1363,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qqewwznmvwfvee0dyq9g48acy0wcw890g549pukz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1378,7 +1378,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qram2p9w3yxm4px5nth8n7ugggk5rr6ay5d284at" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1393,7 +1393,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrdx0n7lgheek24t24vejdks9uqmfldtmgdv7jzz" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1408,7 +1408,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrgxl0ylc7lvkj0akv6s32rj4k98nr0f7smf6m4k" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1423,7 +1423,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qrmexg6kh67xvnp7k42sx482nja5760stcrcdkhm" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1438,7 +1438,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz22xm9vyg0uqxncc667m4j4p5mrsj455c743lfn" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1453,7 +1453,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qz78phkdan64g040cvqvqpwkplfqf6tj6uwcsh30" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1468,7 +1468,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzf03q57jdgdwp2w7y6a8yww6mak9khuag9qt0kd" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null, @@ -1483,7 +1483,7 @@ "from": "oasis1qp3r8hgsnphajmfzfuaa8fhjag7e0yt35cjxq0u4", "to": "oasis1qzk6qlmgnq40cq2n3jfkw3307feqngt4gvksfml6" }, - "evm_log_name": "", + "evm_log_name": null, "round": 8060327, "timestamp": "2023-12-12T10:05:34Z", "tx_hash": null,