/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { AbiItem, Callback, CeloTxObject, Contract, EventLog, } from "@celo/connect"; import { EventEmitter } from "events"; import Web3 from "web3"; import { EventOptions } from "./types"; export interface IUniswapV3SwapCallback extends Contract { clone(): IUniswapV3SwapCallback; methods: { uniswapV3SwapCallback( amount0Delta: number | string, amount1Delta: number | string, data: string | number[] ): CeloTxObject; }; events: { allEvents: ( options?: EventOptions, cb?: Callback ) => EventEmitter; }; } export const ABI: AbiItem[] = [ { inputs: [ { internalType: "int256", name: "amount0Delta", type: "int256" }, { internalType: "int256", name: "amount1Delta", type: "int256" }, { internalType: "bytes", name: "data", type: "bytes" }, ], name: "uniswapV3SwapCallback", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; export function newIUniswapV3SwapCallback( web3: Web3, address: string ): IUniswapV3SwapCallback { return new web3.eth.Contract(ABI, address) as any; }