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.
ICAN.js is compatible with both CommonJS and AMD module definitions.
You can install @blockchainhub/ican from NPM using Yarn, NPM, or another tool.
Yarn
yarn add @blockchainhub/ican
NPM
npm i @blockchainhub/ican
var ICAN = require('@blockchainhub/ican');
ICAN.isValid('hello world'); // false
ICAN.isValid('BE68539007547034'); // true
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>
Using ICAN.js with React is easy. For example:
import Ican from '@blockchainhub/ican';
Ican.isValid('hello world');
Ican.isValid('BE68539007547034');
- isValid(ican, onlyCrypto)
- toBCAN(ican, separator, onlyCrypto)
- fromBCAN(countryCode, bcan)
- isValidBCAN(countryCode, bcan, onlyCrypto)
- printFormat(ican, separator)
- electronicFormat(ican)
- shortFormat(ican, separator, frontCount, backCount)
We welcome contributions in any form. Here's how you can help:
- Fork this repository
- Open a pull request
- Support us with some Øres / ₡ores: cb7147879011ea207df5b35a24ca6f0859dcfb145999
- Star this repository
「Cryptoni Confidimus」
Licensed under the CORE License.