@atomiqlabs/sdk 7.0.0 → 7.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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A typescript multichain client for atomiqlabs trustlesss cross-chain swaps. Enables trustless swaps between smart chains (Solana, EVM, Starknet, etc.) and bitcoin (on-chain - L1 and lightning network - L2).
4
4
 
5
- Example SDK integration in NodeJS available [here](https://github.com/atomiqlabs/atomiq-sdk-demo/blob/main/src/index.ts)
5
+ Example SDK integration in NodeJS available [here](https://github.com/atomiqlabs/atomiq-sdk-demo/tree/nostr-htlc)
6
6
 
7
7
  ## Installation
8
8
  ```
@@ -39,7 +39,7 @@ const mempoolUrls = {
39
39
  ]
40
40
  };
41
41
  const nostrUrls = [
42
- "wss://relay.damus.io", "wss://nostr.einundzwanzig.space", "wss://nostr.mutinywallet.com"
42
+ "wss://relay.damus.io", "wss://nostr.einundzwanzig.space", "wss://nostr.mutinywallet.com", "wss://relay01.lnfi.network/", "wss://njump.me/", "wss://fiatjaf.com/"
43
43
  ];
44
44
  class SwapperFactory {
45
45
  constructor(initializers) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/sdk",
3
- "version": "7.0.0",
3
+ "version": "7.0.2",
4
4
  "description": "atomiq labs SDK for cross-chain swaps between smart chains and bitcoin",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -108,7 +108,7 @@ const mempoolUrls = {
108
108
  }
109
109
 
110
110
  const nostrUrls: string[] = [
111
- "wss://relay.damus.io", "wss://nostr.einundzwanzig.space", "wss://nostr.mutinywallet.com"
111
+ "wss://relay.damus.io", "wss://nostr.einundzwanzig.space", "wss://nostr.mutinywallet.com", "wss://relay01.lnfi.network/", "wss://njump.me/", "wss://fiatjaf.com/"
112
112
  ];
113
113
 
114
114
  export class SwapperFactory<T extends readonly ChainInitializer<any, any, any>[]> {