ETH Price: $3,636.85 (-2.62%)

Transaction Decoder

Block:
20736218 at Sep-12-2024 06:07:35 PM +UTC
Transaction Fee:
0.000551878898947992 ETH $2.01
Gas Used:
48,393 Gas / 11.404105944 Gwei

Emitted Events:

202 DxToken.Approval( owner=[Sender] 0x443e69b09f96a343cde8e6f680f2f2cb0c18c9cd, spender=0xDef1C0de...027b25EfF, value=34770357592807677462998 )

Account State Difference:

  Address   Before After State Difference Code
0x443e69B0...b0c18c9CD
0.02270182114245626 Eth
Nonce: 37
0.022149942243508268 Eth
Nonce: 38
0.000551878898947992
(beaverbuild)
14.704770773012889082 Eth14.704770821405889082 Eth0.000000048393
0x973e5269...8d27041A9

Execution Trace

DxToken.approve( _spender=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, _value=34770357592807677462998 ) => ( 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
pragma solidity ^0.4.23;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX