ETH Price: $2,457.73 (-4.64%)

Transaction Decoder

Block:
22189021 at Apr-03-2025 02:36:35 PM +UTC
Transaction Fee:
0.000069404362868532 ETH $0.17
Gas Used:
46,598 Gas / 1.489427934 Gwei

Emitted Events:

203 DAWG.Approval( owner=[Sender] 0x333a1213a0bdf8b1ca1ff077b7ddb0ba08c69989, spender=0xC465CC50...42A8e1873, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
5.330613972295395752 Eth5.330618632095395752 Eth0.0000046598
0x2bE135bA...0669AF2A7
0x333A1213...A08c69989
0.312976677270361513 Eth
Nonce: 5
0.312907272907492981 Eth
Nonce: 6
0.000069404362868532

Execution Trace

DAWG.approve( spender=0xC465CC50B7D5A29b9308968f870a4B242A8e1873, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: UNLICENSE
/*
https://www.sec.gov/files/ctf-input-alternative-investment-management-association-3-25-25.pdf
https://t.me/DAWG_ERC
*/
pragma solidity 0.8.28;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX