ETH Price: $2,987.17 (+0.41%)

Transaction Decoder

Block:
22708952 at Jun-15-2025 09:08:59 AM +UTC
Transaction Fee:
0.000038466895464263 ETH $0.11
Gas Used:
30,053 Gas / 1.279968571 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x2716140d...609796aB8
0.019757519829560375 Eth
Nonce: 19
0.019719052934096112 Eth
Nonce: 20
0.000038466895464263
(Titan Builder)
14.026317819497144426 Eth14.026347872497144426 Eth0.000030053
0x8290333c...268f3EDD4

Execution Trace

ANKRToken.transfer( _to=0xE34fdB42c94c47E9F4447Bb9Ce49Ff8700E8410c, _value=359351790277340962114 ) => ( 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