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

org.web3j.abi.datatypes.generated.StaticArray1 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.util.List;
import org.web3j.abi.datatypes.StaticArray;
import org.web3j.abi.datatypes.Type;

/**
 * Auto generated code.
 * 

Do not modifiy! *

Please use org.web3j.codegen.AbiTypesGenerator in the * codegen module to update. */ public class StaticArray1 extends StaticArray { public StaticArray1(List values) { super(1, values); } @SafeVarargs public StaticArray1(T... values) { super(1, values); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy