Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration Tests fix #2154

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* fix Transaction.getChainId when v=27 must return null [#2133](https://github.com/hyperledger-web3j/web3j/pull/2133)
* Fix android scripts [#2138](https://github.com/hyperledger-web3j/web3j/pull/2138)
* fixed subscription id conflict [#2127](https://github.com/hyperledger/web3j/pull/2127)

### Features

* bump snapshot version to 4.12.4 [#2132](https://github.com/hyperledger-web3j/web3j/pull/2132)
* ENS - Label Hash function added [#2140](https://github.com/hyperledger-web3j/web3j/pull/2140)
* Added Dynamic gas providers [#2142](https://github.com/hyperledger-web3j/web3j/pull/2142)
* Added Linea RPC APIs [#2150](https://github.com/hyperledger-web3j/web3j/pull/2150)
* Added LineaEstimateGas api [#2150](https://github.com/hyperledger-web3j/web3j/pull/2150)


### BREAKING CHANGES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
/** eth_estimateGas. */
public class EthEstimateGas extends Response<String> {
public BigInteger getAmountUsed() {
if (getResult().isEmpty() || getResult() == null) {
System.out.println("Empty/null result for EthEstimateGas");
return BigInteger.ONE;
}

return Numeric.decodeQuantity(getResult());
}
}
49 changes: 16 additions & 33 deletions core/src/main/java/org/web3j/tx/Contract.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.web3j.protocol.core.DefaultBlockParameterName;
import org.web3j.protocol.core.RemoteCall;
import org.web3j.protocol.core.RemoteFunctionCall;
import org.web3j.protocol.core.methods.request.Transaction;
import org.web3j.protocol.core.methods.response.EthGetCode;
import org.web3j.protocol.core.methods.response.Log;
import org.web3j.protocol.core.methods.response.TransactionReceipt;
Expand Down Expand Up @@ -73,6 +72,7 @@ public abstract class Contract extends ManagedTransaction {

public static final String BIN_NOT_PROVIDED = "Bin file was not provided";
public static final String FUNC_DEPLOY = "deploy";

protected final String contractBinary;
protected String contractAddress;
protected ContractGasProvider gasProvider;
Expand Down Expand Up @@ -389,21 +389,22 @@ TransactionReceipt executeTransaction(

TransactionReceipt receipt = null;
try {

if (gasProvider instanceof ContractEIP1559GasProvider) {
ContractEIP1559GasProvider eip1559GasProvider =
(ContractEIP1559GasProvider) gasProvider;

receipt =
sendEIP1559(
eip1559GasProvider.getChainId(),
contractAddress,
data,
weiValue,
eip1559GasProvider.getGasLimit(
getGenericTransaction(data, constructor)),
eip1559GasProvider.getMaxPriorityFeePerGas(),
eip1559GasProvider.getMaxFeePerGas(),
constructor);
if (eip1559GasProvider.isEIP1559Enabled()) {
receipt =
sendEIP1559(
eip1559GasProvider.getChainId(),
contractAddress,
data,
weiValue,
eip1559GasProvider.getGasLimit(funcName),
eip1559GasProvider.getMaxPriorityFeePerGas(funcName),
eip1559GasProvider.getMaxFeePerGas(funcName),
constructor);
}
}

if (receipt == null) {
Expand All @@ -412,8 +413,8 @@ TransactionReceipt executeTransaction(
contractAddress,
data,
weiValue,
gasProvider.getGasPrice(),
gasProvider.getGasLimit(getGenericTransaction(data, constructor)),
gasProvider.getGasPrice(funcName),
gasProvider.getGasLimit(funcName),
constructor);
}
} catch (JsonRpcError error) {
Expand Down Expand Up @@ -447,24 +448,6 @@ TransactionReceipt executeTransaction(
return receipt;
}

protected Transaction getGenericTransaction(String data, boolean constructor) {
if (constructor) {
return Transaction.createContractTransaction(
this.transactionManager.getFromAddress(),
BigInteger.ONE,
gasProvider.getGasPrice(),
data);
} else {
return Transaction.createFunctionCallTransaction(
this.transactionManager.getFromAddress(),
BigInteger.ONE,
gasProvider.getGasPrice(),
gasProvider.getGasLimit(),
contractAddress,
data);
}
}

protected <T extends Type> RemoteFunctionCall<T> executeRemoteCallSingleValueReturn(
Function function) {
return new RemoteFunctionCall<>(function, () -> executeCallSingleValueReturn(function));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
import java.math.BigInteger;

public interface ContractEIP1559GasProvider extends ContractGasProvider {
boolean isEIP1559Enabled();

long getChainId();

BigInteger getMaxFeePerGas();
BigInteger getMaxFeePerGas(String contractFunc);

BigInteger getMaxPriorityFeePerGas();
BigInteger getMaxPriorityFeePerGas(String contractFunc);
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

import java.math.BigInteger;

import org.web3j.protocol.core.methods.request.Transaction;

public interface ContractGasProvider {
BigInteger getGasPrice(String contractFunc);

@Deprecated
BigInteger getGasPrice();

BigInteger getGasLimit(Transaction transaction);
BigInteger getGasLimit(String contractFunc);

@Deprecated
BigInteger getGasLimit();
}
125 changes: 0 additions & 125 deletions core/src/main/java/org/web3j/tx/gas/DynamicEIP1559GasProvider.java

This file was deleted.

83 changes: 0 additions & 83 deletions core/src/main/java/org/web3j/tx/gas/DynamicGasProvider.java

This file was deleted.

Loading
Loading