From fb3265de164dfc1fb5dcaa01a994d997fe1cac0b Mon Sep 17 00:00:00 2001 From: Mahdi Yari <m.yary16@gmail.com> Date: Tue, 3 Nov 2020 19:37:14 +0330 Subject: [PATCH] Update README.md --- doc/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/README.md b/doc/README.md index d01b4d7..5d48a4d 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1996,25 +1996,26 @@ hive.broadcast.setWithdrawVestingRoute(wif, fromAccount, toAccount, percent, aut }); ``` ### Transfer -``` +Transfers assets, such as HIVE or HBD, from one account to another. +```js hive.broadcast.transfer(wif, from, to, amount, memo, function(err, result) { console.log(err, result); }); ``` ### Transfer To Vesting -``` +```js hive.broadcast.transferToVesting(wif, from, to, amount, function(err, result) { console.log(err, result); }); ``` ### Vote -``` +```js hive.broadcast.vote(wif, voter, author, permlink, weight, function(err, result) { console.log(err, result); }); ``` ### Withdraw Vesting -``` +```js hive.broadcast.withdrawVesting(wif, account, vestingShares, function(err, result) { console.log(err, result); }); -- GitLab