diff --git a/contracts/token/ERC20/README.adoc b/contracts/token/ERC20/README.adoc index bf4e040bc92..60ecb4dfcd5 100644 --- a/contracts/token/ERC20/README.adoc +++ b/contracts/token/ERC20/README.adoc @@ -14,16 +14,16 @@ There a few core contracts that implement the behavior specified in the EIP: Additionally there are multiple custom extensions, including: -* designation of addresses that can pause token transfers for all users ({ERC20Pausable}). -* gasless approval of tokens ({ERC20Permit}). -* efficient storage of past token balances to be later queried at any point in time ({ERC20Snapshot}). -* destruction of own tokens ({ERC20Burnable}). -* enforcement of a cap to the total supply when minting tokens ({ERC20Capped}). +* {ERC20Permit}: gasless approval of tokens. +* {ERC20Snapshot}: efficient storage of past token balances to be later queried at any point in time. +* {ERC20Burnable}: destruction of own tokens. +* {ERC20Capped}: enforcement of a cap to the total supply when minting tokens. +* {ERC20Pausable}: ability to pause token transfers. Finally, there are some utilities to interact with ERC20 contracts in various ways. -* {SafeERC20} is a wrapper around the interface that eliminates the need to handle boolean return values. -* {TokenTimelock} can hold tokens for a beneficiary until a specified time. +* {SafeERC20}: a wrapper around the interface that eliminates the need to handle boolean return values. +* {TokenTimelock}: hold tokens for a beneficiary until a specified time. The following related EIPs are in draft status and can be found in the drafts directory. diff --git a/package-lock.json b/package-lock.json index 9d277202a63..37c3df79386 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8945,9 +8945,9 @@ "dev": true }, "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz", + "integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==", "dev": true }, "inquirer": {