-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# acala-node | ||
The client node for Acala & Karura parachain | ||
|
||
This is the client node for Acala and Karura. For runtime code, please refer to [Acala repo](https://github.com/AcalaNetwork/Acala). | ||
|
||
# Building | ||
|
||
```bash | ||
curl https://sh.rustup.rs -sSf | sh | ||
``` | ||
|
||
You may need additional dependencies, checkout [substrate.io](https://docs.substrate.io/v3/getting-started/installation) for more info | ||
|
||
```bash | ||
sudo apt-get install -y git clang curl make libssl-dev llvm libudev-dev protobuf-compiler | ||
``` | ||
|
||
Debug build: | ||
|
||
```bash | ||
cargo build | ||
``` | ||
|
||
Release build: | ||
|
||
```bash | ||
cargo build --release | ||
``` |