Skip to content

Commit

Permalink
Add interface ILBR.
Browse files Browse the repository at this point in the history
  • Loading branch information
LybraFinance committed Aug 12, 2023
1 parent f6c3afb commit 9028510
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions contracts/lybra/interfaces/ILBR.sol
@@ -0,0 +1,9 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.17;

interface ILBR {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function mint(address user, uint256 amount) external returns(bool);
function burn(address user, uint256 amount) external returns(bool);
}

0 comments on commit 9028510

Please sign in to comment.