Documentation Index
Fetch the complete documentation index at: https://docs.openformat.tech/llms.txt
Use this file to discover all available pages before exploring further.
If you need to create an App via the SDK it can be done like so:
The functions in this code snippet require gas.If you need support relating to gas, reach out to us on Discord.
import { Chains, OpenFormatSDK } from "@openformat/sdk";
const sdk = new OpenFormatSDK({
network: Chains.arbitrumSepolia,
signer: process.env.PRIVATE_KEY, // Your wallet's private key
});
// Create App
const app = await sdk.factory.createApp({
name: "APP_NAME",
});
console.log("APP_ID", app.id);