weird-erc20
weird-erc20 copied to clipboard
weird erc20 tokens
Add an ERC20 without `name`, `symbol`, `decimals` as described in issue #22 from @Magicking
transfer ownership feature is added with securities.
Add an example of a rebasing token based on the Ampleforth token. Also, add a link to readme.
hey @d-xo I think it would be great to add an example related to ownership to validate that the direction the new control is taking is not a contract, what...
This is a simple implementation of an ERC20 token where user balances and the total supply are constantly increasing. The idea is that these tokens represent votes in a governance...
@d-xo I know this is more related to vulnerabilities, but could the code be updated with the way errors are handled? I can do this
**Add Rebasing tokens with transfer rounding errors (stETH as an example)** During the transfer 1-2 wei rounding errors will occur due to the tokens to shares conversion. Attention should be...
As highlighted by @dangerousfood [here](https://twitter.com/josephdelong/status/1747675651048386705). ERC20 compliant contracts do no need to implement the `name`, `symbol` nor `decimal` functions as specified by the [EIP20](https://github.com/ethereum/ercs/blob/master/ERCS/erc-20.md) since they are optional. This issue...
If you visit the link in the README at https://etherscan.io/address/0x4922a015c4407f87432b179bb209e125432e4a2a#code, you will see the following: > [Token Migration Announcement](https://tether.to/important-changes-are-coming-to-xaut/): The XAUt token contract has migrated to a [new address](https://etherscan.io/address/0x68749665ff8d2d112fa859aa293f07a622782f38). The...
Maybe a good idea to post [this](https://www.coinbase.com/blog/zero-transfer-phishing-part-1-attack-analysis) as well? You can (always) perform a zero token transfer (even from another account) because the allowance or your balance is always >=...