An Ethereum-based network for humans and agents.
brew install --cask docker
brew install kurtosis-tech/tap/kurtosis-cli
curl -fsSL https://bun.sh/install | bash
curl -L https://foundry.paradigm.xyz | bash && foundryupgit clone https://github.com/elizaos/jeju.git && cd jeju
bun installbun run dev # Start localnet + apps
bun run dev -- --minimal # Localnet only
bun run test # Run tests
bun run clean # Stop and cleanOr use the CLI directly:
jeju dev # Start everything
jeju test # Run tests
jeju status # Check what's running
jeju keys # Show keys
jeju fund 0x... # Fund addressAddress: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
Key: 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
Pre-funded with 10,000 ETH on localnet.
export JEJU_NETWORK=testnet
export DEPLOYER_PRIVATE_KEY=0x...
jeju deploy testnetexport JEJU_NETWORK=mainnet
export DEPLOYER_PRIVATE_KEY=0x...
export SEQUENCER_PRIVATE_KEY=0x...
export BATCHER_PRIVATE_KEY=0x...
jeju deploy mainnetjeju deploy token # Token contracts
jeju deploy oif # OIF contracts
jeju deploy jns # JNS contracts
jeju deploy x402 # Payment protocol
jeju deploy chainlink # Chainlink integrationjeju publish # Deploy current project
jeju preview # Create preview deployment
jeju worker deploy # Deploy worker to DWSjeju/
├── apps/ # Applications
├── packages/
│ ├── config/ # Configuration
│ ├── contracts/ # Solidity contracts
│ ├── deployment/ # Terraform, Kubernetes
│ ├── sdk/ # Client SDK
│ └── cli/ # CLI tool
└── scripts/ # Utility scripts
| Network | Chain ID | RPC |
|---|---|---|
| Localnet | 31337 | http://127.0.0.1:6546 |
| Testnet | 420690 | https://testnet-rpc.jejunetwork.org |
| Mainnet | 420691 | https://rpc.jejunetwork.org |