ETH Price: $3,727.95 (+2.11%)
Gas: 0.26 Gwei

Transaction Decoder

Block:
20957166 at Oct-13-2024 02:11:47 PM +UTC
Transaction Fee:
0.00046658762282582 ETH $1.74
Gas Used:
37,484 Gas / 12.447647605 Gwei

Emitted Events:

464 ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000004ecfda69c9fa85a868316914b296145ec0e6c4f6, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 0000000000000000000000000000000000000000000000b170594b345ad36800 )

Account State Difference:

  Address   Before After State Difference Code
0x4EcFDa69...ec0e6C4F6
(Binance Dep: 0x4EcFDa69C9FA85a868316914B296145ec0e6C4F6)
0.048747150801521492 Eth
Nonce: 625
0.048280563178695672 Eth
Nonce: 626
0.00046658762282582
0x6E2a43be...482b8b050
(beaverbuild)
8.743229915013211933 Eth8.743234319208798881 Eth0.000004404195586948

Execution Trace

ERC1967Proxy.a9059cbb( )
  • ARKM.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=3273169285540000000000 ) => ( True )
    File 1 of 2: ERC1967Proxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";
    import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";
    import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
    import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
    import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
    // Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.
    contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {
    constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import "./IBeacon.sol";
    import "../Proxy.sol";
    import "../ERC1967/ERC1967Upgrade.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ARKM
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
    pragma solidity ^0.8.0;
    import "../utils/ContextUpgradeable.sol";
    import "../proxy/utils/Initializable.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX