1.0.1 • Published 2 years ago

symbol-address-book v1.0.1

Weekly downloads
19
License
-
Repository
github
Last release
2 years ago

Symbol Address Book

Symbol address book module

  1. Installation
  2. Usage

Installation

To install the npm module on your typescript or node project run:

npm install symbol-address-book --save

Usage

import { AddressBook } from 'symbol-address-book';

const addressBook = new AddressBook();

addressBook.addContact({
    address: 'TAVVVJBBCTYJDWC7TQPSVNHK2IPNY6URKK4DTHY',
    name: 'Bob',
    phone: '+34 000000000',
    email: 'bob@nemgroup.software',
    label: 'Executive team',
    notes: 'A very good friend',
    isBlackListed: false,
});

const json = addressBook.toJSON(true);
fs.writeFileSync('./my-path/', json);