ETH Price: $3,013.36 (+8.15%)
Gas: 5.08 Gwei

Transaction Decoder

Block:
20691529 at Sep-06-2024 12:23:35 PM +UTC
Transaction Fee:
0.00037078595674055 ETH $1.12
Gas Used:
141,850 Gas / 2.613929903 Gwei

Emitted Events:

279 UniswapV3Pool.Burn( owner=[Receiver] NonfungiblePositionManager, tickLower=-137800, tickUpper=-123800, amount=0, amount0=0, amount1=0 )
280 TaxFarming.Transfer( from=UniswapV3Pool, to=[Sender] 0xe9d4f4f93c7c0ebf3bdfed9eff721476ce951e61, value=35255202029726209134853 )
281 WETH9.Transfer( src=UniswapV3Pool, dst=[Sender] 0xe9d4f4f93c7c0ebf3bdfed9eff721476ce951e61, wad=55401151314640778 )
282 UniswapV3Pool.Collect( owner=[Receiver] NonfungiblePositionManager, recipient=[Sender] 0xe9d4f4f93c7c0ebf3bdfed9eff721476ce951e61, tickLower=-137800, tickUpper=-123800, amount0=35255202029726209134853, amount1=55401151314640778 )
283 NonfungiblePositionManager.Collect( tokenId=803244, recipient=[Sender] 0xe9d4f4f93c7c0ebf3bdfed9eff721476ce951e61, amount0=35255202029726209134853, amount1=55401151314640778 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
7.558060744554083403 Eth7.558062762383241753 Eth0.00000201782915835
0x69102aD0...b760edE7F
(Uniswap V3: FARM 4)
0x6dB6FDb5...14172A474
0xC02aaA39...83C756Cc2
0xC36442b4...7Ab11FE88
0xe9d4f4f9...6Ce951E61
1.741898308065792787 Eth
Nonce: 2406
1.741527522109052237 Eth
Nonce: 2407
0.00037078595674055

Execution Trace

NonfungiblePositionManager.collect( params=[{name:tokenId, type:uint256, order:1, indexed:false, value:803244, valueString:803244}, {name:recipient, type:address, order:2, indexed:false, value:0xe9d4f4f93C7C0EBF3BdfED9EFf721476Ce951E61, valueString:0xe9d4f4f93C7C0EBF3BdfED9EFf721476Ce951E61}, {name:amount0Max, type:uint128, order:3, indexed:false, value:340282366920938463463374607431768211455, valueString:340282366920938463463374607431768211455}, {name:amount1Max, type:uint128, order:4, indexed:false, value:340282366920938463463374607431768211455, valueString:340282366920938463463374607431768211455}] ) => ( amount0=35255202029726209134853, amount1=55401151314640778 )
  • UniswapV3Pool.burn( tickLower=-137800, tickUpper=-123800, amount=0 ) => ( amount0=0, amount1=0 )
  • UniswapV3Pool.positions( CE05A2C880B904F783C5058352437C1CFF6F6FEA4D8AC43CFF94ABB95ADE3F82 ) => ( liquidity=731115765255793365033, feeGrowthInside0LastX128=28833862998941425170476083484087500893237, feeGrowthInside1LastX128=55518494576751381050002754993852566, tokensOwed0=35255202029726209134853, tokensOwed1=55401151314640778 )
  • UniswapV3Pool.collect( recipient=0xe9d4f4f93C7C0EBF3BdfED9EFf721476Ce951E61, tickLower=-137800, tickUpper=-123800, amount0Requested=35255202029726209134853, amount1Requested=55401151314640778 ) => ( amount0=35255202029726209134853, amount1=55401151314640778 )
    • TaxFarming.transfer( recipient=0xe9d4f4f93C7C0EBF3BdfED9EFf721476Ce951E61, amount=35255202029726209134853 ) => ( True )
    • WETH9.transfer( dst=0xe9d4f4f93C7C0EBF3BdfED9EFf721476Ce951E61, wad=55401151314640778 ) => ( True )
      File 1 of 4: NonfungiblePositionManager
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: GPL-2.0-or-later
      pragma solidity =0.7.6;
      pragma abicoder v2;
      import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
      import '@uniswap/v3-core/contracts/libraries/FixedPoint128.sol';
      import '@uniswap/v3-core/contracts/libraries/FullMath.sol';
      import './interfaces/INonfungiblePositionManager.sol';
      import './interfaces/INonfungibleTokenPositionDescriptor.sol';
      import './libraries/PositionKey.sol';
      import './libraries/PoolAddress.sol';
      import './base/LiquidityManagement.sol';
      import './base/PeripheryImmutableState.sol';
      import './base/Multicall.sol';
      import './base/ERC721Permit.sol';
      import './base/PeripheryValidation.sol';
      import './base/SelfPermit.sol';
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 4: UniswapV3Pool
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: BUSL-1.1
      pragma solidity =0.7.6;
      import './interfaces/IUniswapV3Pool.sol';
      import './NoDelegateCall.sol';
      import './libraries/LowGasSafeMath.sol';
      import './libraries/SafeCast.sol';
      import './libraries/Tick.sol';
      import './libraries/TickBitmap.sol';
      import './libraries/Position.sol';
      import './libraries/Oracle.sol';
      import './libraries/FullMath.sol';
      import './libraries/FixedPoint128.sol';
      import './libraries/TransferHelper.sol';
      import './libraries/TickMath.sol';
      import './libraries/LiquidityMath.sol';
      import './libraries/SqrtPriceMath.sol';
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 4: TaxFarming
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.20;
      /*
      ┌─────────────────────────────────────────────────────────────────────────┐
      │ │
      │ _______ ______ _ │
      │ |__ __| | ____| (_) │
      │ | | __ ___ _| |__ __ _ _ __ _ __ ___ _ _ __ __ _ │
      │ | |/ _` \\ \\/ / __/ _` | '__| '_ ` _ \\ | | '_ \\ / _` | │
      │ | | (_| |> <| | | (_| | | | | | | | | | | | | | (_| | │
      │ |_|\\__,_/_/\\_\\_| \\__,_|_| |_| |_| |_|(_)_|_| |_|\\__, | │
      │ __/ | │
      │ |___/ │
      │ │
      │ taxfarm.ing │
      │ │
      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