2

我正在尝试使用 Web3j 库将交易发送到以太坊区块链,我收到一个错误,我必须使用异步发送它。当我使用 Async 发送它时,我收到一个错误,指出该函数不存在。我正在使用 Android Studio、Java 和 Web3j 库。

调用executeTransactionAsync方法的一部分时web3.abi.datatypes.Function,我收到一条错误消息,提示找不到该方法。我发现这意味着executeTransactionAsyncWeb3j 库中不存在该方法。但是,Web3j 文档说要使用该方法。我正在使用最新版本的 Web3j,即 3.1.1。

如果我删除异步所以方法是executeTransaction,我得到一个错误,需要通过异步发送事务。

有没有办法可以通过 Realm 或其他方式发送此交易?或者也许我使用错了 Web3j,我需要以另一种方式使用它?


发送交易的代码:

public TransactionReceipt approve() throws IOException, TransactionException {
    Function function = new Function("approve", Arrays.<Type>asList(), Collections.<TypeReference<?>>emptyList());
    return executeTransactionAsync (function);
}

Web3j API

4

1 回答 1

3

您需要使用executeTransaction包裹在RemoteCall.

Function function = new Function(...);
RemoteCall<TransactionReceipt> remoteCall = new RemoteCall(() -> {
  //call to executeTransaction
});
TransactionReceipt receipt = remoteCall.send();

您可以使用 web3j 的代码生成工具为您的智能合约创建简单的包装器,让自己的生活更轻松。请参阅web3j 文档的这一部分,了解如何生成代码。生成的类处理远程调用(以及constant函数的本地调用)。您的客户端代码如下所示:

Web3j web3j = Web3j.build(new HttpService());
Credentials credentials = Credentials.create(<YOUR_PRIVATE_KEY>);
SimpleContract contract = SimpleContract.load(<CONTRACT_ADDRESS>, web3j, credentials, BigInteger.valueOf(<GAS_PRICE>), BigInteger.valueOf(<GAS_LIMIT));
RemoteCall<TransactionReceipt> remoteCall = contract.setValue(BigInteger.valueOf(5)); // Call to smart contract setValue(5)
TransactionReceipt receipt = remoteCall.send();

编辑以添加代码生成示例

$ solc --version
solc, the solidity compiler commandline interface
Version: 0.4.19+commit.c4cbbb05.Windows.msvc

$ java -version
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)

$ solc contracts/SimpleContract.sol --bin --abi --optimize -o build/

$ web3j.bat solidity generate build/SimpleContract.bin build/SimpleContract.abi -o ./src -p mypackage

              _      _____ _     _
             | |    |____ (_)   (_)
__      _____| |__      / /_     _   ___
\ \ /\ / / _ \ '_ \     \ \ |   | | / _ \
 \ V  V /  __/ |_) |.___/ / | _ | || (_) |
  \_/\_/ \___|_.__/ \____/| |(_)|_| \___/
                         _/ |
                        |__/

Generating mypackage.SimpleContract ... File written to .\src

注意 - 我正在使用 Cygwin 在 Windows 上运行。因此,web3j.bat用法。

于 2018-04-02T22:36:17.703 回答