* Update contract pragmas to solidity 0.7 * Remove internal declaration on constructors * Reference SafeMath explicitely * Remove public constructor declaration from abstract contracts * Remove public constructor declaration from non-abstract contracts
12 lines
239 B
Solidity
12 lines
239 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "../utils/Strings.sol";
|
|
|
|
contract StringsMock {
|
|
function fromUint256(uint256 value) public pure returns (string memory) {
|
|
return Strings.toString(value);
|
|
}
|
|
}
|