Payment

Arguments

  • asset string optional Hash of unit where the asset was defined.

  • outputs array required Outputs is an array of outputs that say who receives the money.

    • address string required The Byteball address of the recipient.

    • amount integrer required The amount he receives.

Returns

Returns the unit hash.

Examples

Spend bytes

const params = {
  outputs: [
    { address: 'NX2BTV43XN6BOTCYZUUFU6TK7DVOC4LU', amount: 1000 }
  ]
};

client.post.payment(params, wif, function(err, result) {
  console.log(result);
});

Send bytes to multiple recipients

Spend asset

Learn more

Last updated