ETH Price: $2,512.95 (-1.38%)

Transaction Decoder

Block:
20752597 at Sep-15-2024 01:02:11 AM +UTC
Transaction Fee:
0.000391205948561256 ETH $0.98
Gas Used:
255,576 Gas / 1.530683431 Gwei

Emitted Events:

99 AstroLion.Approval( owner=[Receiver] AstroLion, spender=UniswapV2Router02, value=18173759633328516700 )
100 AstroLion.Transfer( from=[Receiver] AstroLion, to=UniswapV2Pair, value=18173759633328516700 )
101 AstroLion.Approval( owner=[Receiver] AstroLion, spender=UniswapV2Router02, value=0 )
102 WETH9.Transfer( src=UniswapV2Pair, dst=UniswapV2Router02, wad=412532409359596 )
103 UniswapV2Pair.Sync( reserve0=12112512350976079779, reserve1=532023643824381261885537 )
104 UniswapV2Pair.Swap( sender=UniswapV2Router02, amount0In=0, amount1In=18173759633328516700, amount0Out=412532409359596, amount1Out=0, to=UniswapV2Router02 )
105 WETH9.Withdrawal( src=UniswapV2Router02, wad=412532409359596 )
106 AstroLion.Transfer( from=[Sender] 0x21a04e507cb0d72bd3e9d87dc1ebd71252e90944, to=0xEf8f38FEcE5f66d0cA4cb7b094d047Fc0F94f35b, value=23330745358418777879 )

Account State Difference:

  Address   Before After State Difference Code
0x21A04E50...252e90944
0.00052679423839164 Eth
Nonce: 212
0.000135588289830384 Eth
Nonce: 213
0.000391205948561256
(Titan Builder)
12.725774464312218635 Eth12.725898444701356355 Eth0.00012398038913772
0x7BD24d43...C9175B890
0xb7de10bf...a516ae560 0.070374304275981126 Eth0.070663262392224963 Eth0.000288958116243837
0xC02aaA39...83C756Cc2 2,935,135.442634844094895269 Eth2,935,135.442222311685535673 Eth0.000412532409359596
0xF9E3a323...80CFAC395 0.000165383823128079 Eth0.000288958116243838 Eth0.000123574293115759

Execution Trace

AstroLion.transfer( recipient=0xEf8f38FEcE5f66d0cA4cb7b094d047Fc0F94f35b, amount=25638181712548107558 ) => ( True )
  • UniswapV2Router02.STATICCALL( )
  • UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=18173759633328516700, amountOutMin=0, path=[0xF9E3a323957B172FDB2dD89c30BBDA980CFAC395, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0xF9E3a323957B172FDB2dD89c30BBDA980CFAC395, deadline=1726362131 )
    • AstroLion.transferFrom( sender=0xF9E3a323957B172FDB2dD89c30BBDA980CFAC395, recipient=0x7BD24d43C0D6531a8Fd3766e121B469C9175B890, amount=18173759633328516700 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • AstroLion.balanceOf( account=0x7BD24d43C0D6531a8Fd3766e121B469C9175B890 ) => ( 532023643824381261885537 )
    • UniswapV2Pair.swap( amount0Out=412532409359596, amount1Out=0, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
      • WETH9.transfer( dst=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, wad=412532409359596 ) => ( True )
      • WETH9.balanceOf( 0x7BD24d43C0D6531a8Fd3766e121B469C9175B890 ) => ( 12112512350976079779 )
      • AstroLion.balanceOf( account=0x7BD24d43C0D6531a8Fd3766e121B469C9175B890 ) => ( 532023643824381261885537 )
      • WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 412532409359596 )
      • WETH9.withdraw( wad=412532409359596 )
        • ETH 0.000412532409359596 UniswapV2Router02.CALL( )
        • ETH 0.000412532409359596 AstroLion.CALL( )
        • ETH 0.000288958116243837 0xb7de10bf2700cd28cdf4fa74bbe9bdfa516ae560.CALL( )
          transfer[AstroLion (ln:911)]
          File 1 of 4: AstroLion
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // $AstroLion | AstroLion v2
          // Designed by @TristenEscolastico / Tristen Esco
          // TG: t.me/AstroLionToken
          // Web: https://astrolion.net
          // Originally Fair Launched, redeployed due to contract bug.
          // Supply re-scaled to 1Q tokens, converted to deflationary.
          // Airdrop completed on a 1:1 Basis with LP provided by FLC.
          // Slippage Recommended: 10%
          // Contract & relaunch handled by https://t.me/FairLaunchCalls
          // Community-owned token
          /**
          * _.---.._ _.---...__
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 2 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 3 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 4 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