Transaction Hash:
Block:
16554557 at Feb-04-2023 09:34:47 AM +UTC
Transaction Fee:
0.001035619370879428 ETH
$2.87
Gas Used:
47,233 Gas / 21.925758916 Gwei
Emitted Events:
51 |
roboAI.Approval( owner=[Sender] 0xe911ebd07a5d8f917f2365b7d14e30039ad0f964, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4033cb89...d3E5E7505 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 78.485610456636335802 Eth | 78.485752155636335802 Eth | 0.000141699 | |
0xE911ebd0...39AD0f964 |
0.209817757692725931 Eth
Nonce: 1037
|
0.208782138321846503 Eth
Nonce: 1038
| 0.001035619370879428 |
Execution Trace
roboAI.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:162)]
_approve[ERC20 (ln:163)]
Approval[ERC20 (ln:258)]
_msgSender[ERC20 (ln:163)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.15;pragma experimental ABIEncoderV2;////// lib/openzeppelin-contracts/contracts/utils/Context.sol// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)/* pragma solidity ^0.8.15; */abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}////// lib/openzeppelin-contracts/contracts/access/Ownable.sol// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)