/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import BN from "bn.js"; import { EventData, PastEventOptions } from "web3-eth-contract"; export interface IUniswapV3SwapCallbackContract extends Truffle.Contract { "new"( meta?: Truffle.TransactionDetails ): Promise; } type AllEvents = never; export interface IUniswapV3SwapCallbackInstance extends Truffle.ContractInstance { /** * In the implementation you must pay the pool tokens owed for the swap. The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. amount0Delta and amount1Delta can both be 0 if no tokens were swapped. * Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. * @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token0 to the pool. * @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token1 to the pool. * @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call */ uniswapV3SwapCallback: { ( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; methods: { /** * In the implementation you must pay the pool tokens owed for the swap. The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. amount0Delta and amount1Delta can both be 0 if no tokens were swapped. * Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. * @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token0 to the pool. * @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token1 to the pool. * @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call */ uniswapV3SwapCallback: { ( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( amount0Delta: number | BN | string, amount1Delta: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; }; getPastEvents(event: string): Promise; getPastEvents( event: string, options: PastEventOptions, callback: (error: Error, event: EventData) => void ): Promise; getPastEvents(event: string, options: PastEventOptions): Promise; getPastEvents( event: string, callback: (error: Error, event: EventData) => void ): Promise; }