From eeb6169bf23ab6a6fe696f60f8099824e1e97341 Mon Sep 17 00:00:00 2001 From: Dmytrol <46675332+Dimitrolito@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:34:41 +0200 Subject: [PATCH] typos index.md --- .../developers/tutorials/token-integration-checklist/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/content/developers/tutorials/token-integration-checklist/index.md b/public/content/developers/tutorials/token-integration-checklist/index.md index 58242d9e5b1..166bdd6bcf7 100644 --- a/public/content/developers/tutorials/token-integration-checklist/index.md +++ b/public/content/developers/tutorials/token-integration-checklist/index.md @@ -41,7 +41,7 @@ Slither includes a utility, [slither-check-erc](https://github.com/crytic/slithe - **Transfer and transferFrom return a boolean.** Several tokens do not return a boolean on these functions. As a result, their calls in the contract might fail. - **The name, decimals, and symbol functions are present if used.** These functions are optional in the ERC20 standard and might not be present. -- **Decimals returns a uint8.** Several tokens incorrectly return an uint256. If this is the case, ensure the value returned is below 255. +- **Decimals returns an uint8.** Several tokens incorrectly return an uint256. If this is the case, ensure the value returned is below 255. - **The token mitigates the known [ERC20 race condition](https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729).** The ERC20 standard has a known ERC20 race condition that must be mitigated to prevent attackers from stealing tokens. - **The token is not an ERC777 token and has no external function call in transfer and transferFrom.** External calls in the transfer functions can lead to reentrancies.