Skip to content

Commit 81694a4

Browse files
syvbroadscapeety001
authored
Remove ops that are removed or virtural (#386)
Co-authored-by: roadscape <[email protected]> Co-authored-by: ety001 <[email protected]>
1 parent 2e86ebf commit 81694a4

File tree

1 file changed

+0
-65
lines changed

1 file changed

+0
-65
lines changed

doc/README.md

-65
Original file line numberDiff line numberDiff line change
@@ -1784,13 +1784,6 @@ steem.broadcast.accountWitnessVote(wif, account, witness, approve, function(err,
17841784
});
17851785
```
17861786
- - - - - - - - - - - - - - - - - -
1787-
### Challenge Authority
1788-
```js
1789-
steem.broadcast.challengeAuthority(wif, challenger, challenged, requireOwner, function(err, result) {
1790-
console.log(err, result);
1791-
});
1792-
```
1793-
- - - - - - - - - - - - - - - - - -
17941787
### Change Recovery Account
17951788
```js
17961789
steem.broadcast.changeRecoveryAccount(wif, accountToRecover, newRecoveryAccount, extensions, function(err, result) {
@@ -1819,27 +1812,13 @@ steem.broadcast.commentPayout(wif, author, permlink, payout, function(err, resul
18191812
});
18201813
```
18211814
- - - - - - - - - - - - - - - - - -
1822-
### Comment Reward
1823-
```js
1824-
steem.broadcast.commentReward(wif, author, permlink, sbdPayout, vestingPayout, function(err, result) {
1825-
console.log(err, result);
1826-
});
1827-
```
1828-
- - - - - - - - - - - - - - - - - -
18291815
### Convert
18301816
```js
18311817
steem.broadcast.convert(wif, owner, requestid, amount, function(err, result) {
18321818
console.log(err, result);
18331819
});
18341820
```
18351821
- - - - - - - - - - - - - - - - - -
1836-
### Curate Reward
1837-
```js
1838-
steem.broadcast.curateReward(wif, curator, reward, commentAuthor, commentPermlink, function(err, result) {
1839-
console.log(err, result);
1840-
});
1841-
```
1842-
- - - - - - - - - - - - - - - - - -
18431822
### Custom
18441823
```js
18451824
steem.broadcast.custom(wif, requiredAuths, id, data, function(err, result) {
@@ -1915,13 +1894,6 @@ steem.broadcast.feedPublish(wif, publisher, exchangeRate, function(err, result)
19151894
});
19161895
```
19171896
- - - - - - - - - - - - - - - - - -
1918-
### Pow2
1919-
```js
1920-
steem.broadcast.pow2(wif, work, newOwnerKey, props, function(err, result) {
1921-
console.log(err, result);
1922-
});
1923-
```
1924-
- - - - - - - - - - - - - - - - - -
19251897
### Fill Convert Request
19261898
```js
19271899
steem.broadcast.fillConvertRequest(wif, owner, requestid, amountIn, amountOut, function(err, result) {
@@ -2037,43 +2009,6 @@ steem.broadcast.limitOrderCreate2(wif, owner, orderid, amountToSell, exchangeRat
20372009
console.log(err, result);
20382010
});
20392011
```
2040-
2041-
|Parameter|Description|Datatype|Notes|
2042-
|---|---|---|---|
2043-
|wif|Active private key|String||
2044-
|owner|Account name|String|No leading @ symbol|
2045-
|orderid|User defined order identifier|Integer|Used to cancel orders|
2046-
|amountToSell|Amount to sell|String|"X.XXX ASSET" must have 3 decimal places. e.g. "25.100 SBD"|
2047-
|exchangeRate|The exchange rate|Integer|`amountToSell` is multiplied by the `exchangeRate` to have the same effect as `minToReceive`|
2048-
|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|
2049-
|expiration|Time when order expires|Integer|Unit milliseconds. Zero is UNIX epoch|
2050-
|function()|Your callback|function||
2051-
2052-
2053-
See also: [getOrderBook](#get-order-book), [getOpenOrders](#get-open-orders), [limitOrderCancel](#limit-order-cancel), [limitOrderCreate](#limit-order-create2)
2054-
2055-
2056-
- - - - - - - - - - - - - - - - - -
2057-
### Liquidity Reward
2058-
```js
2059-
steem.broadcast.liquidityReward(wif, owner, payout, function(err, result) {
2060-
console.log(err, result);
2061-
});
2062-
```
2063-
- - - - - - - - - - - - - - - - - -
2064-
### Pow
2065-
```js
2066-
steem.broadcast.pow(wif, worker, input, signature, work, function(err, result) {
2067-
console.log(err, result);
2068-
});
2069-
```
2070-
- - - - - - - - - - - - - - - - - -
2071-
### Prove Authority
2072-
```js
2073-
steem.broadcast.proveAuthority(wif, challenged, requireOwner, function(err, result) {
2074-
console.log(err, result);
2075-
});
2076-
```
20772012
- - - - - - - - - - - - - - - - - -
20782013
### Recover Account
20792014
```js

0 commit comments

Comments
 (0)