# NFT Ticket

### Workflow

#### 1. Event Creation

```javascript
// Create event on-chain
await program.methods
  .createEvent(eventDetails)
  .accounts({...})
  .rpc();

```

#### 2. Funding Phase

* Backers send SOL to escrow
* Funds locked until conditions met
* Real-time progress tracking

#### 3. Ticket Phase

* NFT tickets minted to attendees
* Instant payment to organizer wallet
* Secondary market trading possible

#### 4. Event Phase

* Live check-in with wallet signatures
* Attendance verification on-chain
* Post-event settlement

### Smart Contracts

#### Core Programs

* **Event Management** - Create and manage events
* **Funding Escrow** - Handle crowdfunding
* **NFT Ticketing** - Mint and verify tickets
* **DAO Governance** - Voting and fund releases

**File: `guides/nft-tickets.md`**

````markdown
# NFT Tickets

Technical details about Mythra's NFT ticketing system.

## Token Standard

We use Metaplex standard NFTs with custom metadata:

```json
{
  "name": "Mythra Event Ticket",
  "symbol": "TICKET",
  "uri": "https://metadata.mythra.io/{mint}",
  "seller_fee_basis_points": 200,
  "creators": [...],
  "collection": {...},
  "uses": null
}
````


---

# 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://mythra-2.gitbook.io/mythra-docs-1/documentation/introduction/getting-started/guides/technical/nft-ticket.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.
