Skip to content

myriadsocial/myriad-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

59458a1 · Feb 1, 2023
Jan 11, 2023
Jan 11, 2023
Apr 1, 2022
Feb 1, 2023
Feb 1, 2023
Feb 1, 2023
Jul 19, 2021
Apr 13, 2022
Jul 19, 2021
Apr 13, 2022
Feb 1, 2023
Apr 18, 2022
Oct 27, 2021
Dec 13, 2021

Repository files navigation



Myriad Node

It's Your Turn to Own Your Web

Starting with Myriad.Social, we are creating a platform where social app, metaverse and messenger seamlessly integrate, together and with further applications. As a user, a content creator or a builder, Myriad is designed to be yours.

Substrate version Medium


Getting Started

Follow these steps to get started with the Node

Rust Setup

First, complete the basic Rust setup instructions.

Single-Node Development Chain

This command will start the single-node development chain with persistent state:

./target/debug/myriad \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true

Purge the development chain's state:

./target/debug/myriad \
purge-chain \
--base-path .local \
--dev

Start the development chain with detailed logging:

RUST_LOG=debug RUST_BACKTRACE=1 ./target/debug/myriad \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true \
-lruntime=debug

Run in Docker

First, install Docker and Docker Compose.

Then run the following command to start a single node development chain.

./.maintain/docker/create-network.sh
./.maintain/docker/start-docker-compose.sh