Skip to content
New issue

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

docs(escrow-contract): clarify expectations of indexer for a thawing/… #59

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Escrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,10 @@ contract Escrow {
/**
* @dev Starts thawing a signer to be removed from the authorized signers list.
* @param signer Address of the signer to remove.
* @notice WARNING: Thawing a signer alerts receivers that signatures from that signer will soon be deemed invalid.
* Receivers without existing signed receipts or RAVs from this signer should treat them as unauthorized.
* Those with existing signed documents from this signer should work towards settling their engagements.
* Once a signer is thawed, they should be viewed as revoked regardless of their revocation status.
* @notice REVERT with error:
* - SignerNotAuthorizedBySender: The provided signer is either not authorized or
* authorized by a different sender
Expand Down