PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/viem/accounts/utils

Просмотр файла: publicKeyToAddress.ts

import type { Address } from 'abitype'

import type { ErrorType } from '../../errors/utils.js'
import type { Hex } from '../../types/misc.js'
import {
  type ChecksumAddressErrorType,
  checksumAddress,
} from '../../utils/address/getAddress.js'
import {
  type Keccak256ErrorType,
  keccak256,
} from '../../utils/hash/keccak256.js'

export type PublicKeyToAddressErrorType =
  | ChecksumAddressErrorType
  | Keccak256ErrorType
  | ErrorType

/**
 * @description Converts an ECDSA public key to an address.
 *
 * @param publicKey The public key to convert.
 *
 * @returns The address.
 */
export function publicKeyToAddress(publicKey: Hex): Address {
  const address = keccak256(`0x${publicKey.substring(4)}`).substring(26)
  return checksumAddress(`0x${address}`) as Address
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!