multiversx-chain-vm 0.23.0

MultiversX VM implementation and tooling
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::types::Address;

use super::TxFunctionName;

#[derive(Clone, Debug)]
pub struct TxLog {
    pub address: Address,
    pub endpoint: TxFunctionName,
    pub topics: Vec<Vec<u8>>,
    pub data: Vec<Vec<u8>>,
}