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.
In the future this library will be a wrapper around the new implementation of MAM https://github.com/iotaledger/entangled/tree/develop/mam
There is now a pure JavaScript implementation of MAMv0 which is compatible with this library https://github.com/iotaledger/mam.js
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
Add the package to your project with:
npm install @iota/mam
or
yarn add @iota/mamAfter adding the package it will provide access to the functions described below. To import the module simple use one of the following methods, depending on which version of JavaScript you are using.
const Mam = require('@iota/mam');
Mam.init(...);
or
import * as Mam from '@iota/mam';
Mam.init(...);or in the browser using
<script src="./lib/mam.web.min.js"></script>
<script>
Mam.init(...)
</script>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 pass in the provider which is the address of an IRI node. This will provide access to some extra functionality including attaching, fetching and subscribing.
This initialises the state. This will return a state object that tracks the progress of your channel and channels you are following
Mam.init(settings, seed, security)- settings:
ObjectorStringConfiguration object or network provider URL. Configuration object:- provider:
StringNetwork provider URL. - attachToTangle
Functionfunction to override defaultattachToTangleto use another Node to do the PoW or use a PoW service.
- provider:
- seed:
StringOptional tryte-encoded seed. Null value generates a random seed - security:
IntegerOptional security of the keys used. Null value defaults to2
- Object - Initialised state object to be used in future actions
This takes the state object and changes the default channel 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 channel and channels you are following
Mam.changeMode(state, mode, sidekey)- state:
ObjectInitialised IOTA library with a provider set. - mode:
StringIntended channel mode. Can be only:public,privateorrestricted - sideKey:
StringTryte-encoded encryption key,81 tryteslong. Required for restricted mode
- Object - Initialised state object to be used in future actions
This method will return the root for the supplied mam state.
Mam.getRoot(state)- state:
ObjectInitialised IOTA library with a provider set.
- string - The root calculated from the provided state.
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.
Mam.create(state, message)- state:
ObjectInitialised IOTA library with a provider set. - message:
StringTryte-encoded payload to be encrypted. Tryte-encoded payload can be generated by callingasciiToTrytesfrom the@iota/converterand passing a stringified JSON object
- state:
ObjectUpdated state object to be used with future actions. - payload:
StringTryte-encoded payload. - root:
StringTryte-encoded root of the payload. - address:
StringTryte-encoded address used as an location to attach the payload.
Enables a user to decode a payload
Mam.decode(payload, sideKey, root)- payload:
StringTryte-encoded payload. - sideKey:
StringTryte-encoded encryption key. Null value falls back to default key - root:
StringTryte-encoded string used as the address to attach the payload.
- state:
ObjectUpdated state object to be used with future actions. - payload:
StringTryte-encoded payload. - root:
StringTryte-encoded root used as an address to attach the payload.
This method will add a subscription to your state object using the provided channel details.
Mam.subscribe(state, channelRoot, channelMode, channelKey)- state:
ObjectInitialised IOTA library with a provider set. - channelRoot:
StringThe root of the channel to subscribe to. - channelMode:
StringOptional, can one ofpublic,privateorrestrictedNull value falls back to public - channelKey:
StringOptional, The key of the channel to subscribe to.
- Object - Updated state object to be used with future actions.
Listen to a channel for new messages.
Mam.listen(channel, callback)- channel:
ObjectThe channel object to listen to. - callback:
StringCallback called when new messages arrive.
Nothing
Attaches a payload to the Tangle.
await Mam.attach(payload, address, depth, minWeightMagnitude, tag)- payload:
StringTryte-encoded payload to be attached to the Tangle. - root:
StringTryte-encoded string returned from theMam.create()function. - depth:
numberOptional depth at which Random Walk starts. A value of 3 is typically used by wallets, meaning that RW starts 3 milestones back. Null value will set depth to 3 - minWeightMagnitude:
numberOptional minimum number of trailing zeros in transaction hash. This is used byattachToTanglefunction to search for a valid nonce. Currently is 14 on mainnet & spamnnet and 9 on most other devnets. Null value will set minWeightMagnitude to 9 - tag:
StringOptional tag of 0-27 trytes. Null value will set tag to empty string
ArrayTransaction objects that have been attached to the network.
Fetches the channel 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 channel before returning. With a callback the application will return data through the callback and finally the nextroot when finished.
await Mam.fetch(root, mode, sidekey, callback, limit)- root:
StringTryte-encoded string used as the entry point to a channel. NOT the address! - mode:
StringChannel mode. Can one ofpublic,privateorrestrictedNull value falls back to public - sideKey:
StringTryte-encoded encryption key. Null value falls back to default key - callback:
FunctionOptional callback. Null value will cause the function to push payload into the messages array. - limit:
NumberOptional limits the number of items returned, defaults to all.
- nextRoot:
StringTryte-encoded string pointing to the next root. - messages:
ArrayArray of Tryte-encoded messages from the channel.
Fetches a single message from a known root and optional sidekey.
await Mam.fetchSingle(root, mode, sidekey)- root:
StringTryte-encoded string used as the entry point to a channel. NOT the address! - mode:
StringChannel mode. Can one ofpublic,privateorrestrictedNull value falls back to public - sideKey:
StringTryte-encoded encryption key. Null value falls back to default key
- nextRoot:
StringTryte-encoded string pointing to the next root. - payload:
StringTryte-encoded messages from the channel.
Compiled libs 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.
This repo provides wrappers for both Browser and Node environments. The build script discriminates between a WASM.js and ASM.js build methods and returns files that are includable in your project.
The below commands will build a file called mam.client.js in the lib/ directory. You can then include the pacakge in your code using require/import.
// Install dependencies
yarn
// Build a development version lib/mam.client.js
yarn build-node-dev
// Build a production/minified version lib/mam.client.min.js
yarn build-node-prodThe below commands will build a file called mam.web.js in the lib/ directory. You can then include the package in your code using <script src="">
// Install dependencies
yarn
// Build a development version lib/mam.web.js
yarn build-web-dev
// Build a production/minified version lib/mam.web.min.js
yarn build-web-prodTo build all the libraries just run:
yarn dist