Skip to content

Commit c1713e9

Browse files
authored
Remove mention of freezer role from ERC7984Freezable docs (#264)
1 parent 6263837 commit c1713e9

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- `ERC7984Omnibus`: Add an extension of `ERC7984` that exposes new functions for transferring between confidential subaccounts on omnibus wallets. ([#186](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/186))
1616
- `ERC7984ObserverAccess`: Add an extension for ERC7984, which allows each account to add an observer who is given access to their transfer and balance amounts. ([#148](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/148))
1717
- `ERC7984Restricted`: An extension of `ERC7984` that implements user account transfer restrictions. ([#182](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/182))
18-
- `ERC7984Freezable`: Add an extension to `ERC7984`, which allows accounts granted the "freezer" role to freeze and unfreeze tokens. ([#151](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/151))
18+
- `ERC7984Freezable`: Add an extension to `ERC7984` that implements internal functions with the ability to freeze/unfreeze user tokens. ([#151](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/151))
1919
- `ERC7984Rwa`: An extension of `ERC7984`, that supports confidential Real World Assets (RWAs). ([#160](https://github.com/OpenZeppelin/openzeppelin-confidential-contracts/pull/160))
2020

2121
### Utils

contracts/token/ERC7984/extensions/ERC7984Freezable.sol

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ import {ERC7984} from "../ERC7984.sol";
99

1010
/**
1111
* @dev Extension of {ERC7984} that implements a confidential
12-
* freezing mechanism that can be managed by an authorized account with
13-
* {setConfidentialFrozen} functions.
12+
* freezing mechanism that can be managed by calling the internal function
13+
* {_setConfidentialFrozen} by an inheriting contract.
1414
*
15-
* The freezing mechanism provides the guarantee to the contract owner
16-
* (e.g. a DAO or a well-configured multisig) that a specific confidential
15+
* The freezing mechanism provides the guarantee that a specific confidential
1716
* amount of tokens held by an account won't be transferable until those
1817
* tokens are unfrozen.
1918
*

0 commit comments

Comments
 (0)