Creating an Application

Create your application

An application is a container for all your profiles on Stardust, and is a prerequisite to starting. It’s extremely easy to create one within the dashboard, generate an API key, and dive into the code!

Get Application

Retrieves the app that lives under the supplied api key.

TypeScript
import { StardustCustodialSDK, StardustApp } from '@stardust-gg/stardust-custodial-sdk';

const STARDUST_API_KEY = 'your-api-key';
const sdk = new StardustCustodialSDK(STARDUST_API_KEY);
const app: StardustApp = await sdk.getApplication();