Skip to content

Commit

Permalink
New About page, added PunkPaper
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Dec 13, 2024
1 parent 44eda91 commit ccd08c0
Show file tree
Hide file tree
Showing 4 changed files with 200 additions and 116 deletions.
15 changes: 15 additions & 0 deletions packages/foundry/contracts/MockUSDC.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.22;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { ERC20Permit } from
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";

contract USDC is ERC20, ERC20Permit {
constructor() ERC20("USDC", "USDC") ERC20Permit("USDC") { }

function decimals() public view virtual override returns (uint8) {
return 6;
}
}
Loading

0 comments on commit ccd08c0

Please sign in to comment.