Git Product home page Git Product logo

mam.client.js's Introduction

MAM Client JS Library

It is possible to publish transactions to the Tangle that contain only messages, with no value. This introduces many possibilities for data integrity and communication, but comes with the caveat that message-only signatures are not checked. What we introduce is a method of symmetric-key encrypted, signed data that takes advantage of merkle-tree winternitz signatures for extended public key usability, that can be found trivially by those who know to look for it.

This is wrapper library for the WASM/ASM.js output of the IOTA Bindings repository. For a more in depth look at how Masked Authenticated Messaging works please check out the Overview

This is a work in progress. The library is usable, however it is still evolving and may have some breaking changes in the future. These will most likely be minor, in addition to extending functionality.

Getting Started

After downloading the mam.client.js file for your project, importing the library will provide access to the functions described below.

For a simple user experience you are advised to call the init() function to enable to tracking of state in your channels.When calling init() you should also pass in your initialised IOTA library. This will provide access to some extra functionality including attaching, fetching and subscribing.

Note: When using with React-Native use the rn-nodify package to shim the library to ensure it works correctly To import the library, use either require("mam.client.js") or import * as Mam from 'mam.client.js'

Please see example/index.js for a working example

Basic Usage

init

This initialises the state. This will return a state object that tracks the progress of your stream and streams you are following

Input

Mam.init(provider, seed, security)
  1. provider: String Network provider.
  2. seed: String Tryte-encoded seed. Null value generates a random seed
  3. security: Integer Security of the keys used. Null value defaults to 2

Return

  1. Object - Initialised state object to be used in future actions

changeMode

This takes the state object and changes the default stream mode from public to the specified mode and sidekey. There are only three possible modes: public, private, & restricted. If you fail to pass one of these modes it will default to public. This will return a state object that tracks the progress of your stream and streams you are following

Input

Mam.changeMode(state, mode, sidekey)
  1. state: Object Initialised IOTA library with a provider set.
  2. mode: String Intended channel mode. Can be only: public, private or restricted
  3. sideKey: String Tryte-encoded encryption key, any length. Required for restricted mode

Return

  1. Object - Initialised state object to be used in future actions

create

Creates a MAM message payload from a state object, tryte-encoded message and an optional side key. Returns an updated state and the payload for sending.

Input

Mam.create(state, message)
  1. state: Object Initialised IOTA library with a provider set.
  2. message: String Tryte-encoded payload to be encrypted.

Return

  1. state: Object Updated state object to be used with future actions/
  2. payload: String Tryte-encoded payload.
  3. root: String Tryte-encoded root of the payload.
  4. address: String Tryte-encoded address used as an location to attach the payload.

decode

Enables a user to decode a payload

Input

Mam.decode(payload, sideKey, root)
  1. payload: Object Initialised IOTA library with a provider set.
  2. sideKey: String Tryte-encoded encryption key. Null value falls back to default key
  3. root: String Tryte-encoded string used as the address to attach the payload.

Return

  1. state: Object Updated state object to be used with future actions.
  2. payload: String Tryte-encoded payload.
  3. root: String Tryte-encoded root used as an address to attach the payload.

Network Usage

These actions require an initialised IOTA library with a provider to be passed in when calling Mam.init(iota).


attach - async

Attaches a payload to the tangle

Input

await Mam.attach(payload, address)
  1. payload: String Tryte-encoded payload to be attached to the tangle.
  2. address: String Tryte-encoded string returned from the Mam.create() function.

Return

  1. Object Transaction objects that have been attached to the network.

fetch - async

Fetches the stream sequentially from a known root and optional sidekey. This call can be used in two ways: Without a callback will cause the function to read the entire stream before returning. With a callback the application will return data through the callback and finally the nextroot when finished.

See examples: fetchSync.js & fetchAsync.js usage examples.

Input

await Mam.fetch(root, mode, sidekey, callback)
  1. root: String Tryte-encoded string used as the entry point to a stream. NOT the address!
  2. mode: String Stream mode. Can be only: public, private or restricted Null value falls back to public
  3. sideKey: String Tryte-encoded encryption key. Null value falls back to default key
  4. callback: Function Tryte-encoded encryption key. Null value will cause the function to push payload into the messages array.

Return

  1. nextRoot: String Tryte-encoded string pointing to the next root.
  2. messages: Array Array of Tryte-encoded messages from the stream. NOTE: This is only returned when the call is not using a callback

Building the client library

Compiled binaries are included in the repository. Compiling the Rust bindings can require some complex environmental setup to get to work, so if you are unfamiliar just stick to the compiled files.

Frameworks & Node

The below command will build a file called mam.client.js in the lib/ directory.

// Install dependencies
yarn

// Build
yarn build

Browser only

The below command will build mam.web.js in the lib/ directory, that can be included in the browser.

 // Install dependencies
 yarn

 // Build
 yarn web

Usage

You can use the browser version like this

  <script src="mam.web.js"></script>
  <script type="text/javascript">
      var Mam = require('mam.web.js');
  </script>

Building IOTA.js

  1. Install Rust
curl https://sh.rustup.rs -sSf | sh

See https://www.rustup.rs/

  1. Update to nightly
rustup default nightly
rustup update
  1. Install Emscripten
cd
# Get the emsdk repo
git clone https://github.com/juj/emsdk.git

# Enter that directory
cd emsdk

# Fetch the latest registry of available tools.
./emsdk update

# Download and install the latest SDK tools.
./emsdk install latest

# Make the "latest" SDK "active" for the current user. (writes ~/.emscripten file)
./emsdk activate latest

# Activate PATH and other environment variables in the current terminal
source ./emsdk_env.sh

See https://kripken.github.io/emscripten-site/docs/getting_started/downloads.html

  1. Clone latest iota-bindings Repo, then compile content of the emscripten to IOTA.js
git clone [email protected]:iotaledger/iota-bindings.git
cd iota-bindings/emscripten
rustup target install asmjs-unknown-emscripten
cargo build --release --target asmjs-unknown-emscripten
  1. Navigate to iota-bindings/emscripten/target/asmjs-unknown-emscripten/release and look for IOTA.js

  2. Add module.exports = Module; at the very end of IOTA.js file

mam.client.js's People

Contributors

sobolev-alexey avatar th0br0 avatar l3wi avatar mtrabelsi avatar cvarley100 avatar lutostag avatar obany avatar peterwilli avatar samgranger avatar laumair avatar paulhandy avatar

Watchers

Robin Lamberti avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.