144: func (ob *EVMChainClient) CheckReceiptForCoinTypeZeta(txHash string, vote bool) (string, error) {
145: connector, err := ob.GetConnectorContract()
...  // [...]
154:
155: var msg types.MsgVoteOnObservedInboundTx
156: for _, log := range receipt.Logs {
157: 	event, err := connector.ParseZetaSent(*log)
158: 	if err == nil && event != nil {
159: 		msg, err = ob.GetInboundVoteMsgForZetaSentEvent(event)
160: 		if err == nil {
161: 			break
162: 		}
163: 	}
164: }
...  // [...]
177: }
52: function onReceive(
53:     bytes calldata zetaTxSenderAddress,
54:     uint256 sourceChainId,
55:     address destinationAddress,
56:     uint256 zetaValue,
57:     bytes calldata message,
58:     bytes32 internalSendHash
59: ) external override onlyTssAddress {
60:     bool success = IERC20(zetaToken).transfer(destinationAddress, zetaValue);
61:     if (!success) revert ZetaTransferError();
62:
63:     if (message.length > 0) {
64:         ZetaReceiver(destinationAddress).onZetaMessage(
65:             ZetaInterfaces.ZetaMessage(zetaTxSenderAddress, sourceChainId, destinationAddress, zetaValue, message)
66:         );
67:     }
68:
69:     emit ZetaReceived(zetaTxSenderAddress, sourceChainId, destinationAddress, zetaValue, message, internalSendHash);
70: }
