ETH Price: $3,046.05 (+3.19%)

Transaction Decoder

Block:
11841345 at Feb-12-2021 10:49:26 AM +UTC
Transaction Fee:
0.0224222537 ETH $68.30
Gas Used:
171,293 Gas / 130.9 Gwei

Emitted Events:

113 Snow.Transfer( from=[Sender] 0xad7d50d88dcfec80d97892469ad19b23997e6e54, to=UniswapV2Pair, amount=7796354250405259389 )
114 WETH9.Transfer( src=UniswapV2Pair, dst=UniswapV2Pair, wad=429441002860178214 )
115 UniswapV2Pair.Sync( reserve0=728007444040236231426, reserve1=13184871857495254236005 )
116 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=7796354250405259389, amount0Out=429441002860178214, amount1Out=0, to=UniswapV2Pair )
117 PolkastarterToken.Transfer( from=UniswapV2Pair, to=[Sender] 0xad7d50d88dcfec80d97892469ad19b23997e6e54, value=246232892870180389208 )
118 UniswapV2Pair.Sync( reserve0=2974111985012670235217814, reserve1=5171850698817027880291 )
119 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=429441002860178214, amount0Out=246232892870180389208, amount1Out=0, to=[Sender] 0xad7d50d88dcfec80d97892469ad19b23997e6e54 )

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
74.68630467697109283 Eth74.70872693067109283 Eth0.0224222537
0x83e6f1E4...9Fac3D5Aa
0xaD7D50D8...3997E6E54
1.788701981113831991 Eth
Nonce: 102
1.766279727413831991 Eth
Nonce: 103
0.0224222537
0xC02aaA39...83C756Cc2
0xE4f8F3CB...A1a621Df3
0xfe9A29aB...61D8479AE
0xFfA98A09...8a5CD2405

Execution Trace

UniswapV2Router02.swapExactTokensForTokens( amountIn=7796354250405259389, amountOutMin=244769250493444569588, path=[0xfe9A29aB92522D14Fc65880d817214261D8479AE, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa], to=0xaD7D50D88DCfeC80D97892469AD19B23997E6E54, deadline=1613128097 ) => ( amounts=[7796354250405259389, 429441002860178214, 246232892870180389208] )
  • UniswapV2Pair.STATICCALL( )
  • UniswapV2Pair.STATICCALL( )
  • Snow.transferFrom( src=0xaD7D50D88DCfeC80D97892469AD19B23997E6E54, dst=0xE4f8F3CB9b33247789e4984A457bb69A1a621Df3, rawAmount=7796354250405259389 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=429441002860178214, amount1Out=0, to=0xFfA98A091331Df4600F87C9164cD27e8a5CD2405, data=0x )
    • WETH9.transfer( dst=0xFfA98A091331Df4600F87C9164cD27e8a5CD2405, wad=429441002860178214 ) => ( True )
    • WETH9.balanceOf( 0xE4f8F3CB9b33247789e4984A457bb69A1a621Df3 ) => ( 728007444040236231426 )
    • Snow.balanceOf( account=0xE4f8F3CB9b33247789e4984A457bb69A1a621Df3 ) => ( 13184871857495254236005 )
    • UniswapV2Pair.swap( amount0Out=246232892870180389208, amount1Out=0, to=0xaD7D50D88DCfeC80D97892469AD19B23997E6E54, data=0x )
      • PolkastarterToken.transfer( _to=0xaD7D50D88DCfeC80D97892469AD19B23997E6E54, _value=246232892870180389208 ) => ( True )
      • PolkastarterToken.balanceOf( _owner=0xFfA98A091331Df4600F87C9164cD27e8a5CD2405 ) => ( 2974111985012670235217814 )
      • WETH9.balanceOf( 0xFfA98A091331Df4600F87C9164cD27e8a5CD2405 ) => ( 5171850698817027880291 )
        File 1 of 6: 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 6: 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 3 of 6: Snow
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.5.16;
        pragma experimental ABIEncoderV2;
        /**
        _____ _ _ _____ _ _
        / ___| \ | | _ || | | |
        \ `--.| \| | | | || | | |
        `--. \ . ` | | | || |/\| |
        /\__/ / |\ \ \_/ /\ /\ /
        \____/\_| \_/\___/ \/ \/
        SNOW Token
        Forked from COMP and UNI
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 6: 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 5 of 6: 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 6 of 6: PolkastarterToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /**
        *Submitted for verification at Etherscan.io on 2018-09-01
        */
        pragma solidity 0.5.8;
        // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
        /**
        * @title ERC20Basic
        * @dev Simpler version of ERC20 interface
        * @dev see https://github.com/ethereum/EIPs/issues/179
        */
        contract ERC20Basic {
        function totalSupply() public view returns (uint256);
        function balanceOf(address who) public view returns (uint256);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX