-
Notifications
You must be signed in to change notification settings - Fork 133
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
Showing
3 changed files
with
20 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: MIT | ||
// solhint-disable-next-line compiler-version | ||
pragma solidity >0.6.0 <0.9.0; | ||
|
||
/** | ||
* @title IFiatToken | ||
* @dev Part of the interface that is used in Circle's referent implementation of the USDC | ||
* Ref: https://github.com/circlefin/stablecoin-evm | ||
* | ||
* This interface is used in the L1USDCGateway, L1OrbitUSDCGateway and L2USDCGateway contracts. | ||
*/ | ||
interface IFiatToken { | ||
function burn(uint256 _amount) external; | ||
function mint(address _to, uint256 _amount) external; | ||
} |