ETH Price: $2,567.51 (+3.62%)

Transaction Decoder

Block:
12592511 at Jun-08-2021 07:24:13 AM +UTC
Transaction Fee:
0.0031679928 ETH $8.13
Gas Used:
188,571 Gas / 16.8 Gwei

Emitted Events:

119 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=60000000000000000 )
120 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=60000000000000000 )
121 ARAID.Transfer( from=UniswapV2Pair, to=0x4b73DfB3f8ae18f8973C3dA8E70f817832DE46D0, value=7052596304399028364562988027 )
122 ARAID.Transfer( from=UniswapV2Pair, to=[Sender] 0x2068d26b9b9a5ea80e9dcb057cebe8612aeb2bbd, value=92691265714958658505684985508 )
123 UniswapV2Pair.Sync( reserve0=711652828914146230594436465926564, reserve1=422595889929833153947 )
124 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=60000000000000000, amount0Out=100751375777128976636614114681, amount1Out=0, to=[Sender] 0x2068d26b9b9a5ea80e9dcb057cebe8612aeb2bbd )

Account State Difference:

  Address   Before After State Difference Code
0x2068d26B...12AEb2BbD
0.0726 Eth
Nonce: 0
0.0094320072 Eth
Nonce: 1
0.0631679928
0x387c291B...a0113caf5
(BeePool)
1,511.836184203964691525 Eth1,511.839352196764691525 Eth0.0031679928
0xBC8eD8C2...1cbD11121
0xC02aaA39...83C756Cc2 6,376,709.695392935758999723 Eth6,376,709.755392935758999723 Eth0.06

Execution Trace

ETH 0.06 UniswapV2Router02.swapExactETHForTokens( amountOutMin=95000829710639203923990022449, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x387c291Bc3274389054E82CE81Dd318a0113caf5], to=0x2068d26B9b9a5EA80e9DCB057cEBE8612AEb2BbD, deadline=1623137970 ) => ( amounts=[60000000000000000, 100751375777128976636614114681] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.06 WETH9.CALL( )
  • WETH9.transfer( dst=0xBC8eD8C2ad89C14e55ee35d933F83E41cbD11121, wad=60000000000000000 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=100751375777128976636614114681, amount1Out=0, to=0x2068d26B9b9a5EA80e9DCB057cEBE8612AEb2BbD, data=0x )
    • ARAID.transfer( recipient=0x2068d26B9b9a5EA80e9DCB057cEBE8612AEb2BbD, amount=100751375777128976636614114681 ) => ( True )
    • ARAID.balanceOf( account=0xBC8eD8C2ad89C14e55ee35d933F83E41cbD11121 ) => ( 711652828914146230594436465926564 )
    • WETH9.balanceOf( 0xBC8eD8C2ad89C14e55ee35d933F83E41cbD11121 ) => ( 422595889929833153947 )
      File 1 of 4: UniswapV2Router02
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity =0.6.6;
      interface IUniswapV2Factory {
      event PairCreated(address indexed token0, address indexed token1, address pair, uint);
      function feeTo() external view returns (address);
      function feeToSetter() external view returns (address);
      function getPair(address tokenA, address tokenB) external view returns (address pair);
      function allPairs(uint) external view returns (address pair);
      function allPairsLength() external view returns (uint);
      function createPair(address tokenA, address tokenB) external returns (address pair);
      function setFeeTo(address) external;
      function setFeeToSetter(address) external;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 4: WETH9
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // Copyright (C) 2015, 2016, 2017 Dapphub
      // This program is free software: you can redistribute it and/or modify
      // it under the terms of the GNU General Public License as published by
      // the Free Software Foundation, either version 3 of the License, or
      // (at your option) any later version.
      // This program is distributed in the hope that it will be useful,
      // but WITHOUT ANY WARRANTY; without even the implied warranty of
      // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
      // GNU General Public License for more details.
      // You should have received a copy of the GNU General Public License
      // along with this program. If not, see <http://www.gnu.org/licenses/>.
      pragma solidity ^0.4.18;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 4: UniswapV2Pair
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // File: contracts/interfaces/IUniswapV2Pair.sol
      pragma solidity >=0.5.0;
      interface IUniswapV2Pair {
      event Approval(address indexed owner, address indexed spender, uint value);
      event Transfer(address indexed from, address indexed to, uint value);
      function name() external pure returns (string memory);
      function symbol() external pure returns (string memory);
      function decimals() external pure returns (uint8);
      function totalSupply() external view returns (uint);
      function balanceOf(address owner) external view returns (uint);
      function allowance(address owner, address spender) external view returns (uint);
      function approve(address spender, uint value) external returns (bool);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 4 of 4: ARAID
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.4;
      interface IERC20 {
      function totalSupply() external view returns (uint256);
      function balanceOf(address account) external view returns (uint256);
      function transfer(address recipient, uint256 amount) external returns (bool);
      function allowance(address owner, address spender) external view returns (uint256);
      function approve(address spender, uint256 amount) external returns (bool);
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
      event Transfer(address indexed from, address indexed to, uint256 value);
      event Approval(address indexed owner, address indexed spender, uint256 value);
      }
      library SafeMath {
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX