@bananapus/suckers-v6 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bananapus/suckers-v6",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,21 +0,0 @@
1
- // SPDX-License-Identifier: MIT
2
- pragma solidity ^0.8.0;
3
-
4
- import {PoolKey} from "@uniswap/v4-core/src/types/PoolKey.sol";
5
-
6
- /// @notice Minimal interface for a Uniswap V4 TWAP oracle hook (e.g. GeomeanOracle).
7
- /// @dev Used to attempt TWAP-based quoting on V4 pools whose hook supports it.
8
- interface IGeomeanOracle {
9
- /// @notice Returns cumulative tick and seconds-per-liquidity values for the given observation timestamps.
10
- /// @param key The pool key to observe.
11
- /// @param secondsAgos An array of seconds-ago offsets (e.g., [30, 0] for a 30-second TWAP).
12
- /// @return tickCumulatives The cumulative tick values at each observation point.
13
- /// @return secondsPerLiquidityCumulativeX128s The cumulative seconds-per-liquidity values.
14
- function observe(
15
- PoolKey calldata key,
16
- uint32[] calldata secondsAgos
17
- )
18
- external
19
- view
20
- returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);
21
- }