-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have not added the contract itself #21
Comments
Hello @olegabr, Can you send me the reproducable example of the contract that doesn't work? |
@RyuuGan sure! pragma solidity ^0.5.1;
import "openzeppelin-solidity/contracts/token/ERC777/ERC777.sol";
contract ERC777Test is ERC777(
"Test",
"TSX",
new address[](0)
) {
constructor() public {
_mint(
msg.sender,
0x476Bb28Bc6D0e9De04dB5E19912C392F9a76535d,
100000000000 * 10 ** uint256(decimals()),
"",
""
);
}
} |
Should be fixed in |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First, the recommended
npm run build-contracts
command has failed:I've worked it around with:
and it produces file in the build directory, and this file included all but the
ERC777iHomeCredits
contract definition. I've added it manually and verification succeeded.The text was updated successfully, but these errors were encountered: