Transaction Hash:
Block:
21781096 at Feb-05-2025 03:09:59 PM +UTC
Transaction Fee:
0.000140537316509073 ETH
$0.26
Gas Used:
47,193 Gas / 2.977927161 Gwei
Emitted Events:
350 |
CirusToken.Approval( owner=[Sender] 0x90964124d104f027363a6cca577d5414e6900087, spender=0x0bb24C43...602f35972, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.106478175013336187 Eth | 11.106523952223336187 Eth | 0.00004577721 | |
0x90964124...4e6900087 |
0.030375708857550392 Eth
Nonce: 36
|
0.030235171541041319 Eth
Nonce: 37
| 0.000140537316509073 | ||
0xA01199c6...9715c8756 |
Execution Trace
CirusToken.approve( spender=0x0bb24C4302889EA0FB22dfaCBb845e5602f35972, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:128)]
_approve[ERC20 (ln:129)]
Approval[ERC20 (ln:265)]
_msgSender[ERC20 (ln:129)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.4.22 <0.9.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";contract CirusToken is ERC20 {constructor(string memory _name,string memory _symbol,uint256 _supply,address _owner)ERC20(_name, _symbol){_mint(_owner, _supply);}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC20.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide