io.api.etherscan.model.utility.BlockParam 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.utility;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 31.10.2018
*/
public class BlockParam {
private long startBlock;
private long endBlock;
public BlockParam(long startBlock, long endBlock) {
this.startBlock = startBlock;
this.endBlock = endBlock;
}
public long start() {
return startBlock;
}
public long end() {
return endBlock;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy