ETH Price: $3,746.44 (+0.19%)

Transaction Decoder

Block:
22708778 at Jun-15-2025 08:33:35 AM +UTC
Transaction Fee:
0.000291161186485897 ETH $1.09
Gas Used:
34,853 Gas / 8.353977749 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x1F55688C...d7adD979d
0.002598368973907256 Eth
Nonce: 6342
0.002307207787421359 Eth
Nonce: 6343
0.000291161186485897
(Titan Builder)
13.944264159633871301 Eth13.944542983633871301 Eth0.000278824
0x8290333c...268f3EDD4

Execution Trace

ANKRToken.transfer( _to=0xdE2fACa4BBC0aca08fF04D387c39B6f6325bf82A, _value=328714270000000000000000 ) => ( 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) {
// Gas optimization: this is cheaper than asserting 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX