Profile
Users can store their profiles on Obyte if they want.
Returns the unit hash.
const params = {
name: 'Joe Average',
emails: ['[email protected]', '[email protected]'],
twitter: 'joe'
};
client.post.profile(params, wif, function(err, result) {
if (err) return console.error(err);
console.log(result);
});
Last modified 2yr ago