Skip to content

Embedded Wallet Integration

View as Markdown

Use this page when you want one reference page for wiring the hosted embedded wallet into a web app.

  • you want the recommended React integration path
  • you need to understand the smallest public wallet contract a dApp uses
  • you want to connect a dApp, send a wallet-managed transaction intent for approval, and then submit it with @thru/sdk
Entry pointUse it whenAvoid it when
@thru/wallet/reactYour app already uses React and you want provider plus hooks.You are not using React.
@thru/walletYou want a browser-side SDK without React.You want React provider state or hooks.

For the recommended React path:

Terminal window
npm install @thru/wallet @thru/sdk

For a non-React integration:

Terminal window
npm install @thru/wallet @thru/sdk

Wrap the app with ThruProvider and point it at the hosted wallet iframe.

import { ThruProvider } from "@thru/wallet/react";
export function App({ children }: { children: React.ReactNode }) {
return (
<ThruProvider
config={{
iframeUrl: "https://wallet.thru.org/embedded",
rpcUrl: "https://rpc.alphanet.thru.org",
}}
>
{children}
</ThruProvider>
);
}

connect() is the dApp entrypoint. The wallet resolves the request against the iframe, origin, and app metadata.

import { useWallet } from "@thru/wallet/react";
export function ConnectButton() {
const { connect, isConnected, isConnecting } = useWallet();
if (isConnected) {
return <button disabled>Wallet connected</button>;
}
return (
<button
onClick={() =>
connect({
metadata: {
appId: window.location.origin,
appName: "My Thru App",
appUrl: window.location.origin,
},
})
}
disabled={isConnecting}
>
{isConnecting ? "Connecting..." : "Connect wallet"}
</button>
);
}

Use signTransaction() with a transaction intent. The dApp supplies the program, instruction bytes, account addresses, and optional review metadata. The wallet approves the action, chooses the fee payer, orders accounts, fills transaction headers and nonces, signs the final transaction, and returns canonical raw transaction bytes encoded as base64.

instructionData is the base64-encoded program instruction payload.

import { useThru, useWallet } from "@thru/wallet/react";
function bytesToBase64(bytes: Uint8Array): string {
let binary = "";
for (let i = 0; i < bytes.length; i++) {
binary += String.fromCharCode(bytes[i]);
}
return btoa(binary);
}
function base64ToBytes(value: string): Uint8Array {
const binary = atob(value);
const bytes = new Uint8Array(binary.length);
for (let i = 0; i < binary.length; i++) {
bytes[i] = binary.charCodeAt(i);
}
return bytes;
}
export function SubmitSignedTransaction({
programAddress,
instructionData,
readWriteAddresses,
readOnlyAddresses,
}: {
programAddress: string;
instructionData: Uint8Array;
readWriteAddresses?: string[];
readOnlyAddresses?: string[];
}) {
const { thru } = useThru();
const { wallet } = useWallet();
return (
<button
onClick={async () => {
if (!thru || !wallet) throw new Error("Wallet not ready");
const rawSignedBase64 = await wallet.signTransaction({
programAddress,
instructionData: bytesToBase64(instructionData),
readWriteAddresses,
readOnlyAddresses,
review: {
appName: "My Thru App",
programAddress,
},
});
const signature = await thru.transactions.send(base64ToBytes(rawSignedBase64));
console.log("Submitted transaction", signature);
}}
>
Sign and submit
</button>
);
}

Call wallet.getSigningContext() when your UI needs to display the selected managed account or the current network signer. You do not need to use this response to build the final transaction wire payload; the wallet owns that step for signTransaction(intent).

The current embedded wallet contract returns a managed-fee-payer shape:

type ThruSigningContext = {
mode: "managed_fee_payer";
selectedAccountPublicKey: string | null;
feePayerPublicKey: string;
signerPublicKey: string;
acceptedInputEncodings: [
"signing_payload_base64",
"raw_transaction_base64",
];
outputEncoding: "raw_transaction_base64";
};

Use it to answer two questions before signing:

  • which managed account the user thinks they are acting as
  • which public key actually signs and pays for network submission

The dApp is responsible for:

  • deciding when to call connect()
  • building the program instruction payload
  • passing a ThruTransactionIntent to signTransaction()
  • submitting the returned raw transaction bytes directly
  • showing the right status while the wallet UI is open

The wallet is responsible for:

  • presenting connection and approval UI
  • unlocking with passkey if required
  • selecting the current wallet account
  • returning the current signing contract for the embedded environment
  • choosing the fee payer and network signer
  • ordering accounts, filling headers and nonces, and constructing the final wire transaction
  • returning canonical raw transaction bytes after signing
  • the iframe URL must be a trusted wallet origin: https://wallet.thru.org or localhost during development
  • signTransaction() expects a transaction intent with programAddress and base64 instructionData
  • the wallet, not the dApp, owns fee payer selection and final transaction wire layout
  • the browser wallet contract is intentionally narrow: connect, disconnect, account selection, transaction signing, and signing sessions
  • Approval and Signing to understand what happens after a dApp calls connect() or signTransaction()
  • Signing Sessions when repeated actions should use a temporary wallet-owned signer
  • Troubleshooting if the request flow stalls or the transaction never appears on-chain