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

org.fisco.bcos.web3j.tx.gas.ContractGasProvider Maven / Gradle / Ivy

package org.fisco.bcos.web3j.tx.gas;

import java.math.BigInteger;

public interface ContractGasProvider {
  BigInteger getGasPrice(String contractFunc);

  @Deprecated
  BigInteger getGasPrice();

  BigInteger getGasLimit(String contractFunc);

  @Deprecated
  BigInteger getGasLimit();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy