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

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

Go to download

Ethereum Application Binary Interface (ABI) for working with smart contracts

There is a newer version: 5.0.0
Show newest version
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 Int256 extends Int { public static final Int256 DEFAULT = new Int256(BigInteger.ZERO); public Int256(BigInteger value) { super(256, value); } public Int256(long value) { this(BigInteger.valueOf(value)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy