Skip to main content

VIDYA SDK
Preview

Build the future of GameFi with our comprehensive development tools. Integrate blockchain-powered inventory, marketplace, and crafting systems into your games.

Quick Start

âš¡

Easy Integration

Simple APIs and comprehensive documentation to get you started quickly.

<>

Multi-Platform

Unity, TypeScript, Godot, and Unreal Engine support.

🎮

GameFi Ready

Built specifically for blockchain gaming with proven smart contracts.

01

Install SDK

Choose your platform and install the Vidya SDK package

02

Initialize

Configure the SDK with your project ID from the dashboard

03

Authenticate

Connect players using social logins or wallet connections

04

Build

Use our modules to add inventory, marketplace, and more

import { VidyaSDK, Player } from '@vidya/sdk';

// Initialize with your project ID
const vidya = new VidyaSDK({
projectId: 'your-project-id',
environment: 'production'
});

// Authenticate player
const session = await vidya.auth.login({
provider: 'google'
});

// Get the authenticated player object
const player = Player.fromSession(session);

// Use the player object throughout your game
const items = await vidya.inventory.getItems(player);