Socket
Socket
Sign inDemoInstall

@blockchainhub/ican

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @blockchainhub/ican

A JavaScript library to validate, format, and convert International Crypto Account Numbers (ICAN) and Basic Crypto Account Numbers (BCAN).


Version published
Maintainers
1
Created

Readme

Source

ican.js

ICAN and BCAN validation, formatting, and conversion in JavaScript.

ICAN.js adheres to the ISO 13616 IBAN Registry technical specification and includes support for Crypto addresses.

Usage

ICAN.js is compatible with both CommonJS and AMD module definitions.

NPM

You can install @blockchainhub/ican from NPM using Yarn, NPM, or another tool.

Yarn

yarn add @blockchainhub/ican

NPM

npm i @blockchainhub/ican

In node.js

var ICAN = require('@blockchainhub/ican');
ICAN.isValid('hello world'); // false
ICAN.isValid('BE68539007547034'); // true

In the browser

You can use a module loader (AMD or CommonJS) or access it directly through the global ICAN object:

<script src="ican.js"></script>
<script>
    // the API is now accessible from the window.ICAN global object
    ICAN.isValid('hello world'); // false
    ICAN.isValid('BE68539007547034'); // true
</script>

With React

Using ICAN.js with React is easy. For example:

import Ican from '@blockchainhub/ican';
Ican.isValid('hello world');
Ican.isValid('BE68539007547034');

API

  • isValid(ican, onlyCrypto)
  • toBCAN(ican, separator, onlyCrypto)
  • fromBCAN(countryCode, bcan)
  • isValidBCAN(countryCode, bcan, onlyCrypto)
  • printFormat(ican, separator)
  • electronicFormat(ican)
  • shortFormat(ican, separator, frontCount, backCount)

Contributions

We welcome contributions in any form. Here's how you can help:

Epigram

「Cryptoni Confidimus」

License

Licensed under the CORE License.

Keywords

FAQs

Last updated on 14 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc