Skip to content

Commit

Permalink
👷 Basic ERC4626 Vault
Browse files Browse the repository at this point in the history
  • Loading branch information
Flocqst committed Jun 5, 2024
1 parent 3c83aa2 commit b0973ba
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/KSXVault.sol
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.25;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol";
import { ERC4626 } from "@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol";
import { ERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/// @title Kwenta Example Contract
/// @notice Responsible for counting
/// @notice KSX ERC4626 Vault
/// @author Flocqst ([email protected])
contract KSXVault is ERC4626 {

constructor(address _token) ERC4626(IERC20(_token)) ERC20("KSX Vault", "KSX") {

}
}

0 comments on commit b0973ba

Please sign in to comment.