Transaction Hash:
Block:
14830407 at May-23-2022 03:40:00 PM +UTC
Transaction Fee:
0.001417651749125784 ETH
$3.57
Gas Used:
47,193 Gas / 30.039449688 Gwei
Emitted Events:
457 |
AuroraToken.Approval( owner=[Sender] 0xb681e94cadf59bb445dd30439912e3e8e6c8ea32, spender=0x23Ddd3e3...5809e127f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 17,998.325684418362559983 Eth | 17,998.325755207862559983 Eth | 0.0000707895 | |
0xAaAAAA20...668207961 | |||||
0xb681e94c...8e6C8eA32 |
0.061937775485776573 Eth
Nonce: 20
|
0.060520123736650789 Eth
Nonce: 21
| 0.001417651749125784 |
Execution Trace
AuroraToken.approve( spender=0x23Ddd3e3692d1861Ed57EDE224608875809e127f, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:135)]
_approve[ERC20 (ln:136)]
Approval[ERC20 (ln:295)]
_msgSender[ERC20 (ln:136)]
1234567891011121314151617181920212223242526//SPDX-License-Identifier: CC0-1.0pragma solidity ^0.8.7;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";/// @title AURORA Token/// @author Aurora team/// @notice This contract is managed by Aurora DAO./// @dev This is the official Aurora ERC20 contract.contract AuroraToken is ERC20 {uint8 constant _DECIMALS = 18;uint256 constant _TOTALCAP = 1000000000;constructor(string memory name,string memory symbol,address dao) ERC20(name, symbol) {uint256 _maxSupply = _TOTALCAP * (uint256(10) ** _DECIMALS);_mint(dao, _maxSupply);}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.