-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8040a7
commit 569b658
Showing
5 changed files
with
1,092 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
pragma solidity ^0.8.24; | ||
|
||
import { MockERC20 } from "./MockERC20.sol"; | ||
|
||
contract MockPerp is MockERC20 { | ||
uint256 private _tvl; | ||
function getTVL() public view returns (uint256) { | ||
return _tvl; | ||
} | ||
|
||
function setTVL(uint256 tvl) public { | ||
_tvl = tvl; | ||
} | ||
} |
Oops, something went wrong.