
io.api.etherscan.model.BaseTx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.model;
import io.api.etherscan.util.BasicUtils;
import java.math.BigInteger;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.util.Objects;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 28.10.2018
*/
abstract class BaseTx {
private long blockNumber;
private String timeStamp;
private LocalDateTime _timeStamp;
private String hash;
private String from;
private String to;
private BigInteger value;
private String contractAddress;
private String input;
private BigInteger gas;
private BigInteger gasUsed;
//
public long getBlockNumber() {
return blockNumber;
}
public LocalDateTime getTimeStamp() {
if (_timeStamp == null && !BasicUtils.isEmpty(timeStamp))
_timeStamp = LocalDateTime.ofEpochSecond(Long.parseLong(timeStamp), 0, ZoneOffset.UTC);
return _timeStamp;
}
public String getHash() {
return hash;
}
public String getFrom() {
return from;
}
public String getTo() {
return to;
}
public BigInteger getValue() {
return value;
}
public String getContractAddress() {
return contractAddress;
}
public String getInput() {
return input;
}
public BigInteger getGas() {
return gas;
}
public BigInteger getGasUsed() {
return gasUsed;
}
//
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (!(o instanceof BaseTx))
return false;
BaseTx baseTx = (BaseTx) o;
if (blockNumber != baseTx.blockNumber)
return false;
if (!Objects.equals(timeStamp, baseTx.timeStamp))
return false;
if (!Objects.equals(hash, baseTx.hash))
return false;
if (!Objects.equals(from, baseTx.from))
return false;
if (!Objects.equals(to, baseTx.to))
return false;
return Objects.equals(value, baseTx.value);
}
@Override
public int hashCode() {
int result = (int) (blockNumber ^ (blockNumber >>> 32));
result = 31 * result + (timeStamp != null ? timeStamp.hashCode() : 0);
result = 31 * result + (hash != null ? hash.hashCode() : 0);
result = 31 * result + (from != null ? from.hashCode() : 0);
result = 31 * result + (to != null ? to.hashCode() : 0);
result = 31 * result + (value != null ? value.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "BaseTx{" +
"blockNumber=" + blockNumber +
", timeStamp='" + timeStamp + '\'' +
", hash='" + hash + '\'' +
", from='" + from + '\'' +
", to='" + to + '\'' +
", value=" + value +
", contractAddress='" + contractAddress + '\'' +
", input='" + input + '\'' +
", gas=" + gas +
", gasUsed=" + gasUsed +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy