-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'unstable' into execution-integration
- Loading branch information
Showing
7 changed files
with
144 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
matrix: | ||
- name: Markdown | ||
aspell: | ||
lang: en | ||
dictionary: | ||
wordlists: | ||
- .github/wordlist.txt | ||
encoding: utf-8 | ||
pipeline: | ||
- pyspelling.filters.markdown: | ||
markdown_extensions: | ||
- pymdownx.superfences | ||
- pyspelling.filters.html: | ||
comments: false | ||
ignores: | ||
- code | ||
- pre | ||
- a | ||
sources: | ||
- "**/*.md" | ||
default_encoding: utf-8 |
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,40 +1,45 @@ | ||
MacOS | ||
linter | ||
Testnets | ||
testnet | ||
Testnet | ||
QBFT | ||
SSV | ||
validator | ||
libp | ||
middleware | ||
performant | ||
github | ||
sigp | ||
io | ||
sigmaprime | ||
mdBook | ||
spec'd | ||
PRs | ||
Styleguide | ||
blockchain | ||
CLI | ||
clippy | ||
rustfmt | ||
TODOs | ||
config | ||
struct | ||
structs | ||
Config | ||
PathBuf | ||
config | ||
cryptographic | ||
dir | ||
Exercism | ||
blockchain | ||
ETH | ||
Ethereum | ||
Exercism | ||
github | ||
Grafana | ||
http | ||
HTTPS | ||
repo | ||
io | ||
libp | ||
linter | ||
localhost | ||
MacOS | ||
mdBook | ||
middleware | ||
PathBuf | ||
performant | ||
pre | ||
CLI | ||
PRs | ||
QBFT | ||
repo | ||
RSA | ||
runtime | ||
localhost | ||
http | ||
Grafana | ||
UI | ||
rustfmt | ||
sigmaprime | ||
sigp | ||
spec'd | ||
SSV | ||
struct | ||
structs | ||
Styleguide | ||
Testnet | ||
testnet | ||
Testnets | ||
TODOs | ||
UI | ||
Validator | ||
validator | ||
validators |
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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
|
||
# Anchor Installation Guide | ||
|
||
This guide provides step-by-step instructions for installing **Anchor**. | ||
|
||
--- | ||
|
||
## 1. Download the Latest Release from GitHub | ||
|
||
1. Visit the [Anchor Releases page](https://github.com/sigp/anchor/releases). | ||
2. Download the appropriate binary for your operating system. | ||
3. Extract the file if necessary and move the binary to a location in your `PATH` (e.g., `/usr/local/bin/`). | ||
|
||
### Example | ||
|
||
```bash | ||
wget https://github.com/sigp/anchor/releases/download/<version>/anchor-<platform>.tar.gz | ||
|
||
# Replace <version> and <platform> with the appropriate values. | ||
|
||
tar -xvf anchor-<platform>.tar.gz | ||
sudo mv anchor /usr/local/bin/ | ||
``` | ||
|
||
Verify the installation: | ||
|
||
```bash | ||
anchor --version | ||
``` | ||
|
||
--- | ||
|
||
## 2. Run Anchor Using Docker | ||
|
||
1. Pull the latest Anchor Docker image: | ||
|
||
```bash | ||
docker pull sigp/anchor:latest | ||
``` | ||
|
||
2. Run the Anchor container: | ||
|
||
```bash | ||
docker run --rm -it sigp/anchor:latest --help | ||
``` | ||
|
||
## 3. Clone and Build Locally | ||
|
||
1. Clone the Anchor repository: | ||
|
||
```bash | ||
git clone https://github.com/sigp/anchor.git | ||
cd anchor | ||
``` | ||
|
||
2. Build the Anchor binary: | ||
|
||
```bash | ||
cargo build --release | ||
``` | ||
|
||
The binary will be located in `./target/release/`. | ||
|
||
3. Move the binary to a location in your `PATH`: | ||
|
||
```bash | ||
sudo mv target/release/anchor /usr/local/bin/ | ||
``` | ||
|
||
Verify the installation: | ||
|
||
```bash | ||
anchor --version | ||
``` |