Initialize Joltz Connect
import { Connect } from "joltz-js/connect";
// Create a new connection.
const connect = new Connect({
network: "signet"
});
// Generate a URL to be passed to the user, often shown in a QR code.
const url = await connect.url();
// You can now call the SDK remotely.
const address = await connect.bitcoin.newAddress();
console.log("bitcoin address:", address);
Joltz Connect is a custom alternative to Wallet Connect, allowing you to remotely connect to an instance of the SDK running on a users device. We use WebRTC with end-to-end encryption, ensuring a secure connection.