diff --git a/doc/README.md b/doc/README.md index 9ead4a90..c1350c84 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1784,13 +1784,6 @@ steem.broadcast.accountWitnessVote(wif, account, witness, approve, function(err, }); ``` - - - - - - - - - - - - - - - - - - -### Challenge Authority -```js -steem.broadcast.challengeAuthority(wif, challenger, challenged, requireOwner, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - ### Change Recovery Account ```js steem.broadcast.changeRecoveryAccount(wif, accountToRecover, newRecoveryAccount, extensions, function(err, result) { @@ -1819,13 +1812,6 @@ steem.broadcast.commentPayout(wif, author, permlink, payout, function(err, resul }); ``` - - - - - - - - - - - - - - - - - - -### Comment Reward -```js -steem.broadcast.commentReward(wif, author, permlink, sbdPayout, vestingPayout, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - ### Convert ```js steem.broadcast.convert(wif, owner, requestid, amount, function(err, result) { @@ -1833,13 +1819,6 @@ steem.broadcast.convert(wif, owner, requestid, amount, function(err, result) { }); ``` - - - - - - - - - - - - - - - - - - -### Curate Reward -```js -steem.broadcast.curateReward(wif, curator, reward, commentAuthor, commentPermlink, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - ### Custom ```js steem.broadcast.custom(wif, requiredAuths, id, data, function(err, result) { @@ -1915,13 +1894,6 @@ steem.broadcast.feedPublish(wif, publisher, exchangeRate, function(err, result) }); ``` - - - - - - - - - - - - - - - - - - -### Pow2 -```js -steem.broadcast.pow2(wif, work, newOwnerKey, props, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - ### Fill Convert Request ```js steem.broadcast.fillConvertRequest(wif, owner, requestid, amountIn, amountOut, function(err, result) { @@ -2037,43 +2009,6 @@ steem.broadcast.limitOrderCreate2(wif, owner, orderid, amountToSell, exchangeRat console.log(err, result); }); ``` - -|Parameter|Description|Datatype|Notes| -|---|---|---|---| -|wif|Active private key|String|| -|owner|Account name|String|No leading @ symbol| -|orderid|User defined order identifier|Integer|Used to cancel orders| -|amountToSell|Amount to sell|String|"X.XXX ASSET" must have 3 decimal places. e.g. "25.100 SBD"| -|exchangeRate|The exchange rate|Integer|`amountToSell` is multiplied by the `exchangeRate` to have the same effect as `minToReceive`| -|fillOrKill|Fill order from current order book or kill the order|Boolean|`false` places the order into the Order Book until either canceled, filled, or the expiration time is reached| -|expiration|Time when order expires|Integer|Unit milliseconds. Zero is UNIX epoch| -|function()|Your callback|function|| - - -See also: [getOrderBook](#get-order-book), [getOpenOrders](#get-open-orders), [limitOrderCancel](#limit-order-cancel), [limitOrderCreate](#limit-order-create2) - - -- - - - - - - - - - - - - - - - - - -### Liquidity Reward -```js -steem.broadcast.liquidityReward(wif, owner, payout, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - -### Pow -```js -steem.broadcast.pow(wif, worker, input, signature, work, function(err, result) { - console.log(err, result); -}); -``` -- - - - - - - - - - - - - - - - - - -### Prove Authority -```js -steem.broadcast.proveAuthority(wif, challenged, requireOwner, function(err, result) { - console.log(err, result); -}); -``` - - - - - - - - - - - - - - - - - - ### Recover Account ```js