Transaction Hash:
Block:
20957616 at Oct-13-2024 03:42:23 PM +UTC
Transaction Fee:
0.000629368534402176 ETH
$2.30
Gas Used:
37,472 Gas / 16.795701708 Gwei
Emitted Events:
537 |
ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000029984d1f9055cafb02dcdd53c54b727902e44975, 0x00000000000000000000000028c6c06298d514db089934071355e5743bf21d60, 0000000000000000000000000000000000000000000000f01ed413d232400000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x29984d1F...902E44975 | (Binance Dep: 0x29984d1F9055cafB02dcDd53C54B727902E44975) |
0.008416233123552249 Eth
Nonce: 87530
|
0.007786864589150073 Eth
Nonce: 87531
| 0.000629368534402176 | |
0x6E2a43be...482b8b050 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.667670473774897752 Eth | 14.667745417774897752 Eth | 0.000074944 |
Execution Trace
ERC1967Proxy.a9059cbb( )

-
ARKM.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=4429440000000000000000 ) => ( True )
transfer[ERC20Upgradeable (ln:759)]
_msgSender[ERC20Upgradeable (ln:760)]
_transfer[ERC20Upgradeable (ln:761)]
_beforeTokenTransfer[ERC20Upgradeable (ln:872)]
Transfer[ERC20Upgradeable (ln:881)]
_afterTokenTransfer[ERC20Upgradeable (ln:882)]
File 1 of 2: ERC1967Proxy
File 2 of 2: ARKM
12345678910111213141516// SPDX-License-Identifier: MITpragma 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: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.sol";
File 2 of 2: ARKM
12345678910111213141516// 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.