@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 +1 -1
- package/dist/SwapperFactory.js +1 -1
- package/package.json +1 -1
- package/src/SwapperFactory.ts +1 -1
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/
|
|
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
|
```
|
package/dist/SwapperFactory.js
CHANGED
|
@@ -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
package/src/SwapperFactory.ts
CHANGED
|
@@ -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>[]> {
|