ETH Price: $2,556.69 (-2.97%)

Transaction Decoder

Block:
20735245 at Sep-12-2024 02:52:11 PM +UTC
Transaction Fee:
0.001405104167659996 ETH $3.59
Gas Used:
189,802 Gas / 7.402999798 Gwei

Emitted Events:

217 ChefToken.Transfer( from=[Receiver] 0x4d38ac8f0db33904ab04d97296ec4c549998b880, to=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, value=15430312717318274056772629 )
218 0x4d38ac8f0db33904ab04d97296ec4c549998b880.0x30df0cd28c6e48e6fe24bcab9f36b5052aef24c98ba64b6ef2ba66b659e9a29e( 0x30df0cd28c6e48e6fe24bcab9f36b5052aef24c98ba64b6ef2ba66b659e9a29e, 0x0000000000000000000000005f625a63dad9ac89c0ee58fb96df6d98632da4ed, 0x0000000000000000000000009374176ba0e0e56d1f244b2f4ba32a794bf06e0e, 00000000000000000000000000000000000000000000000000470de4df820000, 000000000000000000000000000000000000000000000000003ff2e795f50000, 0000000000000000000000000000000000000000000cc37eedb2fc67d5acdc15, 000000000000000000000000000000000000000000000000107602f6985ac3ff, 0000000000000000000000000000000000000000000000000f1d42ae00e0c000, 000000000000000000000000000000000000000002f782275a05535ba0e86c83 )

Account State Difference:

  Address   Before After State Difference Code
0x0E4F98Ea...5A48730EE 6.118203125231690338 Eth6.118390625231690338 Eth0.0001875
0x2153F02b...D2b1BB6A8 0.254783520843095261 Eth0.254846020843095261 Eth0.0000625
0x4d38ac8F...49998B880 5.05833015636437388 Eth5.07633015636437388 Eth0.018
0x59ec2e3F...85b201e92 1.787140394756871699 Eth1.787202894756871699 Eth0.0000625
0x5f625A63...8632Da4ed
0x9374176B...94BF06e0e
0.170218847180760261 Eth
Nonce: 175
0.148813743013100265 Eth
Nonce: 176
0.021405104167659996
(beaverbuild)
15.715536729290375372 Eth15.715733690413982182 Eth0.00019696112360681
0xC876eDc5...543bE1EF6 0.0316 Eth0.0321 Eth0.0005
0xcB923455...E59d64311 0.35367215409345008 Eth0.35467215409345008 Eth0.001
0xd3F25e55...244111405 6.118203125231690338 Eth6.118390625231690338 Eth0.0001875

Execution Trace

ETH 0.02 0x4d38ac8f0db33904ab04d97296ec4c549998b880.9d1d2b32( )
  • 0x1ac901c3b53ae3ad34bbeb49b340641df5d4026e.927e897a( )
  • 0x1ac901c3b53ae3ad34bbeb49b340641df5d4026e.d113efc4( )
  • ETH 0.001 ChefFunSplitter.CALL( )
    • ETH 0.0001875 0x0e4f98ea8aec66b0cccb993a31b550e5a48730ee.CALL( )
    • ETH 0.0001875 0xd3f25e553ac0d1d66448415f01ba118244111405.CALL( )
    • ETH 0.0000625 0x59ec2e3fc1f53434c5917da92696f3a85b201e92.CALL( )
    • ETH 0.0000625 0x2153f02b485f17a64383fee2df68bb1d2b1bb6a8.CALL( )
    • ChefToken.CALL( )
    • ETH 0.001 0xcb923455a0ddca73596b691e0eee30ee59d64311.CALL( )
    • ChefToken.balanceOf( account=0x4d38ac8F0Db33904Ab04D97296eC4C549998B880 ) => ( 933619643357296237512837272 )
    • ChefToken.STATICCALL( )
    • ChefToken.balanceOf( account=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e ) => ( 0 )
    • ChefToken.transfer( to=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e, amount=15430312717318274056772629 ) => ( True )
    • ChefToken.balanceOf( account=0x4d38ac8F0Db33904Ab04D97296eC4C549998B880 ) => ( 918189330639977963456064643 )
    • ChefToken.STATICCALL( )
      File 1 of 2: ChefToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity 0.8.26;
      // SPDX-License-Identifier: MIT
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      return msg.sender;
      }
      function _msgData() internal view virtual returns (bytes calldata) {
      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
      return msg.data;
      }
      }
      interface IERC20 {
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 2: ChefFunSplitter
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity 0.8.26;
      // SPDX-License-Identifier: MIT
      /*
      * @dev Provides information about the current execution context, including the
      * sender of the transaction and its data. While these are generally available
      * via msg.sender and msg.data, they should not be accessed in such a direct
      * manner, since when dealing with meta-transactions the account sending and
      * paying for execution may not be the actual sender (as far as an application
      * is concerned).
      *
      * This contract is only required for intermediate, library-like contracts.
      */
      abstract contract Context {
      function _msgSender() internal view virtual returns (address) {
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX