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

org.web3j.abi.datatypes.generated.Int80 Maven / Gradle / Ivy

package org.web3j.abi.datatypes.generated;

import java.math.BigInteger;
import org.web3j.abi.datatypes.Int;

/**
 * Auto generated code.
 * 

Do not modifiy! *

Please use org.web3j.codegen.AbiTypesGenerator in the * codegen module to update. */ public class Int80 extends Int { public static final Int80 DEFAULT = new Int80(BigInteger.ZERO); public Int80(BigInteger value) { super(80, value); } public Int80(long value) { this(BigInteger.valueOf(value)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy