ETH Price: $3,744.10 (+4.10%)

Transaction Decoder

Block:
18574469 at Nov-15-2023 02:58:59 AM +UTC
Transaction Fee:
0.001552231124200632 ETH $5.81
Gas Used:
46,569 Gas / 33.331854328 Gwei

Emitted Events:

82 ELONMUSK.Approval( owner=[Sender] 0xbd9a4eaafd01ba320d29609db2f32a67e45413c2, spender=0x5200a0E9...ef3e1847a, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
16.082410347272700937 Eth16.082747170949131537 Eth0.0003368236764306
0xbD9A4eAa...7E45413C2
7.105043314143500923 Eth
Nonce: 1495
7.103491083019300291 Eth
Nonce: 1496
0.001552231124200632
0xE2c2080c...c85892C7e

Execution Trace

ELONMUSK.approve( spender=0x5200a0E9b161bc59fEeCB165FE2592bef3e1847a, 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
/**
Elon Musk - $MUSK
Elon Musk got an upcoming movie, based on "Elon Musk" by Walter Isaacson
Telegram: https://t.me/noteloncoin
Twitter: https://x.com/BusinessInsider/status/1724248889010581903?s=20
Website: https://muskmovie.org
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX