@bithomp/xrpl-api 3.6.3 → 3.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -232,6 +232,9 @@ async function findTransactionsExt(account, options = { limit: DEFAULT_LIMIT, ti
232
232
  }
233
233
  }
234
234
  if (accountTransactionsError && transactions.length === 0) {
235
+ if (loadOptions.marker) {
236
+ accountTransactionsError.marker = loadOptions.marker;
237
+ }
235
238
  return accountTransactionsError;
236
239
  }
237
240
  if (loadOptions.marker && transactions.length === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bithomp/xrpl-api",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "description": "A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -60,7 +60,7 @@
60
60
  "ripple-address-codec": "5.0.0",
61
61
  "ripple-binary-codec": "2.5.0",
62
62
  "ripple-keypairs": "2.0.0",
63
- "xrpl": "4.4.1"
63
+ "xrpl": "4.4.2"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@eslint/eslintrc": "^3.3.1",
@@ -70,19 +70,19 @@
70
70
  "@types/mocha": "^10.0.10",
71
71
  "@types/nconf": "^0.10.7",
72
72
  "@types/node": "^22.15.21",
73
- "@typescript-eslint/eslint-plugin": "^8.44.0",
74
- "@typescript-eslint/parser": "^8.44.0",
75
- "chai": "^6.0.1",
73
+ "@typescript-eslint/eslint-plugin": "^8.45.0",
74
+ "@typescript-eslint/parser": "^8.45.0",
75
+ "chai": "^6.2.0",
76
76
  "chai-as-promised": "^8.0.2",
77
- "eslint": "^9.35.0",
77
+ "eslint": "^9.36.0",
78
78
  "eslint-config-prettier": "^10.1.8",
79
79
  "eslint-plugin-chai-friendly": "^1.1.0",
80
80
  "eslint-plugin-import": "^2.32.0",
81
- "eslint-plugin-n": "^17.23.0",
81
+ "eslint-plugin-n": "^17.23.1",
82
82
  "eslint-plugin-promise": "^7.2.1",
83
83
  "mocha": "^11.7.2",
84
84
  "nconf": "^0.13.0",
85
- "ts-jest": "^29.4.2",
85
+ "ts-jest": "^29.4.4",
86
86
  "ts-node": "^10.9.2",
87
87
  "typescript": "^5.9.2"
88
88
  }