ETH Price: $2,533.19 (-1.95%)

Transaction Decoder

Block:
12820065 at Jul-13-2021 05:13:42 PM +UTC
Transaction Fee:
0.009382368 ETH $23.77
Gas Used:
275,952 Gas / 34 Gwei

Emitted Events:

304 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=110284178876847333 )
305 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=110284178876847333 )
306 GamblerShiba.Transfer( from=UniswapV2Pair, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=995016000000000000 )
307 UniswapV2Pair.Sync( reserve0=31376956030796782954, reserve1=321529389238995593573 )
308 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=110284178876847333, amount1In=0, amount0Out=0, amount1Out=1130700000000000000, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e )

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
24.016393365278929146 Eth24.025775733278929146 Eth0.009382368
0xB55F56A1...0a34E36D2
0xC02aaA39...83C756Cc2 6,917,065.650318220125414048 Eth6,917,065.760602399002261381 Eth0.110284178876847333
0xc7Eb46eE...AECbFBDD7
0xDfBd4048...B7E09ab6e
0.928923302664389898 Eth
Nonce: 34
0.809256755787542565 Eth
Nonce: 35
0.119666546876847333

Execution Trace

ETH 0.11197814355003798 UniswapV2Router02.swapETHForExactTokens( amountOut=1130700000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xc7Eb46eEFA9E83022D024c8eDC0de31AECbFBDD7], to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, deadline=1626198189 ) => ( amounts=[110284178876847333, 1130700000000000000] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.110284178876847333 WETH9.CALL( )
  • WETH9.transfer( dst=0xB55F56A14b285cc6adf842B185B1ED30a34E36D2, wad=110284178876847333 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=0, amount1Out=1130700000000000000, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, data=0x )
    • GamblerShiba.transfer( recipient=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, amount=1130700000000000000 ) => ( True )
      • UniswapV2Router02.STATICCALL( )
      • UniswapV2Router02.getAmountsIn( amountOut=1130700000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xc7Eb46eEFA9E83022D024c8eDC0de31AECbFBDD7] ) => ( amounts=[110284178876847333, 1130700000000000000] )
        • UniswapV2Pair.STATICCALL( )
        • WETH9.balanceOf( 0xB55F56A14b285cc6adf842B185B1ED30a34E36D2 ) => ( 31376956030796782954 )
        • GamblerShiba.balanceOf( account=0xB55F56A14b285cc6adf842B185B1ED30a34E36D2 ) => ( 321529389238995593573 )
        • ETH 0.001693964673190647 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e.CALL( )
          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: GamblerShiba
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          /*
              
          Gambler Shiba
          https://t.me/gshiba_official
          Improved fork of EverShare
          More info:
          * Instead of giving equal weights to all users, we give weights based on their purchase token amount and contributed ETH amount
          * If you sell or transfer tokens to other wallets, you lose your ticket, but as soon as you buy again you regain your ticket
          * There's no min eligible amount. Even if you buy 1 token, you have the very little chance to get rewarded.
          */
          // SPDX-License-Identifier: Unlicensed
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX