ETH Price: $1,872.26 (-1.91%)

Transaction Decoder

Block:
21717503 at Jan-27-2025 05:58:47 PM +UTC
Transaction Fee:
0.000841115034505724 ETH $1.57
Gas Used:
77,927 Gas / 10.793627812 Gwei

Emitted Events:

356 0x0da9d9ecea7235c999764e34f08499ca424c0177.0xef4b96e5b208365900f38219a7dec7af4565f8ff4ce6526970a9d024397f978d( 0xef4b96e5b208365900f38219a7dec7af4565f8ff4ce6526970a9d024397f978d, 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7, 0000000000000000000000005050e08626c499411b5d0e0b5af0e83d3fd82edf, 000000000000000000000000fa103c21ea2df71dfb92b0652f8b1d795e51cdef, 000000000000000000000000000000000000000000000000000000365231aab9 )
357 TetherToken.Transfer( from=0x5050e08626c499411B5D0E0b5AF0E83d3fD82EDF, to=0xFA103c21ea2DF71DFb92B0652F8B1D795e51cdEf, value=233307220665 )

Account State Difference:

  Address   Before After State Difference Code
0x717Cd669...EA80B1eD4
2.919375581857042026 Eth
Nonce: 15416
2.918534466822536302 Eth
Nonce: 15417
0.000841115034505724
(beaverbuild)
7.659255851233109501 Eth7.659257535259035528 Eth0.000001684025926027
0xdAC17F95...13D831ec7

Execution Trace

0x0da9d9ecea7235c999764e34f08499ca424c0177.1cff79cd( )
  • 0xa456fc5d92990bb6a5710bdc738c6ef3001dfb6f.52de3cbd( )
    • TetherToken.transferFrom( _from=0x5050e08626c499411B5D0E0b5AF0E83d3fD82EDF, _to=0xFA103c21ea2DF71DFb92B0652F8B1D795e51cdEf, _value=233307220665 )
      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.17;
      /**
      * @title SafeMath
      * @dev Math operations with safety checks that throw on error
      */
      library SafeMath {
      function mul(uint256 a, uint256 b) internal pure returns (uint256) {
      if (a == 0) {
      return 0;
      }
      uint256 c = a * b;
      assert(c / a == b);
      return c;
      }
      function div(uint256 a, uint256 b) internal pure returns (uint256) {
      // assert(b > 0); // Solidity automatically throws when dividing by 0
      uint256 c = a / b;
      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
      return c;
      }
      function sub(uint256 a, uint256 b) internal pure returns (uint256) {
      assert(b <= a);
      return a - b;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX