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-2968]: Ethena pool on Ethereum #457

Merged
merged 20 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);

gleiser-oliveira marked this conversation as resolved.
Show resolved Hide resolved
// VToken Beacon
const vTokenImpl: DeployResult = await deploy("VTokenImpl", {
contract: "VToken",
Expand Down
Loading
Loading