123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts (last updated v5.2.0) (utils/CAIP10.sol)
- pragma solidity ^0.8.24;
- import {Bytes} from "./Bytes.sol";
- import {Strings} from "./Strings.sol";
- import {CAIP2} from "./CAIP2.sol";
- /**
- * @dev Helper library to format and parse CAIP-10 identifiers
- *
- * https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-10.md[CAIP-10] defines account identifiers as:
- * account_id: chain_id + ":" + account_address
- * chain_id: [-a-z0-9]{3,8}:[-_a-zA-Z0-9]{1,32} (See {CAIP2})
- * 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. 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;
- using Bytes for bytes;
- /// @dev Return the CAIP-10 identifier for an account on the current (local) chain.
- function local(address account) internal view returns (string memory) {
- return format(CAIP2.local(), account.toChecksumHexString());
- }
- /**
- * @dev Return the CAIP-10 identifier for a given caip2 chain and account.
- *
- * NOTE: This function does not verify that the inputs are properly formatted.
- */
- function format(string memory caip2, string memory account) internal pure returns (string memory) {
- return string.concat(caip2, ":", account);
- }
- /**
- * @dev Parse a CAIP-10 identifier into its components.
- *
- * NOTE: This function does not verify that the CAIP-10 input is properly formatted. The `caip2` return can be
- * parsed using the {CAIP2} library.
- */
- function parse(string memory caip10) internal pure returns (string memory caip2, string memory account) {
- bytes memory buffer = bytes(caip10);
- uint256 pos = buffer.lastIndexOf(":");
- return (string(buffer.slice(0, pos)), string(buffer.slice(pos + 1)));
- }
- }
|