Skip to main content

Core Lane

Bitcoin-anchored blockchain execution environment with Taproot DA and intent-based transactions

Quick start

Get up and running with Core Lane in minutes

1

Install dependencies

Core Lane requires Rust and Cargo. Install them using rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2

Clone and build

Clone the repository and build the Core Lane node:
git clone https://github.com/lanelayer/core-lane
cd core-lane
cargo build --release
3

Start the node

Run the Core Lane node with a Bitcoin RPC connection:
./target/release/core-lane-node \
  --rpc-url http://127.0.0.1:18443 \
  --rpc-user bitcoin \
  --rpc-password bitcoin123 \
  --http-host 127.0.0.1 \
  --http-port 8545
The node exposes an Ethereum-compatible JSON-RPC API on port 8545

Explore by topic

Learn about Core Lane’s architecture and features

Architecture

Understand how Core Lane anchors execution to Bitcoin

Taproot DA

Learn about data availability using Bitcoin’s Taproot

Intent System

Explore the intent-based transaction model

State Management

How Core Lane manages account and transaction state

JSON-RPC API

Ethereum-compatible API for interacting with Core Lane

Library Integration

Use Core Lane as a Rust library in your applications

Key features

What makes Core Lane unique

Bitcoin Anchoring

Every Core Lane block is anchored to Bitcoin, providing the security and immutability of the Bitcoin network

Taproot Data Availability

Transaction bundles are stored on Bitcoin using Taproot scripts, ensuring data availability without trusted third parties

Intent-Based Transactions

Express desired outcomes instead of explicit actions, enabling cross-chain operations and programmable execution

RISC-V Execution

Run verifiable computations using Cartesi Machine for deterministic RISC-V program execution

Resources

Additional resources and community

GitHub Repository

View source code, report issues, and contribute

Node Operations

Learn how to configure and maintain your Core Lane node

Ready to build on Core Lane?

Get started with our quickstart guide or explore the full documentation