mirror of
https://github.com/logos-co/staking.git
synced 2025-01-11 03:06:24 +00:00
2e7c5148b4
This commit migrates the repo to our foundry template, which ensures we have consistent tooling across smart contract repositories that are maintained by Vac. This removes all hardhat related files and workflows and replaces them with more perfomant foundry workflows. It also sets up tests, CI and linting.
11 lines
274 B
Solidity
11 lines
274 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.19;
|
|
|
|
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract MockERC20 is ERC20 {
|
|
constructor() ERC20("Mock SNT", "SNT") {
|
|
_mint(msg.sender, 1_000_000_000_000_000_000);
|
|
}
|
|
}
|