Quick Start
Get your project running on Monad and Ethereum.
1
Installation
Install the Actora core SDK and CLI tools.
bash
npm install @actora/sdk @actora/cli2
Initialize Project
Setup your project configuration and authenticate.
bash
actora init --template monad-native3
Deploy Verifier
Push your first quest logic to the Monad network.
typescript
import { Actora } from '@actora/sdk';
const actora = new Actora('YOUR_API_KEY');
await actora.quests.create({
id: 'first-quest',
network: 'monad',
reward: 100
});How it works
The Actora SDK handles the cryptographic heavy lifting.
ETH
MON
Secure Auth
ED25519 signing for all API interactions to ensure request integrity.
Tree-Shakable
Only import what you need. SDK is optimized for minimal bundle size.
Parallel Sync
Native support for Monad's parallel execution out of the box.
Ready for more?
Explore advanced quest logic and reward parameters.
