We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Which would cover everything in https://github.com/crytic/building-secure-contracts/blob/master/development-guidelines/token_integration.md#erc20-tokens, plus other edge cases we are aware of
The idea would be to have helpers to ease the integration of erc20 edge case, like
import "@crytic/properties/contracts/util/erc20/erc20.sol";
Which would include :
all_erc20_standard() returns ( IERC20[] memory)
IERC20
all_erc20_non_standard() returns ( IERC20[] memory)
all_erc20() returns ( IERC20[] memory)
The text was updated successfully, but these errors were encountered:
https://github.com/d-xo/weird-erc20#tokens provides a good list of non-standard ERC20 token that should be integrated
Sorry, something went wrong.
No branches or pull requests
Which would cover everything in https://github.com/crytic/building-secure-contracts/blob/master/development-guidelines/token_integration.md#erc20-tokens, plus other edge cases we are aware of
The idea would be to have helpers to ease the integration of erc20 edge case, like
Which would include :
all_erc20_standard() returns ( IERC20[] memory)
- returns all standards token deployed, and converted toIERC20
object (or a similar name)all_erc20_non_standard() returns ( IERC20[] memory)
- returns all non-standard token deployed, and converted toIERC20
object (or a similar name)all_erc20() returns ( IERC20[] memory)
- returns all tokens deployed, and converted toIERC20
object (or a similar name)The text was updated successfully, but these errors were encountered: