-
Notifications
You must be signed in to change notification settings - Fork 184
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
feat(modules): standalone erc20 with own store #3087
base: main
Are you sure you want to change the base?
Conversation
|
Co-authored-by: Kevin Ingersoll <[email protected]>
Co-authored-by: Kevin Ingersoll <[email protected]>
Co-authored-by: Kevin Ingersoll <[email protected]>
Create an
ERC20
token template that is compatible with theMUD
framework. The logic of the token contract should remain near native and still reside within the token contract, while its storage should be refactored to useStore
and be reflected in corresponding tables. Each token created will have it's ownStore
instance.The
OpenZeppelin
implementation ofERC20
will be used as reference but tests shall be written inSolidity
.