Skip to content

Commit

Permalink
Apply review
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Nov 26, 2024
1 parent 006c45c commit 133adf8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/utils/CAIP10.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import {CAIP2} from "./CAIP2.sol";
* account_address: [-.%a-zA-Z0-9]{1,128}
*
* WARNING: According to [CAIP-10's canonicalization section](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-10.md#canonicalization),
* the implementation remains at the developer's discretion. However, case sensitivity or other transformations
* may introduce ambiguity. For example, when building hashes to identify accounts or data associated to them,
* multiple representations of the same account would derive to different hashes. Consider using {Strings-toChecksumHexString}
* for a consistent format.
* the implementation remains at the developer's discretion. Please note that case variations may introduce ambiguity.
* For example, when building hashes to identify accounts or data associated to them, multiple representations of the
* same account would derive to different hashes. For EVM chains, we recommend using checksummed addresses for the
* "account_address" part. They can be generated onchain using {Strings-toChecksumHexString}.
*/
library CAIP10 {
using Strings for address;
Expand Down

0 comments on commit 133adf8

Please sign in to comment.