-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major bump to comment lines ratio (#73)
* OrderProcessor code comments * BuyOrderIssuer code comments * DirectBuyIssuer code comments * IOrderBridge code comments * OrderFees code comments * Order lifecycle event descriptions * SellOrderProcessor code comments * BridgedERC20 code comments * IMintBurn code comments * TransferRestrictor code comments * events comments * error descriptions and comments * Opinionation
- Loading branch information
1 parent
f1ad904
commit 9e62f88
Showing
14 changed files
with
406 additions
and
138 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
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
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.19; | ||
|
||
/// @notice | ||
/// @notice Interface for token minting and burning | ||
/// @author Dinari (https://github.com/dinaricrypto/issuer-contracts/blob/main/src/IMintBurn.sol) | ||
/// Implemented by BridgedERC20 | ||
interface IMintBurn { | ||
/// @notice Mint new tokens | ||
/// @param to Address to mint tokens to | ||
/// @param value Amount of tokens to mint | ||
function mint(address to, uint256 value) external; | ||
|
||
/// @notice Burn tokens | ||
/// @param value Amount of tokens to burn | ||
function burn(uint256 value) external; | ||
} |
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
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
Oops, something went wrong.