-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating solidity version of ERC20Mock
- Loading branch information
Fabriziogianni7
committed
Apr 17, 2024
1 parent
cbe97a5
commit 3a0d9ba
Showing
1 changed file
with
34 additions
and
0 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,34 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity 0.8.25; | ||
|
||
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | ||
|
||
contract ERC20Mock is ERC20 { | ||
constructor( | ||
string memory name, | ||
string memory symbol, | ||
address initialAccount, | ||
uint256 initialBalance | ||
) | ||
payable | ||
ERC20(name, symbol) | ||
{ | ||
_mint(initialAccount, initialBalance); | ||
} | ||
|
||
function mint(address account, uint256 amount) public { | ||
_mint(account, amount); | ||
} | ||
|
||
function burn(address account, uint256 amount) public { | ||
_burn(account, amount); | ||
} | ||
|
||
function transferInternal(address from, address to, uint256 value) public { | ||
_transfer(from, to, value); | ||
} | ||
|
||
function approveInternal(address owner, address spender, uint256 value) public { | ||
_approve(owner, spender, value); | ||
} | ||
} |