Use the SDK with wagmi
createStable accepts a viem WalletClient, which is exactly what wagmi's useWalletClient returns. You connect the wallet through wagmi as you normally would, then memoize a StableClient whenever the wallet client changes.
This guide assumes wagmi v2 and @tanstack/react-query.
1. Configure wagmi
Add Stable to the wagmi config. viem ships chain definitions for both networks.
import { http, createConfig } from "wagmi";
import { stable as stableMainnet, stableTestnet } from "viem/chains";
import { injected } from "wagmi/connectors";
export const wagmiConfig = createConfig({
chains: [stableMainnet, stableTestnet],
connectors: [injected()],
transports: {
[stableMainnet.id]: http(),
[stableTestnet.id]: http(),
},
});WagmiConfig { chains: [988, 2201], connectors: [injected] }2. Build a hook that returns a StableClient
Memoize a StableClient against the current WalletClient. Recreate it when the wallet client identity changes.
import { useMemo } from "react";
import { useWalletClient } from "wagmi";
import { createStable, Network, type StableClient } from "@stablechain/sdk";
export function useStable(network: Network = Network.Mainnet): StableClient | null {
const { data: walletClient } = useWalletClient();
return useMemo(() => {
if (!walletClient) return null;
return createStable({ network, walletClient });
}, [walletClient, network]);
}3. Use it in a component
import { useAccount, useChainId } from "wagmi";
import { Network } from "@stablechain/sdk";
import { useStable } from "./useStable";
export function PayButton() {
const { address } = useAccount();
const chainId = useChainId();
const stable = useStable(Network.Mainnet);
async function onClick() {
if (!stable || !address) return;
const { txHash } = await stable.transfer({
from: address,
to: "0xRecipient",
amount: 1,
});
console.log("Sent:", txHash);
}
return (
<button disabled={!stable} onClick={onClick}>
Pay 1 USDT0 (chain {chainId})
</button>
);
}Sent: 0x8f3a...2d414. Bridge and swap from React
The same stable instance handles bridge and swap. Fetch the quote in an effect or a useQuery, then execute on click.
const stable = useStable(Network.Mainnet);
const onSwap = async () => {
if (!stable) return;
const quote = await stable.quoteSwap({
fromToken: "0x8a2B28364102Bea189D99A475C494330Ef2bDD0B",
toToken: "0x779Ded0c9e1022225f8E0630b35a9b54bE713736",
amount: 100,
fromDecimals: 6,
});
const { txHash, toAmount } = await stable.swap({
fromToken: quote.fromToken,
toToken: "0x779Ded0c9e1022225f8E0630b35a9b54bE713736",
amount: 100,
fromDecimals: 6,
quote,
});
console.log({ txHash, toAmount });
};{ txHash: "0xabcd...", toAmount: 99.81 }Next recommended
- SDK reference — Every method, config field, and error class.
- Use with viem — Compare the three signing modes side-by-side.
- SDK quickstart — Run your first transfer, bridge, and swap on testnet.

