diff --git a/HISTORY.md b/HISTORY.md index b7d7bea4..1f518cf7 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # ripple-lib Release History +## 1.3.1 (UNRELEASED) + +* Support removing a signer list (#1021) + ## 1.2.4 (2019-06-06) * Update README.md diff --git a/docs/index.md b/docs/index.md index 821610b3..89c676f0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -535,7 +535,7 @@ requireAuthorization | boolean | *Optional* If set, this account must individual requireDestinationTag | boolean | *Optional* Requires incoming payments to specify a destination tag. signers | object | *Optional* Settings that determine what sets of accounts can be used to sign a transaction on behalf of this account using multisigning. *signers.* threshold | integer | A target number for the signer weights. A multi-signature from this list is valid only if the sum weights of the signatures provided is equal or greater than this value. To delete the signers setting, use the value `0`. -*signers.* weights | array | Weights of signatures for each signer. +*signers.* weights | array | *Optional* Weights of signatures for each signer. *signers.* weights[] | object | An association of an address and a weight. *signers.weights[].* address | [address](#address) | A Ripple account address *signers.weights[].* weight | integer | The weight that the signature of this account counts as towards the threshold. @@ -1638,8 +1638,8 @@ options | object | *Optional* Options to filter the resulting transactions. *options.* limit | integer | *Optional* If specified, return at most this many transactions. *options.* maxLedgerVersion | integer | *Optional* Return only transactions in this ledger version or lower. *options.* maxLedgerVersion | string | *Optional* Return only transactions in this ledger version or lower. -*options.* minLedgerVersion | integer | *Optional* Return only transactions in this ledger verion or higher. -*options.* minLedgerVersion | string | *Optional* Return only transactions in this ledger verion or higher. +*options.* minLedgerVersion | integer | *Optional* Return only transactions in this ledger version or higher. +*options.* minLedgerVersion | string | *Optional* Return only transactions in this ledger version or higher. *options.* start | string | *Optional* If specified, this transaction will be the first transaction in the result. You cannot use `start` with `minLedgerVersion` or `maxLedgerVersion`. When `start` is specified, these ledger versions will be determined internally. *options.* types | array\<[transactionType](#transaction-types)\> | *Optional* Only return transactions of the specified [Transaction Types](#transaction-types). @@ -3903,7 +3903,7 @@ requireAuthorization | boolean | *Optional* If set, this account must individual requireDestinationTag | boolean | *Optional* Requires incoming payments to specify a destination tag. signers | object | *Optional* Settings that determine what sets of accounts can be used to sign a transaction on behalf of this account using multisigning. *signers.* threshold | integer | A target number for the signer weights. A multi-signature from this list is valid only if the sum weights of the signatures provided is equal or greater than this value. To delete the signers setting, use the value `0`. -*signers.* weights | array | Weights of signatures for each signer. +*signers.* weights | array | *Optional* Weights of signatures for each signer. *signers.* weights[] | object | An association of an address and a weight. *signers.weights[].* address | [address](#address) | A Ripple account address *signers.weights[].* weight | integer | The weight that the signature of this account counts as towards the threshold. diff --git a/package.json b/package.json index a4f9d25a..33c74f27 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "test": "test" }, "dependencies": { - "@types/lodash": "^4.14.85", + "@types/lodash": "^4.14.136", "@types/ws": "^3.2.0", "bignumber.js": "^4.1.0", "https-proxy-agent": "2.2.1", diff --git a/src/common/schemas/input/get-transactions.json b/src/common/schemas/input/get-transactions.json index 10446762..3e2e3c01 100644 --- a/src/common/schemas/input/get-transactions.json +++ b/src/common/schemas/input/get-transactions.json @@ -22,7 +22,7 @@ }, "minLedgerVersion": { "$ref": "ledgerVersion", - "description": "Return only transactions in this ledger verion or higher." + "description": "Return only transactions in this ledger version or higher." }, "maxLedgerVersion": { "$ref": "ledgerVersion", diff --git a/yarn.lock b/yarn.lock index 9bd45fcf..4d29fe43 100644 --- a/yarn.lock +++ b/yarn.lock @@ -124,10 +124,10 @@ lodash "^4.17.11" to-fast-properties "^2.0.0" -"@types/lodash@^4.14.85": - version "4.14.133" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.133.tgz#430721c96da22dd1694443e68e6cec7ba1c1003d" - integrity sha512-/3JqnvPnY58GLzG3Y7fpphOhATV1DDZ/Ak3DQufjlRK5E4u+s0CfClfNFtAGBabw+jDGtRFbOZe+Z02ZMWCBNQ== +"@types/lodash@^4.14.136": + version "4.14.136" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.136.tgz#413e85089046b865d960c9ff1d400e04c31ab60f" + integrity sha512-0GJhzBdvsW2RUccNHOBkabI8HZVdOXmXbXhuKlDEd5Vv12P7oAVGfomGp3Ne21o5D/qu1WmthlNKFaoZJJeErA== "@types/node@*": version "11.13.4"