Scaffold 0G Project
Metadata
- Category: chain
- SDK:
ethers 6.13.1, @0gfoundation/0g-storage-ts-sdk ^1.2.12,
@0gfoundation/0g-compute-ts-sdk ^0.9.0
- Activation Triggers: "new project", "scaffold", "initialize", "create 0G app", "setup project"
Purpose
Initialize a new 0G dApp project with the correct SDK versions, TypeScript configuration,
environment setup, and boilerplate code for storage, compute, and/or chain interactions.
Prerequisites
- Node.js >= 18
- npm or pnpm
Quick Workflow
- Create project directory and initialize npm
- Install dependencies based on project type
- Configure TypeScript
- Create
.env template and .gitignore
- Create boilerplate source files
- Initialize git repository
Core Rules
ALWAYS
- Use ethers v6 (6.13.1), never v5
- Use
evmVersion: "cancun" for Hardhat/Foundry configs
- Create
.env with placeholder values (never real keys)
- Add
.env to .gitignore
- Use
dotenv/config for environment variable loading
NEVER
- Install ethers v5
- Hardcode private keys in boilerplate
- Skip
.gitignore creation
- Use CommonJS — prefer ES modules with TypeScript
Code Examples
Full-Stack 0G Project
# Create and initialize project
mkdir my-0g-app && cd my-0g-app
npm init -y
# Install all 0G SDKs
npm install @0gfoundation/0g-storage-ts-sdk @0gfoundation/0g-compute-ts-sdk ethers dotenv
# Install dev dependencies
npm install -D typescript tsx @types/node
tsconfig.json
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"strict": true,
"esModuleInterop": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": ["src/**/*"]
}
.env
# Network
RPC_URL=https://evmrpc-testnet.0g.ai
CHAIN_ID=16602
# Wallet (NEVER commit real keys)
PRIVATE_KEY=your_private_key_here
# Storage
STORAGE_INDEXER=https://indexer-storage-testnet-turbo.0g.ai
# Compute
PROVIDER_ADDRESS=your_provider_address
.gitignore
node_modules/
dist/
.env
.env.local
.env.*.local
*.log
package.json scripts
{
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts"
}
}
Storage-Only Project
npm install @0gfoundation/0g-storage-ts-sdk ethers dotenv
npm install -D typescript tsx @types/node
// src/index.ts
import { ZgFile, Indexer } from '@0gfoundation/0g-storage-ts-sdk';
import { ethers } from 'ethers';
import 'dotenv/config';
async function main() {
const provider = new ethers.JsonRpcProvider(process.env.RPC_URL);
const wallet = new ethers.Wallet(process.env.PRIVATE_KEY!, provider);
const indexer = new Indexer(process.env.STORAGE_INDEXER!);
console.log('0G Storage client initialized');
console.log('Wallet:', wallet.address);
}
main().catch(console.error);
Compute-Only Project
npm install @0gfoundation/0g-compute-ts-sdk ethers dotenv
npm install -D typescript tsx @types/node
// src/index.ts
import { ethers } from 'ethers';
import { createZGComputeNetworkBroker } from '@0gfoundation/0g-compute-ts-sdk';
import 'dotenv/config';
async function main() {
const provider = new ethers.JsonRpcProvider(process.env.RPC_URL);
const wallet = new ethers.Wallet(process.env.PRIVATE_KEY!, provider);
const broker = await createZGComputeNetworkBroker(wallet);
console.log('0G Compute broker initialized');
const services = await broker.inference.listService();
console.log(`Available services: ${services.length}`);
}
main().catch(console.error);
Hardhat Smart Contract Project
mkdir my-0g-contracts && cd my-0g-contracts
npm init -y
npm install -D hardhat @nomicfoundation/hardhat-toolbox dotenv typescript tsx
npx hardhat init # Choose TypeScript project
// hardhat.config.ts
import { HardhatUserConfig } from 'hardhat/config';
import '@nomicfoundation/hardhat-toolbox';
import 'dotenv/config';
const config: HardhatUserConfig = {
solidity: {
version: '0.8.24',
settings: {
optimizer: { enabled: true, runs: 200 },
evmVersion: 'cancun', // REQUIRED for 0G Chain
},
},
networks: {
'0g-testnet': {
url: 'https://evmrpc-testnet.0g.ai',
chainId: 16602,
accounts: [process.env.PRIVATE_KEY!],
},
'0g-mainnet': {
url: 'https://evmrpc.0g.ai',
chainId: 16661,
accounts: [process.env.PRIVATE_KEY!],
},
},
};
export default config;
Project Type Reference
| Project Type |
Dependencies |
Use Case |
| Full-Stack |
All 3 SDKs |
Complete dApp |
| Storage Only |
@0gfoundation/0g-storage-ts-sdk, ethers |
File/KV storage |
| Compute Only |
@0gfoundation/0g-compute-ts-sdk, ethers |
AI inference |
| Smart Contracts |
hardhat, toolbox, ethers |
On-chain logic |
Anti-Patterns
# BAD: Installing ethers v5
npm install ethers@5 # WRONG — use v6
# BAD: Missing evmVersion in Hardhat config
# solidity: { version: "0.8.24" } # Missing evmVersion: "cancun"
// BAD: Hardcoded credentials in boilerplate
const wallet = new ethers.Wallet('0xabc...', provider);
// BAD: ethers v5 pattern
import { providers } from 'ethers'; // v5 pattern!
Common Errors & Fixes
| Error |
Cause |
Fix |
Cannot find module |
Dependencies not installed |
Run npm install |
invalid opcode |
Wrong evmVersion |
Set evmVersion: "cancun" |
PRIVATE_KEY not set |
Missing .env file |
Create .env with credentials |
ethers v5 import error |
Wrong ethers version |
npm install ethers@6.13.1 |
Related Skills
References