All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.youchain.protocol.websocket.events.Log Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cc.youchain.protocol.websocket.events;

import java.util.List;

public class Log {
    private String address;
    private String blockHash;
    private String blockNumber;
    private String data;
    private String logIndex;
    private List topics;
    private String transactionHash;
    private String transactionIndex;

    public String getAddress() {
        return address;
    }

    public String getBlockHash() {
        return blockHash;
    }

    public String getBlockNumber() {
        return blockNumber;
    }

    public String getData() {
        return data;
    }

    public String getLogIndex() {
        return logIndex;
    }

    public List getTopics() {
        return topics;
    }

    public String getTransactionHash() {
        return transactionHash;
    }

    public String getTransactionIndex() {
        return transactionIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy