Profile

Users can store their profiles on Obyte if they want.

Returns

Returns the unit hash.

Example

const params = {
  name: 'Joe Average',
  emails: ['joe@example.com', 'joe@domain.com'],
  twitter: 'joe'
};

client.post.profile(params, wif, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});

Learn more

Last updated