Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ or for use without any build tools:
<script type="module">
import {
LN /* or NWCClient, or NostrWebLNProvider */,
} from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
} from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work

// ... then use the SDK as normal (see below)
</script>
Expand Down
2 changes: 1 addition & 1 deletion examples/lnclient/paywall-esm.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script type="module">
import { LN, USD } from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
import { LN, USD } from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work
const connectionSecret = prompt("Enter a read-only connection secret");
const client = new LN(connectionSecret);

Expand Down
2 changes: 1 addition & 1 deletion examples/nwc/auth.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script type="module">
import { NostrWebLNProvider } from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
import { NostrWebLNProvider } from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work
window.launchNwc = async () => {
try {
const authUrl = prompt("Auth URL", "https://my.albyhub.com/apps/new");
Expand Down
2 changes: 1 addition & 1 deletion examples/nwc/auth_manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import {
NostrWebLNProvider,
NWCClient,
} from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
} from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work
import {
generateSecretKey,
getPublicKey,
Expand Down
2 changes: 1 addition & 1 deletion examples/nwc/client/auth.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script type="module">
import { NWCClient } from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
import { NWCClient } from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work

window.launchNwc = async () => {
try {
Expand Down
2 changes: 1 addition & 1 deletion examples/nwc/client/auth_manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<button id="reset-button" onclick="window.resetNwc()">Reset</button>

<script type="module">
import { NWCClient } from "https://esm.sh/@getalby/sdk@8.0.2"; // jsdelivr.net, skypack.dev also work
import { NWCClient } from "https://esm.sh/@getalby/sdk@8.0.3"; // jsdelivr.net, skypack.dev also work
import {
generateSecretKey,
getPublicKey,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getalby/sdk",
"version": "8.0.1",
"version": "8.0.3",
"description": "The SDK to integrate with Nostr Wallet Connect and the Alby API",
"type": "module",
"repository": "https://github.com/getAlby/js-sdk.git",
Expand Down
Loading