Address provides a type safe wrapper for converting between different address formats ands comparing them for equality.

Constructors

  • Parameters

    • address: AddressInput

      A B256 address, public key, EVM address, or Address instance

    Returns Address

Properties

b256Address: string

Methods

  • Compares this the b256Address property to another for direct equality

    Parameters

    • other: Address

      Another address to compare against

    Returns boolean

    The equality of the comparison

  • Returns the b256Address property

    Returns string

  • Wraps the B256 property and returns as an AssetId.

    Returns AssetId

    The B256 property as an AssetId

  • Returns the B256 hash address as a string

    Returns string

    The B256 address

  • Returns the B256 hash address as a Uint8Array

    Returns Uint8Array<ArrayBufferLike>

    The B256 address as a Uint8Array

  • Returns the B256 hash address as a string

    Returns string

    The B256 address

  • Converts and returns the b256Address property as a string

    Returns string

    The b256Address property as a JSON string

  • returns the address checksum as a string

    Returns string

    The b256Address property as a string

  • Wraps the B256 address checksum and returns it as a string

    Returns string

    The B256 address checksum as a string

  • Takes an ambiguous string or address and creates an Address

    Parameters

    Returns Address

    a new Address instance

    Use new Address instead

  • Takes a B256 Address and creates an Address

    Parameters

    • b256Address: string

      A b256 hash

    Returns Address

    A new Address instance

    Use new Address instead

  • Takes a dynamic string or Address and creates an Address

    Parameters

    Returns Address

    A new Address instance

    Error - Unknown address if the format is not recognized

    Use new Address instead

  • Takes an Evm Address and returns back an Address

    Parameters

    • evmAddress: string

    Returns Address

    A new Address instance

    Use new Address instead

  • Takes a Public Key, hashes it, and creates an Address

    Parameters

    • publicKey: string

      A wallets public key

    Returns Address

    A new Address instance

    Use new Address instead

  • Creates an Address with a randomized b256Address property

    Returns Address

    A new Address instance

  • Takes an ambiguous string and attempts to create an Address

    Parameters

    • address: string

      An ambiguous string

    Returns Address

    A new Address instance

    Use new Address instead

  • Takes an ChecksumAddress and validates if it is a valid checksum address.

    Parameters

    • address: string

    Returns boolean

    A boolean instance indicating if the address is valid.

""