Ezeniia

Developers

Empowering developers with tools, documentation, and resources to build on the Ezeniia platform.

📘 Get Started with Docs

Developer Toolkit

SDKs

Pre-built libraries for JavaScript, Python, and Go to interact with Ezeniia's APIs.

CLI

Command-line interface for deploying contracts, managing data, and interacting with nodes.

API Clients

Ready-to-use HTTP clients for secure and efficient integration with Ezeniia services.

Web IDE

Collaborative development environment with real-time syntax checking and deployment.

Getting Started

Follow these simple steps to begin building on Ezeniia:

1

Create an Account

Sign up for a developer account to access API keys and dashboard tools.

2

Get API Keys

Retrieve API access tokens to authenticate your requests.

3

Deploy a Contract

Use the CLI or Web IDE to deploy your first smart contract.

Integration Examples

JavaScript Example
const ezeniia = require('@ezeniia/client');

const client = new Ezeniia({
  apiKey: 'YOUR_API_KEY_HERE',
  network: 'mainnet'
});

client.dataStore.write('userProfile', {
  name: 'Alice',
  score: 100
}).then(res => {
  console.log('Stored data:', res);
});
                

Python Integration

Python Example
from ezeniia import Client

client = Client(api_key='YOUR_API_KEY_HERE', network='testnet')

data = {
  'username': 'bob123',
  'metadata': {'role': 'admin'}
}

response = client.write_contract('userManager', data)
print("Write successful:", response['hash'])
                

Recent Updates

v2.3.0

2025-09-10
  • Added Ethereum bridge support
  • Improved CLI command autocomplete
  • Fixed SDK race condition in batch writes

v2.2.7

2025-08-22
  • Optimized Python client memory usage
  • Added Websocket support for real-time events
  • Security patches for authentication flow

Ready to Build?

Join the hundreds of developers building on Ezeniia's robust infrastructure and quantum-safe blockchain.

💬 Connect with a Developer Expert