ETH Price: $2,660.19 (+1.65%)

Transaction Decoder

Block:
13596452 at Nov-11-2021 06:13:48 PM +UTC
Transaction Fee:
0.022177295160261232 ETH $59.00
Gas Used:
143,152 Gas / 154.921308541 Gwei

Emitted Events:

436 WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=443202748784647392 )
437 WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=443202748784647392 )
438 XRUNE.Sent( operator=UniswapV2Pair, from=UniswapV2Pair, to=[Sender] 0xb5c15e11954ba8d1455e94a1d2d1eb79650bde51, amount=5000000000000000000000, data=0x, operatorData=0x )
439 XRUNE.Transfer( from=UniswapV2Pair, to=[Sender] 0xb5c15e11954ba8d1455e94a1d2d1eb79650bde51, value=5000000000000000000000 )
440 UniswapV2Pair.Sync( reserve0=3915743609761015899646806, reserve1=346495588026355423285 )
441 UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=443202748784647392, amount0Out=5000000000000000000000, amount1Out=0, to=[Sender] 0xb5c15e11954ba8d1455e94a1d2d1eb79650bde51 )

Account State Difference:

  Address   Before After State Difference Code
0x69fa0feE...D3D2Ce71c
(F2Pool Old)
4,272.868611910119773003 Eth4,272.868856409406283915 Eth0.000244499286510912
0x95cFa1f4...93517F3b5
0xb5c15e11...9650bdE51
0.985424104180134488 Eth
Nonce: 14
0.520044060235225864 Eth
Nonce: 15
0.465380043944908624
0xC02aaA39...83C756Cc2 7,336,811.510720349724524474 Eth7,336,811.953923098509171866 Eth0.443202748784647392

Execution Trace

ETH 0.445418762528570628 UniswapV2Router02.swapETHForExactTokens( amountOut=5000000000000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c], to=0xb5c15e11954bA8d1455E94A1D2D1eb79650bdE51, deadline=1636656185 ) => ( amounts=[443202748784647392, 5000000000000000000000] )
  • UniswapV2Pair.STATICCALL( )
  • ETH 0.443202748784647392 WETH9.CALL( )
  • WETH9.transfer( dst=0x95cFa1f48faD82232772d3B1415Ad4393517F3b5, wad=443202748784647392 ) => ( True )
  • UniswapV2Pair.swap( amount0Out=5000000000000000000000, amount1Out=0, to=0xb5c15e11954bA8d1455E94A1D2D1eb79650bdE51, data=0x )
    • XRUNE.transfer( recipient=0xb5c15e11954bA8d1455E94A1D2D1eb79650bdE51, amount=5000000000000000000000 ) => ( True )
      • ERC1820Registry.getInterfaceImplementer( _addr=0x95cFa1f48faD82232772d3B1415Ad4393517F3b5, _interfaceHash=29DDB589B1FB5FC7CF394961C1ADF5F8C6454761ADF795E67FE149F658ABE895 ) => ( 0x0000000000000000000000000000000000000000 )
      • ERC1820Registry.getInterfaceImplementer( _addr=0xb5c15e11954bA8d1455E94A1D2D1eb79650bdE51, _interfaceHash=B281FC8C12954D22544DB45DE3159A39272895B169A852B314F9CC762E44C53B ) => ( 0x0000000000000000000000000000000000000000 )
      • XRUNE.balanceOf( tokenHolder=0x95cFa1f48faD82232772d3B1415Ad4393517F3b5 ) => ( 3915743609761015899646806 )
      • WETH9.balanceOf( 0x95cFa1f48faD82232772d3B1415Ad4393517F3b5 ) => ( 346495588026355423285 )
      • ETH 0.002216013743923236 0xb5c15e11954ba8d1455e94a1d2d1eb79650bde51.CALL( )
        File 1 of 5: UniswapV2Router02
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // File: contracts/uniswapv2/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 2 of 5: 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 5: UniswapV2Pair
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // File: contracts/uniswapv2/interfaces/IUniswapV2Factory.sol
        pragma solidity >=0.5.0;
        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 migrator() 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);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 5: XRUNE
        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;
        import "./ERC677.sol";
        import "./ERC777Permit.sol";
        import "./utils/Ownable.sol";
        import "@openzeppelin/contracts/token/ERC777/ERC777.sol";
        contract XRUNE is ERC777, ERC777Permit, ERC677, Ownable {
        uint public constant ERA_SECONDS = 86400;
        uint public constant MAX_SUPPLY = 1000000000 ether;
        uint public nextEra = 1622433600; // 2021-05-31
        uint public curve = 1024;
        bool public emitting = false;
        address public reserve = address(0);
        event NewEra(uint256 time, uint256 emission);
        constructor(address owner) public ERC777("XRUNE Token", "XRUNE", new address[](0)) ERC777Permit("XRUNE") Ownable(owner) {
        _mint(owner, MAX_SUPPLY / 2, "", "");
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 5: ERC1820Registry
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /* ERC1820 Pseudo-introspection Registry Contract
        * This standard defines a universal registry smart contract where any address (contract or regular account) can
        * register which interface it supports and which smart contract is responsible for its implementation.
        *
        * Written in 2019 by Jordi Baylina and Jacques Dafflon
        *
        * To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to
        * this software to the public domain worldwide. This software is distributed without any warranty.
        *
        * You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
        * <http://creativecommons.org/publicdomain/zero/1.0/>.
        *
        * ███████╗██████╗ ██████╗ ██╗ █████╗ ██████╗ ██████╗
        * ██╔════╝██╔══██╗██╔════╝███║██╔══██╗╚════██╗██╔═████╗
        * █████╗ ██████╔╝██║ ╚██║╚█████╔╝ █████╔╝██║██╔██║
        * ██╔══╝ ██╔══██╗██║ ██║██╔══██╗██╔═══╝ ████╔╝██║
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX