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

cc.youchain.tx.gas.ContractGasProvider Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cc.youchain.tx.gas;

import java.math.BigInteger;

public interface ContractGasProvider {
    BigInteger getGasPrice(String contractFunc);

    @Deprecated
    BigInteger getGasPrice();

    BigInteger getGasLimit(String contractFunc);

    @Deprecated
    BigInteger getGasLimit();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy