Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VEN-2698]: Ethena pool on Ethereum #457

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
13 changes: 13 additions & 0 deletions contracts/test/Mocks/MockERC4626Token.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import { MockToken } from "./MockToken.sol";

contract MockERC4626Token is MockToken {
constructor(string memory name_, string memory symbol_, uint8 decimals_) MockToken(name_, symbol_, decimals_) {}

function convertToAssets(uint256 shares) external pure returns (uint256) {
return shares;
}
}
2 changes: 2 additions & 0 deletions deploy/009-deploy-vtokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
hre,
);

console.log("Is Time based", isTimeBased);

// VToken Beacon
const vTokenImpl: DeployResult = await deploy("VTokenImpl", {
contract: "VToken",
Expand Down
Loading
Loading