ETH Price: $2,779.51 (+4.67%)

Transaction Decoder

Block:
14355073 at Mar-09-2022 09:44:10 PM +UTC
Transaction Fee:
0.00210173258114685 ETH $5.84
Gas Used:
46,329 Gas / 45.36537765 Gwei

Emitted Events:

185 Goldensnitch.Approval( owner=[Sender] 0x1027925dc139722d4c62b17081e4bc632229435a, spender=0x7a250d56...659F2488D, value=10000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x1027925d...32229435A
4.220067718369180128 Eth
Nonce: 1527
4.217965985788033278 Eth
Nonce: 1528
0.00210173258114685
0xC1Ad0C73...7961996E8
(Poolin 4)
3,107.210364070274606731 Eth3,107.210537804024606731 Eth0.00017373375

Execution Trace

Goldensnitch.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=10000000000000000000000000000000000000000000000000000000000 ) => ( 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://goldensnitchtoken.com
Twitter: https://twitter.com/GoldenSnitchEth
Telegram: https://t.me/goldensnitchtoken
*/
pragma solidity ^0.7.4;
// SPDX-License-Identifier: Unlicensed
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(
uint256 a,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX