-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcreate-connection.js
53 lines (40 loc) · 1.27 KB
/
create-connection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import "websocket-polyfill"; // required in node.js
import * as readline from "node:readline/promises";
import { stdin as input, stdout as output } from "node:process";
import { nwc } from "../../../dist/index.module.js";
import { generateSecretKey, getPublicKey } from "nostr-tools";
import { bytesToHex } from "@noble/hashes/utils";
const rl = readline.createInterface({ input, output });
const nwcUrl =
process.env.NWC_URL ||
(await rl.question("Nostr Wallet Connect URL (nostr+walletconnect://...): "));
rl.close();
const client = new nwc.NWCClient({
nostrWalletConnectUrl: nwcUrl,
});
let secretKey = generateSecretKey();
let pubkey = getPublicKey(secretKey);
const response = await client.createConnection({
pubkey,
name: "Test created app from JS SDK " + new Date().toISOString(),
request_methods: [
"get_info",
"get_balance",
"get_budget",
"make_invoice",
"pay_invoice",
"lookup_invoice",
"list_transactions",
"sign_message",
],
});
console.info(response);
client.close();
const childClient = new nwc.NWCClient({
relayUrl: client.relayUrl,
secret: bytesToHex(secretKey),
walletPubkey: response.wallet_pubkey,
});
const info = await childClient.getInfo();
console.info("Got info from created app", info);
childClient.close();