ETH Price: $2,651.46 (-5.85%)

Transaction Decoder

Block:
15272531 at Aug-03-2022 11:55:04 PM +UTC
Transaction Fee:
0.002802972206801 ETH $7.43
Gas Used:
183,250 Gas / 15.295891988 Gwei

Emitted Events:

163 Proxy.Received( value=999790000000000000, sender=[Receiver] 0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43, data=0x )

Account State Difference:

  Address   Before After State Difference Code
0x08d4cb4F...96e68c21D 0.0643826 Eth0.09757927 Eth0.03319667
(Poolin 3)
3,108.17426169525113095 Eth3,108.17462819525113095 Eth0.0003665
0x2b0D7E25...83CadeCc1 8.10007638 Eth10.00821766 Eth1.90814128
0x3AdE0E94...35eA879dD 0.03418967225373169 Eth0.15217398225373169 Eth0.11798431
0x5de1c098...da8CDdcC5 1.155903172407761588 Eth2.155693172407761588 Eth0.99979
0x72BEa66F...4EA2C4a8c 0.469774300175013 Eth0.526568080175013 Eth0.05679378
0x74Ea7C55...340097BDd 0.000000004497590294 Eth0.059007704497590294 Eth0.0590077
0x7830c87C...31FA86F43
(Coinbase: Deposit)
92.462173064239586768 Eth
Nonce: 16967
92.459370092032785768 Eth
Nonce: 16968
0.002802972206801
0x79e88163...C79E0c045 0.009530285646153928 Eth0.209530285646153928 Eth0.2
0x8D130D06...945B1b89a 0.000490276224414897 Eth0.030981016224414897 Eth0.03049074
0x8eb65bEe...26db1e02D 0.043906672376796285 Eth0.103288452376796285 Eth0.05938178
0x910d52b9...334C1d2a3 0.07463102 Eth0.10571773 Eth0.03108671
0x9369670A...1e8b45cCb 0.004249140472177015 Eth0.007236610472177015 Eth0.00298747
0xA9D1e08C...FB81d3E43
(Coinbase 10)
639.341738562952301805 Eth635.518017632952301805 Eth3.82372093
0xd0495a85...df26b7C7E 0.001322385203475 Eth0.031335225203475 Eth0.03001284
0xe7dBDCE7...94DB87FEA 0.01 Eth0.28 Eth0.27
0xEa00aB2D...49BeD600a 0.0034048869034444 Eth0.0060289469034444 Eth0.00262406
0xF796488D...2Ebccc6Ae 3.78861838561590432 Eth3.81084197561590432 Eth0.02222359

Execution Trace

Coinbase 10.1a1da075( )
  • ETH 0.00262406 0xea00ab2d584764d3e56404e9388e12e49bed600a.CALL( )
  • ETH 0.00298747 0x9369670aa71619845e3f2677b811add1e8b45ccb.CALL( )
  • ETH 0.02222359 0xf796488d9d535e25d6a089ce3bbd2912ebccc6ae.CALL( )
  • ETH 0.03001284 0xd0495a854cdd3cd831e9a6ea39156a6df26b7c7e.CALL( )
  • ETH 0.03049074 0x8d130d06b443d32b7b8258e96185186945b1b89a.CALL( )
  • ETH 0.03108671 0x910d52b9b21127fed5592b9ab13f9e5334c1d2a3.CALL( )
  • ETH 0.03319667 0x08d4cb4f79054e469e8a4629afd174f96e68c21d.CALL( )
  • ETH 0.05679378 0x72bea66fe3a3f95cc993be0ad28fde84ea2c4a8c.CALL( )
  • ETH 0.0590077 0x74ea7c55d90800ba578b6df4e256896340097bdd.CALL( )
  • ETH 0.05938178 0x8eb65bee0b22e4b1a1c91d36b253db826db1e02d.CALL( )
  • ETH 0.11798431 0x3ade0e9420b2755cf409b5044ab365835ea879dd.CALL( )
  • ETH 0.2 0x79e88163d209c01439a1f17a3bcd349c79e0c045.CALL( )
  • ETH 0.27 0xe7dbdce78bddfd449672f60f12b50a494db87fea.CALL( )
  • ETH 0.99979 Proxy.CALL( )
  • ETH 1.90814128 0x2b0d7e25ab6e2bd1f62b6435b16347783cadecc1.CALL( )
    pragma solidity ^0.6.12;
    
    // Copyright (C) 2018  Argent Labs Ltd. <https://argent.xyz>
    
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    
    // This program is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU General Public License for more details.
    
    // You should have received a copy of the GNU General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // SPDX-License-Identifier: GPL-3.0-only
    
    /**
     * @title Proxy
     * @notice Basic proxy that delegates all calls to a fixed implementing contract.
     * The implementing contract cannot be upgraded.
     * @author Julien Niset - <[email protected]>
     */
    contract Proxy {
    
        address implementation;
    
        event Received(uint indexed value, address indexed sender, bytes data);
    
        constructor(address _implementation) public {
            implementation = _implementation;
        }
    
        fallback() external payable {
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let target := sload(0)
                calldatacopy(0, 0, calldatasize())
                let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
                returndatacopy(0, 0, returndatasize())
                switch result
                case 0 {revert(0, returndatasize())}
                default {return (0, returndatasize())}
            }
        }
    
        receive() external payable {
            emit Received(msg.value, msg.sender, msg.data);
        }
    }