mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 19:26:33 +00:00
10 lines
191 B
Solidity
10 lines
191 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract ERC20ExcessDecimalsMock {
|
|
function decimals() public pure returns (uint256) {
|
|
return type(uint256).max;
|
|
}
|
|
}
|