Keeta LogoKeeta Logo@keetanetwork/keetanet-client
    Preparing search index...

    Type Alias AccountKeyAlgorithmHexToType<T>

    AccountKeyAlgorithmHexToType: T extends `0x${infer AlgorithmHex1}${infer AlgorithmHex2}${string}`
        ? `0x${AlgorithmHex1}${AlgorithmHex2}` extends keyof AccountKeyAlgorithmHexReverse
            ? AccountKeyAlgorithmHexReverse[`0x${AlgorithmHex1}${AlgorithmHex2}`]
            : never
        : never

    Type Parameters