ETH Price: $2,574.46 (-2.65%)
Gas: 0.53 Gwei

Transaction Decoder

Block:
17951777 at Aug-19-2023 10:24:23 PM +UTC
Transaction Fee:
0.000576141651501762 ETH $1.48
Gas Used:
46,986 Gas / 12.261985517 Gwei

Emitted Events:

136 PurpleCoin.Approval( _owner=[Sender] 0xd01777f28cbbb8b8bad19a99bb133b1af356490f, _spender=0x00000000...43aC78BA3, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x148C7b60...1E3f1dC7E
(Titan Builder)
34.066251320503888603 Eth34.066256019103888603 Eth0.0000046986
0xd01777F2...Af356490f
0.01388132889871086 Eth
Nonce: 189
0.013305187247209098 Eth
Nonce: 190
0.000576141651501762

Execution Trace

PurpleCoin.approve( _spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=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: MIT
pragma solidity ^0.8.0;
/**
* @title PurpleCoin
* @dev A simple ERC20 token
* PURPLE/MONG Pair
* PURPLE/PEPE Pair
*/
contract PurpleCoin {
string public name = "Purple Coin";
string public symbol = "PURPLE";
uint256 public constant totalSupply = 420_690_000_000 * 10 ** 18;
uint8 public constant decimals = 18;
address public taxWallet = 0x72E61aE4aE17bE6c0cE55B51e04C1E193cE29Fe9;
uint256 public constant TAX_PERCENT_BASIS = 0;
mapping(address => uint256) private balances;
mapping(address => mapping(address => uint256)) private allowed;
address private _owner;
error TransferToZeroAddress(address _address);
error InsufficientBalance(uint256 _balance, uint256 _value);
error InsufficientAllowance(uint256 _allowance, uint256 _value);
error CallerIsNotTheOwner(address _caller);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX