QuickStart Guide

Get started with EzeniIa's blockchain, AI, and sustainability technologies in minutes.

Getting Started

Setting Up

Create an account and get your API credentials for blockchain and AI tools

Read More →

Your First Contract

Deploy your first blockchain-powered smart contract with step-by-step instructions

Read More →

AI Integration

Query pre-trained models from the decentralized AI marketplace

Read More →

Step-by-Step Setup

1. Setup Your Account

1

Create Developer Account

Register on developer.ezeniia.com and get API keys for blockchain and AI tools.

curl -X POST https://api.ezeniia.com/v1/auth/register

2. Deploy Your First Contract

2

Blockchain Contract

Deploy a simple contract using our SDK:

import { Ezeniia } from '@ezeniia/js-sdk';

const client = new Ezeniia.Client({
    projectId: 'your-project-id',
    privateKey: 'your-wallet'
});

client.deploy('contract.bytecode').then(tx => {
    console.log('Transaction:', tx.hash);
});
                    

3. Call an AI Model

3

AI Marketplace Query

Try a sample AI query:

from ezeniia_ai import ModelClient

client = ModelClient(
    api_key='your-token'
)

result = client.query('7b75f2e6', {
    'text': 'Explain quantum blockchain' 
})
                    

Additional Guides

Blockchain Tutorials

Learn how to deploy, query, and manage smart contracts on EzeniIa's blockchain

Explore →

AI Model Docs

Discover our API for querying blockchain-verified, ethically sourced AI models

Explore →

Need More Help?

Join our Discord for live support, check our knowledgebase, or request documentation improvements