0

我一直在徒劳地寻找几个小时。

假设一个钱包想要通过在 WBNB 合约上批准我的钱包地址(批准函数)来授权 WBNB 费用。

我怎么知道这个钱包已经批准的确切地址是什么?我正在尝试通过 TX 识别确切的地址。

因为在交易中,即使我尝试过滤,我也看不到任何东西。

非常感谢。

4

1 回答 1

0

Approval您可以使用节点 JSON-RPC API 按地址搜索事件:


    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

更多在 IERC20 中

于 2022-02-22T12:03:48.853 回答