ERC 777 Standard Not Deploying #404
-
I am exploring new standards because this course has pushed to dig deeper in web3 development but ever since i stumbled on ERC777 none of the examples seems to deploy . even the example on openzzeplin. // contracts/GLDToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC777/ERC777.sol";
contract GLDToken is ERC777 {
constructor(uint256 initialSupply, address[] memory defaultOperators)
public
ERC777("Gold", "GLD", defaultOperators)
{
_mint(msg.sender, initialSupply, "", "");
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
PatrickAlphaC
Jun 21, 2022
Replies: 1 comment
-
Hello! Sorry, I can't dedicate time to debugging non-course related material, but maybe another community member can! Love how you're exploring btw. If you have a specific issue, please feel free to follow the debugging tips we gave! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PatrickAlphaC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! Sorry, I can't dedicate time to debugging non-course related material, but maybe another community member can!
Love how you're exploring btw. If you have a specific issue, please feel free to follow the debugging tips we gave!