Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create an account using this instance’s shared configuration.
RhinestoneSDK
import { RhinestoneSDK } from '@rhinestone/sdk' import { privateKeyToAccount } from 'viem/accounts' const owner = privateKeyToAccount('0x...') const sdk = new RhinestoneSDK({ auth: { mode: 'apiKey', apiKey: process.env.RHINESTONE_API_KEY! }, }) const account = await sdk.createAccount({ owners: { type: 'ecdsa', accounts: [owner] }, })
Was this page helpful?