ETH Price: $2,959.80 (-0.16%)

Transaction Decoder

Block:
20635135 at Aug-29-2024 03:28:35 PM +UTC
Transaction Fee:
0.000173612533200739 ETH $0.51
Gas Used:
46,373 Gas / 3.743827943 Gwei

Emitted Events:

396 MACA.Approval( owner=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937, spender=0x00000000...43aC78BA3, value=9000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x2CD89BAd...d2B353937
0.057716233011582967 Eth
Nonce: 336
0.057542620478382228 Eth
Nonce: 337
0.000173612533200739
(Titan Builder)
6.502683018201223083 Eth6.502683064574223083 Eth0.000000046373
0xd4f321D7...F21B09013

Execution Trace

MACA.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=9000000000000000000000000000000000000000000000000000000000000000 ) => ( 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
/**
Website: https://macacoin.vip/
Telegram: https://t.me/macaErc
Twitter: https://x.com/macaErc
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX