io.api.etherscan.model.TxToken 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;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 28.10.2018
*/
public class TxToken extends BaseTx {
private long nonce;
private String blockHash;
private String tokenName;
private String tokenSymbol;
private String tokenDecimal;
private int transactionIndex;
private long gasPrice;
private long cumulativeGasUsed;
private long confirmations;
//
public long getNonce() {
return nonce;
}
public String getBlockHash() {
return blockHash;
}
public String getTokenName() {
return tokenName;
}
public String getTokenSymbol() {
return tokenSymbol;
}
public String getTokenDecimal() {
return tokenDecimal;
}
public int getTransactionIndex() {
return transactionIndex;
}
public long getGasPrice() {
return gasPrice;
}
public long getCumulativeGasUsed() {
return cumulativeGasUsed;
}
public long getConfirmations() {
return confirmations;
}
//
@Override
public String toString() {
return "TxToken{" +
"nonce=" + nonce +
", blockHash='" + blockHash + '\'' +
", tokenName='" + tokenName + '\'' +
", tokenSymbol='" + tokenSymbol + '\'' +
", tokenDecimal='" + tokenDecimal + '\'' +
", transactionIndex=" + transactionIndex +
", gasPrice=" + gasPrice +
", cumulativeGasUsed=" + cumulativeGasUsed +
", confirmations=" + confirmations +
"} " + super.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy