Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 724 Bytes

README.md

File metadata and controls

55 lines (41 loc) · 724 Bytes

SORA logo

Overview

This is FRAME-based Substrate node of SORA2. This repo contains code of node, pallets, runtime.

Quick start

Build

For Kusama:

make kusama

For Polkadot:

make polkadot

For Rococo:

make rococo

Test

For Kusama:

make test-kusama

For Polkadot:

make test-polkadot

For Rococo:

make test-rococo

Rust Analyzer

Since project can only be compiled with features it would be convenient to set feature in rust analyzer

.vscode/settings.json may look like

{
    "rust-analyzer.cargo.features": [
        "rococo"
    ]
}