npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@iota/validators

v1.0.0-beta.30

Published

Collection of guards and validators, useful in IOTA development.

Downloads

11,439

Readme

@iota/validators

Collection of guards and validators, useful in IOTA development.

Installation

Instal using npm:

npm install @iota/validators

or using yarn:

yarn add @iota/validators

API Reference

validators.isAddress(address)

Summary: Validates the checksum of the given address.

| Param | Type | Description | | --- | --- | --- | | address | string | Address with a checksum |

This method takes an address with a checksum and validates that the checksum is correct.

Related methods

To generate a new address with a checksum, use the getNewAddress() method.

Returns: boolean - valid - Whether the checksum is valid
Example

let valid = Validator.isAddress('9FNJWLMBECSQDKHQAGDHDPXBMZFMQIMAFAUIQTDECJVGKJBKHLEBVU9TWCTPRJGYORFDSYENIQKBVSYKW9NSLGS9UW');

validators~isTrits(input)

| Param | Type | | --- | --- | | input | any |

Checks if input is an Int8Array of trit values; -1, 0, 1.

validators~isNullTrits(trits)

| Param | Type | | --- | --- | | trits | Int8Array |

Checks if trits are NULL.

validators~isTrytes(trytes, [length])

| Param | Type | Default | | --- | --- | --- | | trytes | string | | | [length] | string | number | "'1,'" |

Checks if input is correct trytes consisting of [9A-Z]; optionally validate length

validators~isTrytesOfExactLength(trytes, length)

| Param | Type | | --- | --- | | trytes | string | | length | number |

validators~isTrytesOfMaxLength(trytes, length)

| Param | Type | | --- | --- | | trytes | string | | length | number |

validators~isEmpty(hash)

| Param | Type | | --- | --- | | hash | string |

Checks if input contains 9s only.

validators~isHash(hash)

| Param | Type | | --- | --- | | hash | string |

Checks if input is correct hash (81 trytes) or address with checksum (90 trytes)

validators~isInput(address)

| Param | Type | | --- | --- | | address | string |

Checks if input is valid input object. Address can be passed with or without checksum. It does not validate the checksum.

validators~isTag(tag)

| Param | Type | | --- | --- | | tag | string |

Checks that input is valid tag trytes.

validators~isTransfer(transfer)

| Param | Type | | --- | --- | | transfer | Transfer |

Checks if input is valid transfer object.

validators~isUri(uri)

| Param | Type | | --- | --- | | uri | string |

Checks that a given URI is valid

Valid Examples:

  • udp://[2001:db8:a0b:12f0::1]:14265
  • udp://[2001:db8:a0b:12f0::1]
  • udp://8.8.8.8:14265
  • udp://domain.com
  • udp://domain2.com:14265

validators~validate()

Throws:

  • Error error

Runs each validator in sequence, and throws on the first occurence of invalid data. Validators are passed as arguments and executed in given order. You might want place validate() in promise chains before operations that require valid inputs, taking advantage of built-in promise branching.

Example

try {
  validate([
    value, // Given value
    isTrytes, // Validator function
    'Invalid trytes' // Error message
  ])
} catch (err) {
  console.log(err.message) // 'Invalid trytes'
}