Accessing a profile’s wallet and signer
profileWallet.ts
The StardustWallet object is your entry point to obtaining the signers required for your application.
Signers on the left hand sideDocumentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import { StardustCustodialSDK } from '@stardust-gg/stardust-custodial-sdk';
const STARDUST_API_KEY = 'your-api-key';
const sdk = new StardustCustodialSDK(apiKey);
const profile = await sdk.getProfile(profileId);
const { wallet } = profile;
// Get Ethers V5 Signer
const signer = wallet.ethers.v5.getSigner().connect(provider);
Signers on the left hand sideWas this page helpful?
