ETH Price: $2,808.41 (+4.01%)

Transaction Decoder

Block:
12267945 at Apr-19-2021 02:52:00 AM +UTC
Transaction Fee:
0.014984697 ETH $42.08
Gas Used:
114,387 Gas / 131 Gwei

Emitted Events:

124 0x91c64c91c66636b20563be96d977496be7ccd536.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000c27b97fdc51ac36bd46595d74d13398e9cb9dbe8, 0x0000000000000000000000005ab1c10e70729d2f607adcbb58a27eb847182485, 0000000000000000000000000000000043ae518adcd34b20a6b9aa3a62b92071 )

Account State Difference:

  Address   Before After State Difference Code
0x91c64c91...bE7CCD536
0xb6DFDdF1...7b1C93197
0.170438941843220236 Eth
Nonce: 102
0.155454244843220236 Eth
Nonce: 103
0.014984697
(Ethermine)
1,082.062452962228833943 Eth1,082.077437659228833943 Eth0.014984697

Execution Trace

0x91c64c91c66636b20563be96d977496be7ccd536.beabacc8( )
  • AccessList.isSet( addr=0xC27b97FDc51AC36BD46595d74D13398E9CB9DbE8 ) => ( False )
    pragma solidity ^0.4.20;
    
    contract AccessList {
        event Added(address _user);
        event Removed(address _user);
    
        mapping(address => bool) public access;
    
        function isSet(address addr) external view returns(bool) {
            return access[addr];
        }
    
        function add() external {
            require(!access[msg.sender]);
            access[msg.sender] = true;
            emit Added(msg.sender);
        }
    
        function remove() external {
            require(access[msg.sender]);
            access[msg.sender] = false;
            emit Removed(msg.sender);
        }
    }