ETH Price: $2,519.98 (-1.40%)

Transaction Decoder

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 Code
(Hiveon Pool)
17,998.325684418362559983 Eth17,998.325755207862559983 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//SPDX-License-Identifier: CC0-1.0
pragma 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: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX