From 78bbaaab52f22f0a070d5295417fef03c9ad17df Mon Sep 17 00:00:00 2001 From: Moe <33616541+mtoub@users.noreply.github.com> Date: Sun, 23 Aug 2026 22:42:31 +0200 Subject: [PATCH] Update ERC-7573: Fix key parameter descriptions in ILockingContract methods --- ERCS/erc-7573.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ERCS/erc-7573.md b/ERCS/erc-7573.md index 4a0a1aff374..03ce74b6817 100644 --- a/ERCS/erc-7573.md +++ b/ERCS/erc-7573.md @@ -67,7 +67,7 @@ function inceptTransfer(uint256 id, int amount, address from, bytes keyHashedSel Called from the buyer of the token to initiate token transfer. Emits a `TransferIncepted` event. The parameter `id` is an identifier of the trade. The parameter `from` is the address of the seller (the address of the buyer is `msg.sender`). The parameter `keyHashedSeller` is a hash of the key that can be used by the seller to (re-)claim the token. -The parameter `keyEncryptedSeller` is an encryption of the key that can be used by the buyer to claim the token. +The parameter `keyEncryptedSeller` is an encryption of the key that can be used by the seller to (re-)claim the token. It is possible to implement the protocol in a way where the hashing method agrees with the encryption method. See below on "encryption". ##### Initiation of Transfer: `confirmTransfer` @@ -78,8 +78,8 @@ function confirmTransfer(uint256 id, int amount, address to, bytes keyHashedBuye Called from the seller of the token to confirm token transfer. Emits a `TransferConfirmed` event. The parameter `id` is an identifier of the trade. The parameter `to` is the address of the buyer (the address of the seller is `msg.sender`). -The parameter `keyHashedBuyer` is a hash of the key that can be used by the buyer to (re-)claim the token. -The parameter `keyEncryptedBuyer` is an encryption of the key that can be used by the buyer to (re-)claim the token. +The parameter `keyHashedBuyer` is a hash of the key that can be used by the buyer to claim the token. +The parameter `keyEncryptedBuyer` is an encryption of the key that can be used by the buyer to claim the token. It is possibly to implement the protocol in a way where the hashing method agrees with the encryption method. See below on "encryption". If the trade specification, that is, the quadruple (`id`, `amount`, `from`, `to`), in a call to `confirmTransfer`