Releases: XRPLF/xrpl.js
Releases · XRPLF/xrpl.js
0.9.2-rc6
- Breaking change: Change accountRequest method signature 6f5d110
- Add paging behavior for account requests,
account_lines
andaccount_offers
722f4e1 - Add max_fee setter to transactions to set max fee the submitter is willing to pay 24587fa
- Fix: cap IOU Amounts to their max and min value f05941f
Example on how to use paging with account_offers
:
// A valid `ledger_index` or `ledger_hash` is required to provide a reliable result.
// Results can change between ledger closes, so the provided ledger will be used as base.
var options = {
account: < rippleAccount >,
limit: < Number between 10 and 400 >,
ledger: < valid ledger_index or ledger_hash >
}
// The `marker` comes back in an account request if there are more results than are returned
// in the current response. The amount of results per response are determined by the `limit`.
if (marker) {
options.marker = < marker >;
}
var request = remote.requestAccountOffers(options);
0.9.2-rc5
- Breaking change: Change accountRequest method signature
- Add paging behavior for account requests,
account_lines
andaccount_offers
- Add max_fee setter to transactions to set max fee the submitter is willing to pay
- Fix: cap IOU Amounts to their max and min value
Example on how to use paging with account_offers
:
// A valid `ledger_index` or `ledger_hash` is required to provide a reliable result.
// Results can change between ledger closes, so the provided ledger will be used as base.
var options = {
account: < rippleAccount >,
limit: < Number between 10 and 400 >,
ledger: < valid ledger_index or ledger_hash >
}
// The `marker` comes back in an account request if there are more results than are returned
// in the current response. The amount of results per response are determined by the `limit`.
if (marker) {
options.marker = < marker >;
}
var request = remote.requestAccountOffers(options);
0.9.2-rc4
- Breaking change: Change accountRequest method signature
- Add paging behavior for account requests,
account_lines
andaccount_offers
- Add max_fee setter to transactions to set max fee the submitter is willing to pay
- Fix: cap IOU Amounts to their max and min value
Example on how to use paging with account_offers
:
// A valid `ledger_index` or `ledger_hash` is required to provide a reliable result.
// Results can change between ledger closes, so the provided ledger will be used as base.
var options = {
account: < rippleAccount >,
limit: < Number between 10 and 400 >,
ledger: < valid ledger_index or ledger_hash >
}
// The `marker` comes back in an account request if there are more results than are returned
// in the current response. The amount of results per response are determined by the `limit`.
if (marker) {
options.marker = < marker >;
}
var request = remote.requestAccountOffers(options);
0.9.2-rc3
0.9.2-rc2
0.9.2-rc1
0.9.1
- Switch account requests to use ledgerSelect rather than ledgerChoose (278df90)
- Deprecated setting
ident
andaccount_index
on account requests (278df90) - Change initial account transaction sequence to 1 (a3c1d06)
- Fix: instance transaction withoute remote (d3b6b81)
- Fix: account root request ledger argument (bc1f9f8)
- Fix: rsign.js local signing and example (d3b6b81 and f1004c6)
0.9.1-rc3
- Switch account requests to use ledgerSelect rather than ledgerChoose (278df90)
- Deprecated setting
ident
andaccount_index
on account requests (278df90) - Change initial account transaction sequence to 1 (a3c1d06)
- Fix: instance transaction withoute remote (d3b6b81)
- Fix: account root request ledger argument (bc1f9f8)
- Fix: rsign.js local signing and example (d3b6b81 and f1004c6)
0.9.1-rc2
- Switch account requests to use ledgerSelect rather than ledgerChoose (278df90)
- Deprecated setting
ident
andaccount_index
on account requests (278df90) - Change initial account transaction sequence to 1 (a3c1d06)
- Fix: instance transaction withoute remote (d3b6b81)
- Fix: account root request ledger argument (bc1f9f8)
- Fix: rsign.js local signing and example (d3b6b81 and f1004c6)
0.9.1-rc1
- Switch account requests to use ledgerSelect rather than ledgerChoose (278df90)
- Deprecated setting
ident
andaccount_index
on account requests (278df90) - Fix: instance transaction withoute remote (d3b6b81)
- Fix: account root request ledger argument (bc1f9f8)
- Fix: rsign.js local signing and example (d3b6b81 and f1004c6)