1

我有一份ethers与我进行交易的合同:

const randomSVG = new ethers.Contract(RandomSVG.address, RandomSVGContract.interface, signer)
let tx = await randomSVG.create()

我有一个与此交易有关的事件:

function create() public returns (bytes32 requestId) {
        requestId = requestRandomness(keyHash, fee);
        emit requestedRandomSVG(requestId);
    }

但是,我在交易收据中看不到日志。]( https://docs.ethers.io/v5/api/providers/types/#providers-TransactionReceipt )

// This returns undefined
console.log(tx.logs)
4

1 回答 1

4

当您使用 Ethers.js 创建交易时,您会返回一个可能尚未包含在区块链中的TransactionResponse 。因此它不知道将发出什么日志。

相反,您希望等到交易得到确认并返回TransactionReceipt。此时交易已包含在一个块中,您可以看到发出了哪些事件。

const randomSVG = new ethers.Contract(RandomSVG.address, RandomSVGContract.interface, signer)
const tx = await randomSVG.create()
// Wait until the tx has been confirmed (default is 1 confirmation)
const receipt = await tx.wait()
// Receipt should now contain the logs
console.log(receipt.logs)
于 2021-09-01T12:33:50.550 回答