dapphub / ds-token

A simple and sufficient ERC20 implementation
https://dapp.tools/dappsys/ds-token.html
GNU General Public License v3.0
226 stars 76 forks source link

it's not buildable with solc 0.8.6 #33

Closed yihuang closed 3 years ago

yihuang commented 3 years ago

What is the supported solc version?

0fatih commented 3 years ago

pragma solidity >=0.4.23;

As you can see the contract written in >=0.4.23.

So you can use 0.4.23, which is the best version for this situation. Or you can use a compiler version lower than 0.5.0.

yihuang commented 3 years ago

thanks