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.
After downloading and importing the mam.client.js
it 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.
Please see a working example
This initialises the state. This will return a state object that tracks the progress of your stream and streams you are following
Mam.init(provider, seed, security)
- provider:
String
Network provider. - seed:
String
Optional tryte-encoded seed. Null value generates a random seed - security:
Integer
Optional 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 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
Mam.changeMode(state, mode, sidekey)
- state:
Object
Initialised IOTA library with a provider set. - mode:
String
Intended channel mode. Can be only:public
,private
orrestricted
- sideKey:
String
Tryte-encoded encryption key, any length. Required for restricted mode
- Object - Initialised state object to be used in future actions
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:
Object
Initialised IOTA library with a provider set. - message:
String
Tryte-encoded payload to be encrypted. Tryte-encoded payload can be generated by callingasciiToTrytes
from the@iota/converter
and passing a stringified JSON object
- state:
Object
Updated state object to be used with future actions/ - payload:
String
Tryte-encoded payload. - root:
String
Tryte-encoded root of the payload. - address:
String
Tryte-encoded address used as an location to attach the payload.
Enables a user to decode a payload
Mam.decode(payload, sideKey, root)
- payload:
Object
Initialised IOTA library with a provider set. - sideKey:
String
Tryte-encoded encryption key. Null value falls back to default key - root:
String
Tryte-encoded string used as the address to attach the payload.
- state:
Object
Updated state object to be used with future actions. - payload:
String
Tryte-encoded payload. - root:
String
Tryte-encoded root used as an address to attach the payload.
These actions require an initialised IOTA library with a provider to be passed in when calling Mam.init(provider)
.
Attaches a payload to the tangle
await Mam.attach(payload, address, depth, minWeightMagnitude)
- payload:
String
Tryte-encoded payload to be attached to the tangle. - address:
String
Tryte-encoded string returned from theMam.create()
function. - depth:
number
Optional 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:
number
Optional minimum number of trailing zeros in transaction hash. This is used byattachToTangle
function 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
Object
Transaction objects that have been attached to the network.
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.
await Mam.fetch(root, mode, sidekey, callback)
- root:
String
Tryte-encoded string used as the entry point to a stream. NOT the address! - mode:
String
Stream mode. Can one ofpublic
,private
orrestricted
Null value falls back to public - sideKey:
String
Tryte-encoded encryption key. Null value falls back to default key - callback:
Function
Optional callback. Null value will cause the function to push payload into the messages array.
- nextRoot:
String
Tryte-encoded string pointing to the next root. - messages:
Array
Array of Tryte-encoded messages from the stream. NOTE: This is only returned when the call is not using a callback
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 command will build a file called mam.client.js
in the lib/
directory.
// Install dependencies
yarn
// Build for node
yarn build