Aere Network public source. Everything here can be checked against the live chain (chain id 2800, https://rpc.aere.network). Scope note, stated up front rather than buried: consensus on chain 2800 is classical secp256k1 ECDSA QBFT. The post-quantum work in this repository is at the signature, precompile, account and transport layers. Nothing here makes the consensus post-quantum, and no document in it should be read as claiming so.
12 lines
422 B
Solidity
12 lines
422 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.23;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract MockERC20Lending is ERC20 {
|
|
uint8 private immutable _dec;
|
|
constructor(string memory n, string memory s, uint8 d) ERC20(n, s) { _dec = d; }
|
|
function decimals() public view override returns (uint8) { return _dec; }
|
|
function mint(address to, uint256 amt) external { _mint(to, amt); }
|
|
}
|