Build faster on Lithosphere
A modular, high-performance chain with LithoVM for parallelized, EVM-compatible execution. Ship Solidity dApps, index data, and go from idea → deploy in minutes.
deploy.js
# Connect to Litho testnet
export RPC_URL=https://rpc.testnet.litho.ai
export CHAIN_ID=1101
# Hardhat
npx hardhat run scripts/deploy.js --network litho
# Foundry
forge create --rpc-url $RPC_URL --private-key $PRIVATE_KEY src/MyContract.sol:MyContract
Quick Start EVM-ready
Pick your stack and deploy a contract in minutes.
npm i -D hardhat @nomicfoundation/hardhat-toolbox
# hardhat.config.ts
networks: {
litho: {
url: 'https://rpc.testnet.litho.ai',
chainId: 1101,
accounts: [process.env.PRIVATE_KEY]
}
}
curl -L https://foundry.paradigm.xyz | bash
foundryup
forge init my-dapp && cd my-dapp
forge create --rpc-url https://rpc.testnet.litho.ai \
--private-key $PRIVATE_KEY src/MyContract.sol:MyContract
npm i -D truffle
// truffle-config.js
networks: {
litho: {
provider: () => new HDWalletProvider(PRIVATE_KEY, 'https://rpc.testnet.litho.ai'),
network_id: 1101
}
}
APIs & SDKs
Use JSON-RPC, REST, or GraphQL. Official SDKs for TypeScript, Python, Rust, and Go.
Endpoints
https://rpc.testnet.litho.ai
JSON-RPC • CHAIN_ID: 1101
https://api.litho.ai
REST & GraphQL
Live Throughput (TPS)

Wallet Integration
Web3-ready
Connect LithoWallet, MetaMask, WalletConnect, or Coinbase Wallet.
import { LithoProvider } from '@litho/web3'
const provider = new LithoProvider(window.ethereum)
await provider.connect()
LithoWallet MetaMask WalletConnect Coinbase Wallet
Node & Validator Infra Kit
Run a node, stake LITHO, and participate in consensus.
Full Node
Sync, serve RPC, and index with L-Indexer.
Validator
Stake and validate blocks with L-Core.
Tooling
Dashboards, health checks, faucet & RPC gateway.
Network Status
Live status and incident history. (Integrate with your status page API.)
RPC
Operational OK
API
Operational OK
Explorer
Operational OK
Resources
Documentation Outline
- Architecture Overview
- Smart Contract Development (Solidity & LithoVM notes)
- APIs & SDKs (REST, GraphQL, JSON-RPC)
- Wallet Integration
- Testnet Guide & Faucets
- Node & Validator Setup
- Indexing & Explorer
- Security & Responsible Disclosure
Developers are the architects of every decentralized future. Lithosphere was built to empower them — to move fast, to innovate without friction, and to shape a more connected blockchain world.

J. King Kasr
Founder of Lithosphere