@bluxcc/core 0.1.17 → 0.1.19

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.
@@ -38,3 +38,4 @@ export declare const toTitleFormat: (str: string) => string;
38
38
  export declare const translate: (key: keyof typeof translations, lang: LanguageKey, vars?: Record<string, string>) => string;
39
39
  export declare const getNetworkNamesFromPassphrase: (userNetworks: string[]) => string[];
40
40
  export declare const validateNetworkOptions: (networks: string[], defaultNetwork: string | undefined, transports: ITransports | undefined) => void;
41
+ export declare const validateInput: (type: string, value: string) => boolean;
@@ -4,4 +4,4 @@ export declare const initializeWalletConnect: (wc: IWalletConnectMetaData, appNa
4
4
  export declare const generateWalletConnectSession: (client: SignClient) => Promise<{
5
5
  uri?: string;
6
6
  approval: () => Promise<import("@walletconnect/types").SessionTypes.Struct>;
7
- }>;
7
+ } | null>;
@@ -0,0 +1,2 @@
1
+ import { IWallet } from '../types';
2
+ export declare const ledgerConfig: IWallet;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluxcc/core",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "homepage": "https://blux.cc",
5
5
  "description": "Blux is a wallet infra for the Stellar network",
6
6
  "type": "module",
@@ -39,6 +39,7 @@
39
39
  "license": "BUSL",
40
40
  "peerDependencies": {
41
41
  "@albedo-link/intent": "^0.13.0",
42
+ "@ledgerhq/hw-app-str": "^7.2.8",
42
43
  "@lobstrco/signer-extension-api": "^1.0.0-beta.0",
43
44
  "@stellar/freighter-api": "^5.0.0",
44
45
  "@stellar/stellar-sdk": "^14.1.1",
@@ -51,9 +52,10 @@
51
52
  },
52
53
  "devDependencies": {
53
54
  "@rollup/plugin-commonjs": "^28.0.6",
55
+ "@rollup/plugin-inject": "^5.0.5",
54
56
  "@rollup/plugin-json": "^6.1.0",
55
57
  "@rollup/plugin-node-resolve": "^16.0.1",
56
- "@rollup/plugin-replace": "^6.0.2",
58
+ "@rollup/plugin-replace": "^6.0.3",
57
59
  "@rollup/plugin-typescript": "^12.1.4",
58
60
  "@tailwindcss/postcss": "^4.1.13",
59
61
  "@types/react": "^19.1.12",
@@ -69,6 +71,7 @@
69
71
  "typescript": "^5.9.2"
70
72
  },
71
73
  "dependencies": {
72
- "@hot-wallet/sdk": "^1.0.11"
74
+ "@hot-wallet/sdk": "^1.0.11",
75
+ "@ledgerhq/hw-transport-webusb": "^6.29.12"
73
76
  }
74
77
  }