Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
10 lines
192 B
Solidity
10 lines
192 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
contract ERC20ExcessDecimalsMock {
|
|
function decimals() public pure returns (uint256) {
|
|
return type(uint256).max;
|
|
}
|
|
}
|