Transaction Hash:
Block:
20151562 at Jun-23-2024 02:57:35 AM +UTC
Transaction Fee:
0.000065891512267546 ETH
$0.20
Gas Used:
26,773 Gas / 2.461118002 Gwei
Emitted Events:
35 |
HARAMBE.Approval( owner=[Sender] 0xc024aa9a6cd38a34ed2ae8645b4b86ddeafd484c, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x48CC65e7...85ac1E429
Miner
| 0.094086200453881684 Eth | 0.094099586953881684 Eth | 0.0000133865 | ||
0xC024AA9a...dEaFD484c |
0.032703783497836925 Eth
Nonce: 35
|
0.032637891985569379 Eth
Nonce: 36
| 0.000065891512267546 |
Execution Trace
HARAMBE.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:356)]
_approve[ERC20 (ln:357)]
Approval[ERC20 (ln:538)]
_msgSender[ERC20 (ln:357)]
1234567891011121314151617181920212223242526// Sources flattened with hardhat v2.7.0 https://hardhat.org// File @openzeppelin/contracts/utils/Context.sol@v4.4.0// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;