Introduction to Nomi

Welcome to the Nomi documentation. This guide will help you understand how to use Nomi, the AI-powered Web3 Assistant with native token incentives and blockchain integration.

What is Nomi?

Nomi is the first AI-powered Web3 Assistant with native token incentives and blockchain integration. It serves as your gateway to decentralized intelligence, helping you navigate the complex world of Web3, cryptocurrencies, and blockchain technology.

Key Features

  • Native $NOMI Token - Earn while you learn and interact with the platform
  • Secure Wallet Authentication - Connect your Web3 wallet for a seamless experience
  • Advanced Blockchain Data Analytics - Get insights from on-chain data
  • AI-Powered Responses - Receive accurate and helpful information about Web3

Getting Started

To start using Nomi, follow these simple steps:

1. Connect Your Wallet

Nomi supports various Web3 wallets including MetaMask, WalletConnect, and Coinbase Wallet. Click on the "Connect Wallet" button in the app to authenticate.

// Example of connecting wallet using ethers.js
import { ethers } from "ethers";

async function connectWallet() {
  if (window.ethereum) {
    try {
      // Request account access
      const accounts = await window.ethereum.request({
        method: "eth_requestAccounts"
      });
      return accounts[0];
    } catch (error) {
      console.error("User denied account access");
    }
  }
}

2. Ask Questions

Once connected, you can start asking Nomi questions about Web3, blockchain technology, cryptocurrencies, and more. Nomi will provide you with accurate and helpful responses.

3. Earn $NOMI Tokens

As you interact with Nomi, you'll earn $NOMI tokens as rewards. These tokens can be used within the ecosystem for premium features, or traded on supported exchanges.

Token Economics

The $NOMI token is designed to incentivize platform usage and reward community participation. Here's a breakdown of the token allocation:

  • 40% - Community rewards and user incentives
  • 25% - Development fund
  • 15% - Team and advisors (vested over 3 years)
  • 10% - Liquidity provision
  • 10% - Strategic partnerships

API Reference

Nomi also offers a developer API for integrating AI-powered Web3 assistance into your applications. Below is a simple example of how to use the API:

// Example API request
const response = await fetch('https://api.nomi.ai/v1/query', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    query: "Explain how Ethereum staking works",
    context: "beginner"
  })
});

const data = await response.json();
console.log(data.response);

For more detailed API documentation, please refer to the API Reference section.