@ledgerhq/coin-xrp 2.0.1-nightly.0 → 2.0.1-nightly.1

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/coin-xrp@2.0.0 build /home/runner/work/ledger-live/ledger-live/libs/coin-modules/coin-xrp
2
+ > @ledgerhq/coin-xrp@2.0.1-nightly.0 build /home/runner/work/ledger-live/ledger-live/libs/coin-modules/coin-xrp
3
3
  > tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @ledgerhq/coin-xrp
2
2
 
3
+ ## 2.0.1-nightly.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`e4d9a5c`](https://github.com/LedgerHQ/ledger-live/commit/e4d9a5ce6c3e8f2b3829f8f5772e7ba712a4a50c)]:
8
+ - @ledgerhq/types-live@6.60.0-nightly.1
9
+ - @ledgerhq/coin-framework@2.0.1-nightly.1
10
+
3
11
  ## 2.0.1-nightly.0
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/coin-xrp",
3
- "version": "2.0.1-nightly.0",
3
+ "version": "2.0.1-nightly.1",
4
4
  "description": "Ledger XRP Coin integration",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -104,12 +104,12 @@
104
104
  "ripple-address-codec": "^5.0.0",
105
105
  "ripple-binary-codec": "^1.3.0",
106
106
  "rxjs": "^7.8.1",
107
- "@ledgerhq/coin-framework": "^2.0.1-nightly.0",
107
+ "@ledgerhq/coin-framework": "^2.0.1-nightly.1",
108
108
  "@ledgerhq/cryptoassets": "^13.11.0",
109
109
  "@ledgerhq/devices": "8.4.4",
110
110
  "@ledgerhq/errors": "^6.19.1",
111
111
  "@ledgerhq/live-network": "^2.0.4",
112
- "@ledgerhq/types-live": "^6.60.0-nightly.0",
112
+ "@ledgerhq/types-live": "^6.60.0-nightly.1",
113
113
  "@ledgerhq/logs": "^6.12.0"
114
114
  },
115
115
  "devDependencies": {
package/src/api/index.ts CHANGED
@@ -44,10 +44,10 @@ async function estimate(_addr: string, _amount: bigint): Promise<bigint> {
44
44
  }
45
45
 
46
46
  type PaginationState = {
47
- pageSize: number; // must be large enough to avoid unnecessary calls to the underlying explorer
48
- maxIterations: number; // a security to avoid infinite loop
47
+ readonly pageSize: number; // must be large enough to avoid unnecessary calls to the underlying explorer
48
+ readonly maxIterations: number; // a security to avoid infinite loop
49
49
  currentIteration: number;
50
- minHeight: number;
50
+ readonly minHeight: number;
51
51
  continueIterations: boolean;
52
52
  apiNextCursor?: string;
53
53
  accumulator: XrpOperation[];