Transaction Hash:
Block:
21298892 at Nov-30-2024 07:06:11 AM +UTC
Transaction Fee:
0.00023754712121947 ETH
$0.87
Gas Used:
35,221 Gas / 6.74447407 Gwei
Emitted Events:
148 |
ENSToken.Transfer( from=[Sender] 0xa534d76783253030d3224f062d12dfee9842630f, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=252150753190000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 71.926139449086232445 Eth | 71.926143348704035448 Eth | 0.000003899617803003 | |
0xA534d767...e9842630f | (Binance Dep: 0xA534d76783253030d3224F062d12dFee9842630f) |
0.003 Eth
Nonce: 0
|
0.00276245287878053 Eth
Nonce: 1
| 0.00023754712121947 | |
0xC1836021...2Ce7F9D72 |
Execution Trace
ENSToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=252150753190000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.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.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_setOwner(_msgSender());}/*** @dev Returns the address of the current owner.