0

这是下面的代码片段:-

while (block_no >= 0) {

        List<EthBlock.TransactionResult> txs = web3
                .ethGetBlockByNumber(DefaultBlockParameter.valueOf(BigInteger.valueOf(block_no)), true).send()
                .getBlock().getTransactions();

        txs.forEach(tx -> {
            int i = 0;

            EthBlock.TransactionObject transaction = (EthBlock.TransactionObject) tx.get();
            if ((transaction.getFrom().toLowerCase()).equals(address.toLowerCase())) {
                // System.out.println("***************GETTING INSDIE OF IF LOOP***********");
                ts[i] = new TransactionHistory();
                ts[i].setFrom(transaction.getFrom());
                ts[i].setTo(transaction.getTo());//not getting exact address except contract deployed address
                ts[i].setBlockNumber("" + transaction.getBlockNumber());
                ts[i].setGasPrice("" + transaction.getGasPrice());
                ts[i].setNonce("" + transaction.getNonce());
                history.add(ts[i]);
                i++;

        System.out.println("*******" + "\nValue Getting zero value" + 
        transaction.getvalue() + "\nBlockNumber: "
                        + transaction.getBlockNumber() + "\n From: " + 
        transaction.getFrom() + "\n To:"
                        + transaction.getTo() + "\n Nonce: " + 
        transaction.getNonce() + "\n BlockHash:"
                        + transaction.getBlockHash() + "\n GasPrice:" + 
        transaction.getGasPrice()); 
        //getting '0' instead of real value
        System.out.println(transaction.getValue());
    }

如何使用 java 和 web3js eth 交易对象获取交易价值和发件人地址?

4

1 回答 1

2

你必须听你的智能合约事件。事件作为日志存储在以太坊虚拟机中。Web3j 和您的 Contract 包装器提供了一些方法来读取过去的日志和/或收听新的日志。

如果要读取过去发生的所有事件,可以使用ethGetLogsWeb3j 提供的方法。结果包含一个日志列表,其中包含有关事务的一些属性。对您来说,有趣的字段是主题字段,它是一个字符串列表,如果事件是某个传输事件,则应该包含发送者接收者地址。

YourContract contract // init contract
Web3j web3j // init web3j

EthFilter ethFilter = new EthFilter(DefaultBlockParameterName.EARLIEST,
                    DefaultBlockParameterName.LATEST, contract.getContractAddress());
ethFilter.addSingleTopic(EventEncoder.encode(contract.YOUR_EVENT));
EthLog eventLog = web3j.ethGetLogs(ethFilter).send();

另一种方法是订阅事件日志。因此,您的合同包装器和 web3j 提供了一些可能性。

yourContract.xxxEventFlowable(ethFilter).subscribe(/*doSomthing*/);

或者

web3j.ethLogFlowable(ethFilter).subscribe(/*doSomthing*/);
于 2020-01-02T11:26:11.360 回答