@integraledger/lcp-binding-stellar 0.13.0 → 0.14.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @integraledger/lcp-binding-stellar
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [aca5978]
8
+ - @integraledger/lcp-kernel@0.14.0
9
+ - @integraledger/lcp-binding-core@0.14.0
10
+
3
11
  ## 0.13.0
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integraledger/lcp-binding-stellar",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Welds an ATR hash into a Stellar payment.",
5
5
  "keywords": [
6
6
  "lcp",
@@ -41,14 +41,14 @@
41
41
  },
42
42
  "homepage": "https://github.com/IntegraLedger/integra-protocol/tree/main/packages/binding-stellar#readme",
43
43
  "dependencies": {
44
- "@stellar/stellar-sdk": "16.2.0",
45
- "@integraledger/lcp-binding-core": "0.13.0",
46
- "@integraledger/lcp-kernel": "0.13.0"
44
+ "@stellar/stellar-sdk": "17.0.0",
45
+ "@integraledger/lcp-binding-core": "0.14.0",
46
+ "@integraledger/lcp-kernel": "0.14.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/json-schema": "7.0.15",
50
50
  "@types/node": "24.13.3",
51
- "vitest": "4.1.10"
51
+ "vitest": "4.1.11"
52
52
  },
53
53
  "license": "Apache-2.0",
54
54
  "engines": {
@@ -1,31 +0,0 @@
1
- /**
2
- * Ambient types for `@stellar/js-xdr` — an UNTYPED transitive of `@stellar/stellar-sdk` (its `lib/xdr.js`
3
- * ships no `.d.ts` and no `@types/stellar__js-xdr` exists on the registry). Because `skipLibCheck` is
4
- * `false` workspace-wide, the SDK's own `.d.ts` files (`base/index.d.ts`, `base/jsxdr.d.ts`,
5
- * `base/numbers/*.d.ts`) fail with TS7016 unless this module is declared. These declarations mirror the
6
- * four symbols the SDK re-exports; the adapter never touches js-xdr directly (it uses StrKey /
7
- * MuxedAccount / Horizon / typed classes only), so the surface here is intentionally minimal — enough to
8
- * satisfy the SDK's re-exports without leaking an `any`-typed value into this package's exports.
9
- */
10
- declare module "@stellar/js-xdr" {
11
- export class XdrWriter {
12
- constructor(buffer?: Uint8Array);
13
- toArray(): Uint8Array;
14
- }
15
- export class XdrReader {
16
- constructor(buffer: Uint8Array);
17
- read(count: number): Uint8Array;
18
- }
19
- /** Base class the SDK's fixed-width XDR integers (Int128/UInt128/Int256/UInt256, XdrLargeInt.int) extend. */
20
- export class LargeInt {
21
- constructor(...parts: Array<bigint | number | string>);
22
- toBigInt(): bigint;
23
- toString(): string;
24
- }
25
- export class UnsignedHyper extends LargeInt {
26
- static fromString(value: string): UnsignedHyper;
27
- }
28
- export class Hyper extends LargeInt {
29
- static fromString(value: string): Hyper;
30
- }
31
- }