@caatinga/client 2.0.0 → 2.0.2
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/README.md +2 -2
- package/dist/stellar-wallets-kit.cjs +60 -62
- package/dist/stellar-wallets-kit.d.cts +24 -25
- package/dist/stellar-wallets-kit.d.ts +24 -25
- package/dist/stellar-wallets-kit.js +64 -63
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ The `@caatinga/client/freighter` subpath is optional and only needed when you wa
|
|
|
22
22
|
For multi-wallet support, add Stellar Wallets Kit:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
pnpm add
|
|
25
|
+
pnpm add @creit.tech/stellar-wallets-kit
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
```ts
|
|
@@ -82,7 +82,7 @@ Primary flow:
|
|
|
82
82
|
```ts
|
|
83
83
|
import { createCaatingaClient } from "@caatinga/client";
|
|
84
84
|
import { createStellarWalletsKitAdapter } from "@caatinga/client/stellar-wallets-kit";
|
|
85
|
-
import * as Counter from "./contracts/generated/counter";
|
|
85
|
+
import * as Counter from "./contracts/generated/counter/src/index.js";
|
|
86
86
|
import artifacts from "../caatinga.artifacts.json";
|
|
87
87
|
|
|
88
88
|
const wallet = createStellarWalletsKitAdapter();
|
|
@@ -20,90 +20,88 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/stellar-wallets-kit.ts
|
|
21
21
|
var stellar_wallets_kit_exports = {};
|
|
22
22
|
__export(stellar_wallets_kit_exports, {
|
|
23
|
+
WalletNetwork: () => import_stellar_wallets_kit.WalletNetwork,
|
|
23
24
|
createStellarWalletsKitAdapter: () => createStellarWalletsKitAdapter
|
|
24
25
|
});
|
|
25
26
|
module.exports = __toCommonJS(stellar_wallets_kit_exports);
|
|
26
27
|
|
|
27
28
|
// src/adapters/stellar-wallets-kit.ts
|
|
28
|
-
var import_stellar_wallets_kit = require("stellar-wallets-kit");
|
|
29
|
+
var import_stellar_wallets_kit = require("@creit.tech/stellar-wallets-kit");
|
|
30
|
+
var import_walletconnect = require("@creit.tech/stellar-wallets-kit/modules/walletconnect.module");
|
|
29
31
|
function createStellarWalletsKitAdapter(options = {}) {
|
|
32
|
+
const network = options.network ?? import_stellar_wallets_kit.WalletNetwork.TESTNET;
|
|
30
33
|
const kit = options.kit ?? new import_stellar_wallets_kit.StellarWalletsKit({
|
|
31
|
-
network
|
|
32
|
-
|
|
34
|
+
network,
|
|
35
|
+
selectedWalletId: options.selectedWalletId ?? import_stellar_wallets_kit.FREIGHTER_ID,
|
|
36
|
+
modules: options.modules ?? buildModules(network, options.walletConnectMetadata)
|
|
33
37
|
});
|
|
34
|
-
let
|
|
35
|
-
let isWalletConnectStarted = false;
|
|
36
|
-
const sessionDeletedCallbacks = /* @__PURE__ */ new Set();
|
|
38
|
+
let address;
|
|
37
39
|
return {
|
|
38
40
|
kit,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
setWallet(walletId) {
|
|
42
|
+
kit.setWallet(walletId);
|
|
43
|
+
address = void 0;
|
|
42
44
|
},
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
publicKey = void 0;
|
|
45
|
+
getSupportedWallets() {
|
|
46
|
+
return kit.getSupportedWallets();
|
|
46
47
|
},
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
await kit.startWalletConnect(metadata);
|
|
66
|
-
isWalletConnectStarted = true;
|
|
67
|
-
for (const callback of sessionDeletedCallbacks) {
|
|
68
|
-
kit.onSessionDeleted((sessionId) => {
|
|
69
|
-
publicKey = void 0;
|
|
70
|
-
callback(sessionId);
|
|
48
|
+
openModal(modalOptions = {}) {
|
|
49
|
+
return new Promise((resolve, reject) => {
|
|
50
|
+
void kit.openModal({
|
|
51
|
+
...modalOptions.modalTitle ? { modalTitle: modalOptions.modalTitle } : {},
|
|
52
|
+
...modalOptions.notAvailableText ? { notAvailableText: modalOptions.notAvailableText } : {},
|
|
53
|
+
onWalletSelected: (option) => {
|
|
54
|
+
kit.setWallet(option.id);
|
|
55
|
+
kit.getAddress().then((result) => {
|
|
56
|
+
address = result.address;
|
|
57
|
+
resolve(result.address);
|
|
58
|
+
}).catch((error) => {
|
|
59
|
+
reject(error instanceof Error ? error : new Error(String(error)));
|
|
60
|
+
});
|
|
61
|
+
},
|
|
62
|
+
onClosed: (error) => {
|
|
63
|
+
modalOptions.onClosed?.(error);
|
|
64
|
+
reject(error);
|
|
65
|
+
}
|
|
71
66
|
});
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
async connectWalletConnect(connectOptions) {
|
|
75
|
-
await kit.connectWalletConnect(connectOptions);
|
|
76
|
-
publicKey = void 0;
|
|
77
|
-
},
|
|
78
|
-
async getWalletConnectSessions() {
|
|
79
|
-
return kit.getSessions();
|
|
67
|
+
});
|
|
80
68
|
},
|
|
81
|
-
|
|
82
|
-
kit.
|
|
83
|
-
|
|
69
|
+
async getPublicKey() {
|
|
70
|
+
const result = await kit.getAddress();
|
|
71
|
+
address = result.address;
|
|
72
|
+
return result.address;
|
|
84
73
|
},
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
kit.onSessionDeleted((sessionId) => {
|
|
91
|
-
publicKey = void 0;
|
|
92
|
-
callback(sessionId);
|
|
74
|
+
async signTransaction({ xdr, networkPassphrase }) {
|
|
75
|
+
const result = await kit.signTransaction(xdr, {
|
|
76
|
+
networkPassphrase,
|
|
77
|
+
...address ? { address } : {}
|
|
93
78
|
});
|
|
79
|
+
return result.signedTxXdr;
|
|
80
|
+
},
|
|
81
|
+
async disconnect() {
|
|
82
|
+
await kit.disconnect();
|
|
83
|
+
address = void 0;
|
|
94
84
|
}
|
|
95
85
|
};
|
|
96
86
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
87
|
+
var HOTWALLET_ID = "hot-wallet";
|
|
88
|
+
function buildModules(network, walletConnectMetadata) {
|
|
89
|
+
const modules = (0, import_stellar_wallets_kit.allowAllModules)({
|
|
90
|
+
filterBy: (module2) => module2.productId !== HOTWALLET_ID
|
|
91
|
+
});
|
|
92
|
+
if (walletConnectMetadata) {
|
|
93
|
+
modules.push(
|
|
94
|
+
new import_walletconnect.WalletConnectModule({
|
|
95
|
+
...walletConnectMetadata,
|
|
96
|
+
network,
|
|
97
|
+
method: import_walletconnect.WalletConnectAllowedMethods.SIGN
|
|
98
|
+
})
|
|
99
|
+
);
|
|
103
100
|
}
|
|
104
|
-
return
|
|
101
|
+
return modules;
|
|
105
102
|
}
|
|
106
103
|
// Annotate the CommonJS export names for ESM import in node:
|
|
107
104
|
0 && (module.exports = {
|
|
105
|
+
WalletNetwork,
|
|
108
106
|
createStellarWalletsKitAdapter
|
|
109
107
|
});
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { StellarWalletsKit,
|
|
1
|
+
import { StellarWalletsKit, ISupportedWallet, WalletNetwork, ModuleInterface } from '@creit.tech/stellar-wallets-kit';
|
|
2
|
+
export { WalletNetwork } from '@creit.tech/stellar-wallets-kit';
|
|
2
3
|
import { C as CaatingaWalletAdapter } from './types-D4XEyX4J.cjs';
|
|
3
4
|
import '@caatinga/core/browser';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Optional WalletConnect metadata. When provided, a WalletConnect module is
|
|
8
|
+
* registered alongside the auto-detected wallets so it shows up in the modal.
|
|
9
|
+
*/
|
|
5
10
|
interface StellarWalletsKitMetadata {
|
|
6
11
|
name: string;
|
|
7
12
|
description: string;
|
|
@@ -12,35 +17,29 @@ interface StellarWalletsKitMetadata {
|
|
|
12
17
|
interface StellarWalletsKitAdapterOptions {
|
|
13
18
|
kit?: StellarWalletsKit;
|
|
14
19
|
network?: WalletNetwork;
|
|
15
|
-
|
|
20
|
+
/** Wallet pre-selected before the user opens the modal. Defaults to Freighter. */
|
|
21
|
+
selectedWalletId?: string;
|
|
22
|
+
/** Override the registered modules. Defaults to every auto-detectable wallet. */
|
|
23
|
+
modules?: ModuleInterface[];
|
|
16
24
|
walletConnectMetadata?: StellarWalletsKitMetadata;
|
|
17
25
|
}
|
|
18
|
-
interface
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
interface StellarWalletsKitSession {
|
|
24
|
-
id: string;
|
|
25
|
-
name: string;
|
|
26
|
-
description: string;
|
|
27
|
-
url: string;
|
|
28
|
-
icons: string;
|
|
29
|
-
accounts: Array<{
|
|
30
|
-
network: "pubnet" | "testnet";
|
|
31
|
-
publicKey: string;
|
|
32
|
-
}>;
|
|
26
|
+
interface StellarWalletsKitOpenModalOptions {
|
|
27
|
+
modalTitle?: string;
|
|
28
|
+
notAvailableText?: string;
|
|
29
|
+
onClosed?: (error: Error) => void;
|
|
33
30
|
}
|
|
34
31
|
interface StellarWalletsKitAdapter extends CaatingaWalletAdapter {
|
|
35
32
|
kit: StellarWalletsKit;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
/**
|
|
34
|
+
* Opens the wallet-selection modal (lists only installed/available wallets),
|
|
35
|
+
* sets the chosen wallet as active, and resolves with the connected address.
|
|
36
|
+
* Rejects if the user closes the modal without selecting a wallet.
|
|
37
|
+
*/
|
|
38
|
+
openModal(options?: StellarWalletsKitOpenModalOptions): Promise<string>;
|
|
39
|
+
setWallet(walletId: string): void;
|
|
40
|
+
getSupportedWallets(): Promise<ISupportedWallet[]>;
|
|
41
|
+
disconnect(): Promise<void>;
|
|
43
42
|
}
|
|
44
43
|
declare function createStellarWalletsKitAdapter(options?: StellarWalletsKitAdapterOptions): StellarWalletsKitAdapter;
|
|
45
44
|
|
|
46
|
-
export { type StellarWalletsKitAdapter, type StellarWalletsKitAdapterOptions, type
|
|
45
|
+
export { type StellarWalletsKitAdapter, type StellarWalletsKitAdapterOptions, type StellarWalletsKitMetadata, type StellarWalletsKitOpenModalOptions, createStellarWalletsKitAdapter };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { StellarWalletsKit,
|
|
1
|
+
import { StellarWalletsKit, ISupportedWallet, WalletNetwork, ModuleInterface } from '@creit.tech/stellar-wallets-kit';
|
|
2
|
+
export { WalletNetwork } from '@creit.tech/stellar-wallets-kit';
|
|
2
3
|
import { C as CaatingaWalletAdapter } from './types-D4XEyX4J.js';
|
|
3
4
|
import '@caatinga/core/browser';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Optional WalletConnect metadata. When provided, a WalletConnect module is
|
|
8
|
+
* registered alongside the auto-detected wallets so it shows up in the modal.
|
|
9
|
+
*/
|
|
5
10
|
interface StellarWalletsKitMetadata {
|
|
6
11
|
name: string;
|
|
7
12
|
description: string;
|
|
@@ -12,35 +17,29 @@ interface StellarWalletsKitMetadata {
|
|
|
12
17
|
interface StellarWalletsKitAdapterOptions {
|
|
13
18
|
kit?: StellarWalletsKit;
|
|
14
19
|
network?: WalletNetwork;
|
|
15
|
-
|
|
20
|
+
/** Wallet pre-selected before the user opens the modal. Defaults to Freighter. */
|
|
21
|
+
selectedWalletId?: string;
|
|
22
|
+
/** Override the registered modules. Defaults to every auto-detectable wallet. */
|
|
23
|
+
modules?: ModuleInterface[];
|
|
16
24
|
walletConnectMetadata?: StellarWalletsKitMetadata;
|
|
17
25
|
}
|
|
18
|
-
interface
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
interface StellarWalletsKitSession {
|
|
24
|
-
id: string;
|
|
25
|
-
name: string;
|
|
26
|
-
description: string;
|
|
27
|
-
url: string;
|
|
28
|
-
icons: string;
|
|
29
|
-
accounts: Array<{
|
|
30
|
-
network: "pubnet" | "testnet";
|
|
31
|
-
publicKey: string;
|
|
32
|
-
}>;
|
|
26
|
+
interface StellarWalletsKitOpenModalOptions {
|
|
27
|
+
modalTitle?: string;
|
|
28
|
+
notAvailableText?: string;
|
|
29
|
+
onClosed?: (error: Error) => void;
|
|
33
30
|
}
|
|
34
31
|
interface StellarWalletsKitAdapter extends CaatingaWalletAdapter {
|
|
35
32
|
kit: StellarWalletsKit;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
/**
|
|
34
|
+
* Opens the wallet-selection modal (lists only installed/available wallets),
|
|
35
|
+
* sets the chosen wallet as active, and resolves with the connected address.
|
|
36
|
+
* Rejects if the user closes the modal without selecting a wallet.
|
|
37
|
+
*/
|
|
38
|
+
openModal(options?: StellarWalletsKitOpenModalOptions): Promise<string>;
|
|
39
|
+
setWallet(walletId: string): void;
|
|
40
|
+
getSupportedWallets(): Promise<ISupportedWallet[]>;
|
|
41
|
+
disconnect(): Promise<void>;
|
|
43
42
|
}
|
|
44
43
|
declare function createStellarWalletsKitAdapter(options?: StellarWalletsKitAdapterOptions): StellarWalletsKitAdapter;
|
|
45
44
|
|
|
46
|
-
export { type StellarWalletsKitAdapter, type StellarWalletsKitAdapterOptions, type
|
|
45
|
+
export { type StellarWalletsKitAdapter, type StellarWalletsKitAdapterOptions, type StellarWalletsKitMetadata, type StellarWalletsKitOpenModalOptions, createStellarWalletsKitAdapter };
|
|
@@ -2,85 +2,86 @@
|
|
|
2
2
|
import {
|
|
3
3
|
StellarWalletsKit,
|
|
4
4
|
WalletNetwork,
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
allowAllModules,
|
|
6
|
+
FREIGHTER_ID
|
|
7
|
+
} from "@creit.tech/stellar-wallets-kit";
|
|
8
|
+
import {
|
|
9
|
+
WalletConnectAllowedMethods,
|
|
10
|
+
WalletConnectModule
|
|
11
|
+
} from "@creit.tech/stellar-wallets-kit/modules/walletconnect.module";
|
|
7
12
|
function createStellarWalletsKitAdapter(options = {}) {
|
|
13
|
+
const network = options.network ?? WalletNetwork.TESTNET;
|
|
8
14
|
const kit = options.kit ?? new StellarWalletsKit({
|
|
9
|
-
network
|
|
10
|
-
|
|
15
|
+
network,
|
|
16
|
+
selectedWalletId: options.selectedWalletId ?? FREIGHTER_ID,
|
|
17
|
+
modules: options.modules ?? buildModules(network, options.walletConnectMetadata)
|
|
11
18
|
});
|
|
12
|
-
let
|
|
13
|
-
let isWalletConnectStarted = false;
|
|
14
|
-
const sessionDeletedCallbacks = /* @__PURE__ */ new Set();
|
|
19
|
+
let address;
|
|
15
20
|
return {
|
|
16
21
|
kit,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
},
|
|
21
|
-
async setNetwork(network) {
|
|
22
|
-
await kit.setNetwork(network);
|
|
23
|
-
publicKey = void 0;
|
|
22
|
+
setWallet(walletId) {
|
|
23
|
+
kit.setWallet(walletId);
|
|
24
|
+
address = void 0;
|
|
24
25
|
},
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return publicKey;
|
|
26
|
+
getSupportedWallets() {
|
|
27
|
+
return kit.getSupportedWallets();
|
|
28
28
|
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
publicKey = void 0;
|
|
48
|
-
callback(sessionId);
|
|
29
|
+
openModal(modalOptions = {}) {
|
|
30
|
+
return new Promise((resolve, reject) => {
|
|
31
|
+
void kit.openModal({
|
|
32
|
+
...modalOptions.modalTitle ? { modalTitle: modalOptions.modalTitle } : {},
|
|
33
|
+
...modalOptions.notAvailableText ? { notAvailableText: modalOptions.notAvailableText } : {},
|
|
34
|
+
onWalletSelected: (option) => {
|
|
35
|
+
kit.setWallet(option.id);
|
|
36
|
+
kit.getAddress().then((result) => {
|
|
37
|
+
address = result.address;
|
|
38
|
+
resolve(result.address);
|
|
39
|
+
}).catch((error) => {
|
|
40
|
+
reject(error instanceof Error ? error : new Error(String(error)));
|
|
41
|
+
});
|
|
42
|
+
},
|
|
43
|
+
onClosed: (error) => {
|
|
44
|
+
modalOptions.onClosed?.(error);
|
|
45
|
+
reject(error);
|
|
46
|
+
}
|
|
49
47
|
});
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
async connectWalletConnect(connectOptions) {
|
|
53
|
-
await kit.connectWalletConnect(connectOptions);
|
|
54
|
-
publicKey = void 0;
|
|
55
|
-
},
|
|
56
|
-
async getWalletConnectSessions() {
|
|
57
|
-
return kit.getSessions();
|
|
48
|
+
});
|
|
58
49
|
},
|
|
59
|
-
|
|
60
|
-
kit.
|
|
61
|
-
|
|
50
|
+
async getPublicKey() {
|
|
51
|
+
const result = await kit.getAddress();
|
|
52
|
+
address = result.address;
|
|
53
|
+
return result.address;
|
|
62
54
|
},
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
}
|
|
68
|
-
kit.onSessionDeleted((sessionId) => {
|
|
69
|
-
publicKey = void 0;
|
|
70
|
-
callback(sessionId);
|
|
55
|
+
async signTransaction({ xdr, networkPassphrase }) {
|
|
56
|
+
const result = await kit.signTransaction(xdr, {
|
|
57
|
+
networkPassphrase,
|
|
58
|
+
...address ? { address } : {}
|
|
71
59
|
});
|
|
60
|
+
return result.signedTxXdr;
|
|
61
|
+
},
|
|
62
|
+
async disconnect() {
|
|
63
|
+
await kit.disconnect();
|
|
64
|
+
address = void 0;
|
|
72
65
|
}
|
|
73
66
|
};
|
|
74
67
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
68
|
+
var HOTWALLET_ID = "hot-wallet";
|
|
69
|
+
function buildModules(network, walletConnectMetadata) {
|
|
70
|
+
const modules = allowAllModules({
|
|
71
|
+
filterBy: (module) => module.productId !== HOTWALLET_ID
|
|
72
|
+
});
|
|
73
|
+
if (walletConnectMetadata) {
|
|
74
|
+
modules.push(
|
|
75
|
+
new WalletConnectModule({
|
|
76
|
+
...walletConnectMetadata,
|
|
77
|
+
network,
|
|
78
|
+
method: WalletConnectAllowedMethods.SIGN
|
|
79
|
+
})
|
|
80
|
+
);
|
|
81
81
|
}
|
|
82
|
-
return
|
|
82
|
+
return modules;
|
|
83
83
|
}
|
|
84
84
|
export {
|
|
85
|
+
WalletNetwork,
|
|
85
86
|
createStellarWalletsKitAdapter
|
|
86
87
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caatinga/client",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Browser and Node client for Soroban smart contracts — connects generated bindings, Caatinga artifacts, and wallet adapters",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stellar",
|
|
@@ -51,23 +51,23 @@
|
|
|
51
51
|
"LICENSE"
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@caatinga/core": "^2.0.
|
|
54
|
+
"@caatinga/core": "^2.0.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"tsup": "^8.3.5",
|
|
58
|
-
"stellar-wallets-kit": "
|
|
58
|
+
"@creit.tech/stellar-wallets-kit": "^1.9.5",
|
|
59
59
|
"typescript": "^5.7.2",
|
|
60
60
|
"vitest": "^2.1.8"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@stellar/freighter-api": "^4.0.0",
|
|
64
|
-
"stellar-wallets-kit": "
|
|
64
|
+
"@creit.tech/stellar-wallets-kit": "^1.9.5"
|
|
65
65
|
},
|
|
66
66
|
"peerDependenciesMeta": {
|
|
67
67
|
"@stellar/freighter-api": {
|
|
68
68
|
"optional": true
|
|
69
69
|
},
|
|
70
|
-
"stellar-wallets-kit": {
|
|
70
|
+
"@creit.tech/stellar-wallets-kit": {
|
|
71
71
|
"optional": true
|
|
72
72
|
}
|
|
73
73
|
},
|