Last updated 5 years ago
Returns the unit hash.
"28. Arbitrary structured data" (page 45)
One can store arbitrary structured data using ‘data’ message type.
const params = { key: "value", another_key: { subkey: 'other value', another_subkey: 232 } }; client.post.data(params, wif, function(err, result) { console.log(result); });