sora-xor / sora2-parachain

SORA is a new economic system aimed at creating a supranational, world economic system with built-in tools for decentralized finance (DeFi). The SORA network implements a new way of parachain architecture on Polkadot and Kusama network, with the capability to bridge external blockchains (like Ethereum) to the Polkadot ecosystem.
The Unlicense
14 stars 4 forks source link
kusama parachain polkadot sora sorachain substrate
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"
    ]
}