Getting Started

Requirements

  • A Solana‑compatible wallet (Phantom, Solflare, Backpack)
  • Access to Solana mainnet or devnet
  • Mobile device or Android emulator for the Soltag app

Quick Start (Developers)

To begin integrating Soltag into your dApp, first install the SDK using your preferred package manager:

bash
npm install @soltag/sdk

Example usage to fetch asset tags:

typescript
import { getTags } from "@soltag/sdk";

const tags = await getTags("ASSET_ADDRESS");
console.log(tags);

For a more detailed integration guide, check out the SDK & Integration page.