From ea0ea85bb87cea4bd514ce5fb092d0b230f899cd Mon Sep 17 00:00:00 2001 From: q1q0 Date: Mon, 26 Jun 2023 02:29:29 -0400 Subject: [PATCH] update test script --- test/mainnet/morpho/morpho-aave-v3.test.ts | 53 +- test/mainnet/morpho/morpho-abi.json | 876 --------------------- 2 files changed, 23 insertions(+), 906 deletions(-) delete mode 100644 test/mainnet/morpho/morpho-abi.json diff --git a/test/mainnet/morpho/morpho-aave-v3.test.ts b/test/mainnet/morpho/morpho-aave-v3.test.ts index 06cd3df4..64c4e7e2 100644 --- a/test/mainnet/morpho/morpho-aave-v3.test.ts +++ b/test/mainnet/morpho/morpho-aave-v3.test.ts @@ -9,7 +9,6 @@ import { ConnectV2MorphoAaveV3__factory, IERC20Minimal__factory } from "../../.. import { parseEther, parseUnits } from "@ethersproject/units"; import { encodeSpells } from "../../../scripts/tests/encodeSpells"; import { dsaMaxValue, tokens } from "../../../scripts/tests/mainnet/tokens"; -import morpho_ABI from './morpho-abi.json' const { ethers } = hre; import type { Signer, Contract } from "ethers"; @@ -38,6 +37,7 @@ describe("Morpho-Aave-v3", function () { let wallet0: Signer, wallet1: Signer; let dsaWallet0: any; + let dsaWallet1: any; let instaConnectorsV2: Contract; let masterSigner: Signer; @@ -76,6 +76,8 @@ describe("Morpho-Aave-v3", function () { it("Should build DSA v2", async function () { dsaWallet0 = await buildDSAv2(wallet0.getAddress()); expect(!!dsaWallet0.address).to.be.true; + dsaWallet1 = await buildDSAv2(wallet0.getAddress()); + expect(!!dsaWallet1.address).to.be.true; }); it("Deposit 1000 ETH into DSA wallet", async function () { @@ -84,6 +86,11 @@ describe("Morpho-Aave-v3", function () { value: parseEther("1000") }); expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(parseEther("1000")); + await wallet0.sendTransaction({ + to: dsaWallet1.address, + value: parseEther("1000") + }); + expect(await ethers.provider.getBalance(dsaWallet1.address)).to.be.gte(parseEther("1000")); }); it("Deposit 5000 USDC into DSA wallet", async function () { @@ -397,49 +404,35 @@ describe("Morpho-Aave-v3", function () { params: [ACC_USDC] }); - await hre.network.provider.request({ - method: "hardhat_impersonateAccount", - params: [user] - }); - - const signer_user = await ethers.getSigner(user); - - const mophor = new ethers.Contract( - "0x33333aea097c193e66081E930c33020272b33333", - morpho_ABI, - ethers.provider - ); - - await mophor.connect(signer_user).approveManager(dsaWallet0.address, true) - - await hre.network.provider.request({ - method: "hardhat_stopImpersonatingAccount", - params: [user] - }); - expect(await token_usdc.connect(masterSigner).balanceOf(dsaWallet0.address)).to.be.gte(parseUnits("500", 6)); const balance = await token_usdc.balanceOf(dsaWallet0.address); - const spells = [ + let spells = [ + { + connector: connectorName, + method: "approveManager", + args: [dsaWallet0.address, true] // 20 USDC + }, + ]; + + let tx = await dsaWallet1.connect(wallet0).cast(...encodeSpells(spells), wallet1.getAddress()); + await tx.wait(); + + spells = [ { connector: connectorName, method: "depositCollateralOnBehalf", - args: [tokens.usdc.address, "20000000", user, "0", "0"] // 20 USDC + args: [tokens.usdc.address, "20000000", dsaWallet1.address, "0", "0"] // 20 USDC }, - // { - // connector: connectorName, - // method: "approveManager", - // args: [user, true] // 20 USDC - // }, { connector: connectorName, method: "withdrawCollateralOnBehalf", - args: [tokens.usdc.address, dsaMaxValue, user, user, "0", "0"] // 20 USDC + args: [tokens.usdc.address, dsaMaxValue, dsaWallet1.address, user, "0", "0"] // 20 USDC } ]; - const tx = await dsaWallet0.connect(wallet0).cast(...encodeSpells(spells), wallet1.getAddress()); + tx = await dsaWallet0.connect(wallet0).cast(...encodeSpells(spells), wallet1.getAddress()); await tx.wait(); diff --git a/test/mainnet/morpho/morpho-abi.json b/test/mainnet/morpho/morpho-abi.json deleted file mode 100644 index 843f6b44..00000000 --- a/test/mainnet/morpho/morpho-abi.json +++ /dev/null @@ -1,876 +0,0 @@ -[ - { "inputs": [], "name": "AddressIsZero", "type": "error" }, - { "inputs": [], "name": "AmountIsZero", "type": "error" }, - { "inputs": [], "name": "AssetIsCollateralOnMorpho", "type": "error" }, - { "inputs": [], "name": "AssetNotCollateralOnPool", "type": "error" }, - { "inputs": [], "name": "BorrowNotPaused", "type": "error" }, - { "inputs": [], "name": "ClaimRewardsPaused", "type": "error" }, - { "inputs": [], "name": "ExceedsMaxBasisPoints", "type": "error" }, - { "inputs": [], "name": "InvalidNonce", "type": "error" }, - { "inputs": [], "name": "InvalidSignatory", "type": "error" }, - { "inputs": [], "name": "InvalidValueS", "type": "error" }, - { "inputs": [], "name": "InvalidValueV", "type": "error" }, - { "inputs": [], "name": "MarketAlreadyCreated", "type": "error" }, - { "inputs": [], "name": "MarketIsDeprecated", "type": "error" }, - { "inputs": [], "name": "MarketIsNotListedOnAave", "type": "error" }, - { "inputs": [], "name": "MarketLtTooLow", "type": "error" }, - { "inputs": [], "name": "MarketNotCreated", "type": "error" }, - { "inputs": [], "name": "SetAsCollateralOnPoolButMarketNotCreated", "type": "error" }, - { "inputs": [], "name": "SignatureExpired", "type": "error" }, - { "inputs": [], "name": "SiloedBorrowMarket", "type": "error" }, - { "inputs": [], "name": "UnsafeCast", "type": "error" }, - { - "anonymous": false, - "inputs": [{ "indexed": false, "internalType": "uint8", "name": "version", "type": "uint8" }], - "name": "Initialized", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" } - ], - "name": "OwnershipTransferStarted", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" } - ], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "DOMAIN_SEPARATOR", - "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }], - "stateMutability": "view", - "type": "function" - }, - { "inputs": [], "name": "acceptOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [], - "name": "addressesProvider", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "manager", "type": "address" }, - { "internalType": "bool", "name": "isAllowed", "type": "bool" } - ], - "name": "approveManager", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "delegator", "type": "address" }, - { "internalType": "address", "name": "manager", "type": "address" }, - { "internalType": "bool", "name": "isAllowed", "type": "bool" }, - { "internalType": "uint256", "name": "nonce", "type": "uint256" }, - { "internalType": "uint256", "name": "deadline", "type": "uint256" }, - { - "components": [ - { "internalType": "uint8", "name": "v", "type": "uint8" }, - { "internalType": "bytes32", "name": "r", "type": "bytes32" }, - { "internalType": "bytes32", "name": "s", "type": "bytes32" } - ], - "internalType": "struct Types.Signature", - "name": "signature", - "type": "tuple" - } - ], - "name": "approveManagerWithSig", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "address", "name": "receiver", "type": "address" }, - { "internalType": "uint256", "name": "maxIterations", "type": "uint256" } - ], - "name": "borrow", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "borrowBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address[]", "name": "assets", "type": "address[]" }, - { "internalType": "address", "name": "onBehalf", "type": "address" } - ], - "name": "claimRewards", - "outputs": [ - { "internalType": "address[]", "name": "rewardTokens", "type": "address[]" }, - { "internalType": "uint256[]", "name": "claimedAmounts", "type": "uint256[]" } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address[]", "name": "underlyings", "type": "address[]" }, - { "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" } - ], - "name": "claimToTreasury", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "collateralBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint16", "name": "reserveFactor", "type": "uint16" }, - { "internalType": "uint16", "name": "p2pIndexCursor", "type": "uint16" } - ], - "name": "createMarket", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "defaultIterations", - "outputs": [ - { - "components": [ - { "internalType": "uint128", "name": "repay", "type": "uint128" }, - { "internalType": "uint128", "name": "withdraw", "type": "uint128" } - ], - "internalType": "struct Types.Iterations", - "name": "", - "type": "tuple" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "eModeCategoryId", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "enum Types.Position", "name": "position", "type": "uint8" } - ], - "name": "getBucketsMask", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "enum Types.Position", "name": "position", "type": "uint8" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "getNext", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" } - ], - "name": "increaseP2PDeltas", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "addressesProvider", "type": "address" }, - { "internalType": "uint8", "name": "eModeCategoryId", "type": "uint8" }, - { "internalType": "address", "name": "positionsManager", "type": "address" }, - { - "components": [ - { "internalType": "uint128", "name": "repay", "type": "uint128" }, - { "internalType": "uint128", "name": "withdraw", "type": "uint128" } - ], - "internalType": "struct Types.Iterations", - "name": "defaultIterations", - "type": "tuple" - } - ], - "name": "initialize", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "isClaimRewardsPaused", - "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "delegator", "type": "address" }, - { "internalType": "address", "name": "manager", "type": "address" } - ], - "name": "isManagedBy", - "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlyingBorrowed", "type": "address" }, - { "internalType": "address", "name": "underlyingCollateral", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" } - ], - "name": "liquidate", - "outputs": [ - { "internalType": "uint256", "name": "", "type": "uint256" }, - { "internalType": "uint256", "name": "", "type": "uint256" } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "user", "type": "address" }], - "name": "liquidityData", - "outputs": [ - { - "components": [ - { "internalType": "uint256", "name": "borrowable", "type": "uint256" }, - { "internalType": "uint256", "name": "maxDebt", "type": "uint256" }, - { "internalType": "uint256", "name": "debt", "type": "uint256" } - ], - "internalType": "struct Types.LiquidityData", - "name": "", - "type": "tuple" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "underlying", "type": "address" }], - "name": "market", - "outputs": [ - { - "components": [ - { - "components": [ - { - "components": [ - { "internalType": "uint128", "name": "poolIndex", "type": "uint128" }, - { "internalType": "uint128", "name": "p2pIndex", "type": "uint128" } - ], - "internalType": "struct Types.MarketSideIndexes", - "name": "supply", - "type": "tuple" - }, - { - "components": [ - { "internalType": "uint128", "name": "poolIndex", "type": "uint128" }, - { "internalType": "uint128", "name": "p2pIndex", "type": "uint128" } - ], - "internalType": "struct Types.MarketSideIndexes", - "name": "borrow", - "type": "tuple" - } - ], - "internalType": "struct Types.Indexes", - "name": "indexes", - "type": "tuple" - }, - { - "components": [ - { - "components": [ - { "internalType": "uint256", "name": "scaledDelta", "type": "uint256" }, - { "internalType": "uint256", "name": "scaledP2PTotal", "type": "uint256" } - ], - "internalType": "struct Types.MarketSideDelta", - "name": "supply", - "type": "tuple" - }, - { - "components": [ - { "internalType": "uint256", "name": "scaledDelta", "type": "uint256" }, - { "internalType": "uint256", "name": "scaledP2PTotal", "type": "uint256" } - ], - "internalType": "struct Types.MarketSideDelta", - "name": "borrow", - "type": "tuple" - } - ], - "internalType": "struct Types.Deltas", - "name": "deltas", - "type": "tuple" - }, - { "internalType": "address", "name": "underlying", "type": "address" }, - { - "components": [ - { "internalType": "bool", "name": "isP2PDisabled", "type": "bool" }, - { "internalType": "bool", "name": "isSupplyPaused", "type": "bool" }, - { "internalType": "bool", "name": "isSupplyCollateralPaused", "type": "bool" }, - { "internalType": "bool", "name": "isBorrowPaused", "type": "bool" }, - { "internalType": "bool", "name": "isWithdrawPaused", "type": "bool" }, - { "internalType": "bool", "name": "isWithdrawCollateralPaused", "type": "bool" }, - { "internalType": "bool", "name": "isRepayPaused", "type": "bool" }, - { "internalType": "bool", "name": "isLiquidateCollateralPaused", "type": "bool" }, - { "internalType": "bool", "name": "isLiquidateBorrowPaused", "type": "bool" }, - { "internalType": "bool", "name": "isDeprecated", "type": "bool" } - ], - "internalType": "struct Types.PauseStatuses", - "name": "pauseStatuses", - "type": "tuple" - }, - { "internalType": "bool", "name": "isCollateral", "type": "bool" }, - { "internalType": "address", "name": "variableDebtToken", "type": "address" }, - { "internalType": "uint32", "name": "lastUpdateTimestamp", "type": "uint32" }, - { "internalType": "uint16", "name": "reserveFactor", "type": "uint16" }, - { "internalType": "uint16", "name": "p2pIndexCursor", "type": "uint16" }, - { "internalType": "address", "name": "aToken", "type": "address" }, - { "internalType": "address", "name": "stableDebtToken", "type": "address" }, - { "internalType": "uint256", "name": "idleSupply", "type": "uint256" } - ], - "internalType": "struct Types.Market", - "name": "", - "type": "tuple" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "marketsCreated", - "outputs": [{ "internalType": "address[]", "name": "", "type": "address[]" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "owner", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pendingOwner", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pool", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "positionsManager", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" } - ], - "name": "repay", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "uint256", "name": "deadline", "type": "uint256" }, - { - "components": [ - { "internalType": "uint8", "name": "v", "type": "uint8" }, - { "internalType": "bytes32", "name": "r", "type": "bytes32" }, - { "internalType": "bytes32", "name": "s", "type": "bytes32" } - ], - "internalType": "struct Types.Signature", - "name": "signature", - "type": "tuple" - } - ], - "name": "repayWithPermit", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "rewardsManager", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "scaledCollateralBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "scaledP2PBorrowBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "scaledP2PSupplyBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "scaledPoolBorrowBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "scaledPoolSupplyBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isCollateral", "type": "bool" } - ], - "name": "setAssetIsCollateral", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isCollateral", "type": "bool" } - ], - "name": "setAssetIsCollateralOnPool", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "components": [ - { "internalType": "uint128", "name": "repay", "type": "uint128" }, - { "internalType": "uint128", "name": "withdraw", "type": "uint128" } - ], - "internalType": "struct Types.Iterations", - "name": "defaultIterations", - "type": "tuple" - } - ], - "name": "setDefaultIterations", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsBorrowPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "bool", "name": "isPaused", "type": "bool" }], - "name": "setIsClaimRewardsPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isDeprecated", "type": "bool" } - ], - "name": "setIsDeprecated", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsLiquidateBorrowPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsLiquidateCollateralPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isP2PDisabled", "type": "bool" } - ], - "name": "setIsP2PDisabled", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "bool", "name": "isPaused", "type": "bool" }], - "name": "setIsPausedForAllMarkets", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsRepayPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsSupplyCollateralPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsSupplyPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsWithdrawCollateralPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "bool", "name": "isPaused", "type": "bool" } - ], - "name": "setIsWithdrawPaused", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint16", "name": "p2pIndexCursor", "type": "uint16" } - ], - "name": "setP2PIndexCursor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "positionsManager", "type": "address" }], - "name": "setPositionsManager", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint16", "name": "newReserveFactor", "type": "uint16" } - ], - "name": "setReserveFactor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "rewardsManager", "type": "address" }], - "name": "setRewardsManager", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "treasuryVault", "type": "address" }], - "name": "setTreasuryVault", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "uint256", "name": "maxIterations", "type": "uint256" } - ], - "name": "supply", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "address", "name": "user", "type": "address" } - ], - "name": "supplyBalance", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" } - ], - "name": "supplyCollateral", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "uint256", "name": "deadline", "type": "uint256" }, - { - "components": [ - { "internalType": "uint8", "name": "v", "type": "uint8" }, - { "internalType": "bytes32", "name": "r", "type": "bytes32" }, - { "internalType": "bytes32", "name": "s", "type": "bytes32" } - ], - "internalType": "struct Types.Signature", - "name": "signature", - "type": "tuple" - } - ], - "name": "supplyCollateralWithPermit", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "uint256", "name": "maxIterations", "type": "uint256" }, - { "internalType": "uint256", "name": "deadline", "type": "uint256" }, - { - "components": [ - { "internalType": "uint8", "name": "v", "type": "uint8" }, - { "internalType": "bytes32", "name": "r", "type": "bytes32" }, - { "internalType": "bytes32", "name": "s", "type": "bytes32" } - ], - "internalType": "struct Types.Signature", - "name": "signature", - "type": "tuple" - } - ], - "name": "supplyWithPermit", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }], - "name": "transferOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "treasuryVault", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "underlying", "type": "address" }], - "name": "updatedIndexes", - "outputs": [ - { - "components": [ - { - "components": [ - { "internalType": "uint256", "name": "poolIndex", "type": "uint256" }, - { "internalType": "uint256", "name": "p2pIndex", "type": "uint256" } - ], - "internalType": "struct Types.MarketSideIndexes256", - "name": "supply", - "type": "tuple" - }, - { - "components": [ - { "internalType": "uint256", "name": "poolIndex", "type": "uint256" }, - { "internalType": "uint256", "name": "p2pIndex", "type": "uint256" } - ], - "internalType": "struct Types.MarketSideIndexes256", - "name": "borrow", - "type": "tuple" - } - ], - "internalType": "struct Types.Indexes256", - "name": "indexes", - "type": "tuple" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "user", "type": "address" }], - "name": "userBorrows", - "outputs": [{ "internalType": "address[]", "name": "", "type": "address[]" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "user", "type": "address" }], - "name": "userCollaterals", - "outputs": [{ "internalType": "address[]", "name": "", "type": "address[]" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "user", "type": "address" }], - "name": "userNonce", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "address", "name": "receiver", "type": "address" }, - { "internalType": "uint256", "name": "maxIterations", "type": "uint256" } - ], - "name": "withdraw", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "underlying", "type": "address" }, - { "internalType": "uint256", "name": "amount", "type": "uint256" }, - { "internalType": "address", "name": "onBehalf", "type": "address" }, - { "internalType": "address", "name": "receiver", "type": "address" } - ], - "name": "withdrawCollateral", - "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], - "stateMutability": "nonpayable", - "type": "function" - } -]