Profile
Users can store their profiles on Obyte if they want.
Returns
Returns the unit hash.
Example
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);
});
Learn more
"22. Profiles" (page 32) https://obyte.org/Byteball.pdf
Last updated