Skip to content

Commit 92eb600

Browse files
author
Enrique A.
committed
Upgrade to 2.4.0
1 parent bd1c771 commit 92eb600

5 files changed

Lines changed: 92 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
55

6+
### 2.4.0 (2026-06-24)
7+
8+
### Change
9+
10+
- Remove the library @stellar/stellar-base and install @stellar/stellar-sdk (the base version has been deprecated by
11+
Stellar)
12+
613
### 2.3.0 (2026-06-05)
714

815
### Add

src/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@creit-tech/stellar-wallets-kit",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"license": "MIT",
55
"tasks": {
66
"build-npm": "deno run -A build_npm.ts",
@@ -21,7 +21,7 @@
2121
"@std/bytes": "jsr:@std/bytes@1.0.6",
2222
"@std/encoding": "jsr:@std/encoding@1.0.10",
2323
"@stellar/freighter-api": "npm:@stellar/freighter-api@6.0.0",
24-
"@stellar/stellar-base": "npm:@stellar/stellar-base@14.0.1",
24+
"@stellar/stellar-sdk": "npm:@stellar/stellar-sdk@^16.0.0",
2525
"@trezor/connect-plugin-stellar": "npm:@trezor/connect-plugin-stellar@10.0.0-alpha.1",
2626
"@trezor/connect-web": "npm:@trezor/connect-web@10.0.0-alpha.1",
2727
"@twind/core": "npm:@twind/core@1.1.3",

src/deno.lock

Lines changed: 81 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sdk/modules/ledger.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import TransportImport from "@ledgerhq/hw-transport";
44
const Transport = TransportImport as any;
55
import TransportWebUSBImport from "@ledgerhq/hw-transport-webusb";
66
const TransportWebUSB = TransportWebUSBImport as any;
7-
import { StrKey, Transaction } from "@stellar/stellar-base";
7+
import { StrKey, Transaction } from "@stellar/stellar-sdk";
88
import { encodeBase64 } from "@std/encoding";
99
import { parseError } from "../utils.ts";
1010
import { type HardwareWalletModuleInterface, ModuleType } from "../../types/mod.ts";

src/sdk/modules/trezor.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const TrezorConnect: any = "default" in TrezorConnectImport
33
? (TrezorConnectImport as any).default
44
: (TrezorConnectImport as any);
55
import { transformTransaction } from "@trezor/connect-plugin-stellar";
6-
import { Transaction } from "@stellar/stellar-base";
6+
import { Transaction } from "@stellar/stellar-sdk";
77
import { decodeHex, encodeBase64 } from "@std/encoding";
88
import { hardwareWalletPaths, mnemonicPath, selectedNetwork } from "../../state/mod.ts";
99
import { type HardwareWalletModuleInterface, ModuleType } from "../../types/mod.ts";

0 commit comments

Comments
 (0)