# Getting Started

## Quick Launch (30 seconds)

### 1. Access the Bot

**🚧 Alpha Sandbox (Coming June-July 2025)**

```
@AltarOfCreativityBot
```

### 2. Launch Mini-App

1. Open Telegram
2. Search for `@AltarOfCreativityBot`
3. Click `/start`
4. Tap the **"Enter the Altar"** button
5. Mini-App launches in fullscreen mode

### 3. Seamless Authentication

No external logins required - your Telegram identity is your passport to The Altar.

## Development Build Access

**For Testers & Partners:**

```
https://altar-dev.vercel.app
```

**Auth Flow (JavaScript):**

```javascript
// Telegram WebApp SDK integration
import { WebApp } from '@twa-dev/sdk'

// Initialize and verify user
const initData = WebApp.initData
const user = WebApp.initDataUnsafe.user

// Secure verification on backend
const verifyTelegramAuth = async (initData) => {
  const response = await fetch('/api/auth/telegram', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ initData })
  })
  return response.json()
}
```

## Test Environment Setup

### Sandbox Wallet

**For testing purposes only:**

```
Network: Ethereum Testnet (Goerli)
Faucet: https://goerlifaucet.com
Test Tokens: 1000 $AION (auto-credited)
```

### Development Wallet Connection

```javascript
// Connect wallet for testing
const connectWallet = () => {
  if (window.ethereum) {
    return window.ethereum.request({ 
      method: 'eth_requestAccounts' 
    })
  }
  // Fallback to Telegram Wallet
  return WebApp.requestContact()
}
```

## Launch Modes

### From Chat

* Direct bot interaction
* Inline keyboard shortcuts
* Share functionality

### From Menu Button

* Persistent menu integration
* One-tap access
* Background sync

### From Web App

* Direct URL access
* Deep linking support
* Cross-platform compatibility

## System Requirements

* **Mobile**: iOS 12+ / Android 6+
* **Desktop**: Chrome 90+ / Firefox 88+
* **Telegram**: Latest version (Web/Desktop/Mobile)
* **Network**: Stable internet connection

## Next Steps

1. [**Understand the Flow →**](/alter-of-creativity/user-flow.md) - See how submissions work
2. [**Explore Architecture →**](/alter-of-creativity/architecture-lite.md) - Technical overview
3. [**Learn About Tokens →**](/alter-of-creativity/token-primer.md) - $AION utility

***

**Need Help?** Check our [FAQ](/alter-of-creativity/faq.md) or reach out to `@AltarSupport`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://project-49.gitbook.io/alter-of-creativity/get-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
