hoodkit
    Preparing search index...

    Variable uniswapV3SwapEventConst

    uniswapV3SwapEvent: {
        inputs: readonly [
            { indexed: true; name: "sender"; type: "address" },
            { indexed: true; name: "recipient"; type: "address" },
            { indexed: false; name: "amount0"; type: "int256" },
            { indexed: false; name: "amount1"; type: "int256" },
            { indexed: false; name: "sqrtPriceX96"; type: "uint160" },
            { indexed: false; name: "liquidity"; type: "uint128" },
            { indexed: false; name: "tick"; type: "int24" },
        ];
        name: "Swap";
        type: "event";
    } = ...

    Uniswap v3 Swap event — the one every pool emits per trade.

    Type Declaration

    • Readonlyinputs: readonly [
          { indexed: true; name: "sender"; type: "address" },
          { indexed: true; name: "recipient"; type: "address" },
          { indexed: false; name: "amount0"; type: "int256" },
          { indexed: false; name: "amount1"; type: "int256" },
          { indexed: false; name: "sqrtPriceX96"; type: "uint160" },
          { indexed: false; name: "liquidity"; type: "uint128" },
          { indexed: false; name: "tick"; type: "int24" },
      ]
    • Readonlyname: "Swap"
    • Readonlytype: "event"