A Polywrap URI. Some examples of valid URIs are: wrap://https/domain.com wrap://ipfs/QmHASH wrap://wrapscan.io/polywrap/wrap@1.2.3 wrap://ens/sub.domain.eth wrap://file/directory/file.txt

Some example short-hand URIs (utilizing inference): ipfs/QmHASH -> wrap://ipfs/QmHASH https://domain.com -> wrap://https/domain.com

URI inference is performed in the following ways:

  1. If wrap:// is missing, it will be added.
  2. If non-wrap schema exists, it becomes the authority.

Breaking down the various parts of the URI, as it applies to the URI standard: wrap:// - URI Scheme: differentiates Polywrap URIs. wrapscan.io/ - URI Authority: allows the Polywrap URI resolution algorithm to determine an authoritative URI resolver. polywrap/wrap@1.2.3 - URI Path: tells the Authority where the Wrapper resides.

Hierarchy

  • Uri

Constructors

Properties

Accessors

Methods

Constructors

  • Construct a Uri instance from a wrap URI string

    Parameters

    • uri: string

      a string representation of a wrap URI

    Returns Uri

    Remarks

    Throws if URI string is invalid

Properties

_config: UriConfig

Accessors

Methods

  • Construct a Uri instance from a Uri or a wrap URI string

    Parameters

    • uri: string | Uri

      a Uri instance or a string representation of a wrap URI

    Returns Uri

    Remarks

    Throws if URI string is invalid

  • Check if a value is an instance of Uri

    Parameters

    • value: unknown

      value to check

    Returns value is Uri

    true if value is a Uri instance

  • Test if a URI string is a valid wrap URI

    Parameters

    • uri: string

      URI string

    • Optional parsed: UriConfig

    Returns boolean

    true if input string is a valid wrap URI

Generated using TypeDoc