@augumented-finance/protocol-v1
Version:
Augmented Protocol smart contracts
374 lines • 9.21 kB
JavaScript
"use strict";
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseUniswapAdapterFactory = void 0;
const ethers_1 = require("ethers");
class BaseUniswapAdapterFactory {
static connect(address, signerOrProvider) {
return new ethers_1.Contract(address, _abi, signerOrProvider);
}
}
exports.BaseUniswapAdapterFactory = BaseUniswapAdapterFactory;
const _abi = [
{
inputs: [
{
internalType: "contract IFlashLoanAddressProvider",
name: "addressesProvider",
type: "address",
},
{
internalType: "contract IUniswapV2Router02",
name: "uniswapRouter",
type: "address",
},
{
internalType: "address",
name: "wethAddress",
type: "address",
},
],
stateMutability: "nonpayable",
type: "constructor",
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "previousOwner",
type: "address",
},
{
indexed: true,
internalType: "address",
name: "newOwner",
type: "address",
},
],
name: "OwnershipTransferred",
type: "event",
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: "address",
name: "fromAsset",
type: "address",
},
{
indexed: false,
internalType: "address",
name: "toAsset",
type: "address",
},
{
indexed: false,
internalType: "uint256",
name: "fromAmount",
type: "uint256",
},
{
indexed: false,
internalType: "uint256",
name: "receivedAmount",
type: "uint256",
},
],
name: "Swapped",
type: "event",
},
{
inputs: [],
name: "ADDRESSES_PROVIDER",
outputs: [
{
internalType: "contract IFlashLoanAddressProvider",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "FLASHLOAN_PREMIUM_TOTAL",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "LENDING_POOL",
outputs: [
{
internalType: "contract ILendingPool",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "MAX_SLIPPAGE_PERCENT",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "ORACLE",
outputs: [
{
internalType: "contract IPriceOracleGetter",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "UNISWAP_ROUTER",
outputs: [
{
internalType: "contract IUniswapV2Router02",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "USD_ADDRESS",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "WETH_ADDRESS",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [
{
internalType: "address[]",
name: "assets",
type: "address[]",
},
{
internalType: "uint256[]",
name: "amounts",
type: "uint256[]",
},
{
internalType: "uint256[]",
name: "premiums",
type: "uint256[]",
},
{
internalType: "address",
name: "initiator",
type: "address",
},
{
internalType: "bytes",
name: "params",
type: "bytes",
},
],
name: "executeOperation",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [
{
internalType: "uint256",
name: "amountOut",
type: "uint256",
},
{
internalType: "address",
name: "reserveIn",
type: "address",
},
{
internalType: "address",
name: "reserveOut",
type: "address",
},
],
name: "getAmountsIn",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "address[]",
name: "",
type: "address[]",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [
{
internalType: "uint256",
name: "amountIn",
type: "uint256",
},
{
internalType: "address",
name: "reserveIn",
type: "address",
},
{
internalType: "address",
name: "reserveOut",
type: "address",
},
],
name: "getAmountsOut",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "uint256",
name: "",
type: "uint256",
},
{
internalType: "address[]",
name: "",
type: "address[]",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "owner",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "renounceOwnership",
outputs: [],
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [
{
internalType: "contract IERC20",
name: "token",
type: "address",
},
],
name: "rescueTokens",
outputs: [],
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [
{
internalType: "address",
name: "newOwner",
type: "address",
},
],
name: "transferOwnership",
outputs: [],
stateMutability: "nonpayable",
type: "function",
},
];
//# sourceMappingURL=BaseUniswapAdapterFactory.js.map