Skip to content

Commit 75493d8

Browse files
committed
chore: remove $
1 parent 115fa78 commit 75493d8

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

pages/developers/cli/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Install from source
1111
> The script supports Linux, MacOS, and Windows (WSL2)
1212
1313
```shell
14-
$ cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
14+
cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
1515
```

pages/developers/cli/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ title: Quickstart
1515
right away with creating a Tangle Blueprint, open your terminal and run:
1616

1717
```shell
18-
$ cargo tangle blueprint create --name <blueprint-name>
18+
cargo tangle blueprint create --name <blueprint-name>
1919
```
2020

2121
2. Follow the prompts to set up your project. The following image shows the prompt flow with example input and defaults selected.

pages/developers/cli/reference.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The primary subcommand, used for building, testing, and deploying blueprints.
1313
Usage:
1414

1515
```shell
16-
$ cargo tangle blueprint <subcommand>
16+
cargo tangle blueprint <subcommand>
1717
```
1818

1919
### Subcommands
@@ -37,19 +37,19 @@ Usage:
3737
Create a blueprint using the default template
3838

3939
```shell
40-
$ cargo tangle blueprint create --name <name>
40+
cargo tangle blueprint create --name <name>
4141
```
4242

4343
Create a blueprint using another template from git
4444

4545
```shell
46-
$ cargo tangle blueprint create --name <name> --repo <git-repo-url>
46+
cargo tangle blueprint create --name <name> --repo <git-repo-url>
4747
```
4848

4949
Create an EigenLayer AVS:
5050

5151
```shell
52-
$ cargo tangle blueprint create --name <project-name> --eigenlayer <type>
52+
cargo tangle blueprint create --name <project-name> --eigenlayer <type>
5353
```
5454

5555
where the following are the possible types (defaulting to bls if the type is omitted):

pages/developers/eigenlayer-avs/bls-template.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ that uses BLS contracts.
2121
### 1. Installation
2222

2323
```shell
24-
$ cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
24+
cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
2525
```
2626

2727
### 2. Creating Your Project
2828

2929
To create a new BLS AVS, use the following command:
3030

3131
```shell
32-
$ cargo tangle blueprint create --name <blueprint_name> --eigenlayer bls
32+
cargo tangle blueprint create --name <blueprint_name> --eigenlayer bls
3333
```
3434

3535
Replace `<blueprint_name>` with your desired AVS name. You'll be prompted with configuration questions - if unsure, the default selections are recommended.
3636

3737
### 3. Building Your AVS
3838

3939
```shell
40-
$ cargo build --release
40+
cargo build --release
4141
```
4242

4343
### 4. Deploying Your Contracts
@@ -128,7 +128,7 @@ Your settings.env file must include:
128128
To verify your setup:
129129

130130
```shell
131-
$ cargo test
131+
cargo test
132132
```
133133

134134
## Troubleshooting

pages/developers/eigenlayer-avs/ecdsa-template.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ implementation of an AVS using ECDSA contracts.
2121
### 1. Installation
2222

2323
```shell
24-
$ cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
24+
cargo install cargo-tangle --git https://github.com/tangle-network/gadget --force
2525
```
2626

2727
### 2. Creating Your Project
2828

2929
To create a new ECDSA AVS, use the following command:
3030

3131
```shell
32-
$ cargo tangle blueprint create --name <blueprint_name> --eigenlayer ecdsa
32+
cargo tangle blueprint create --name <blueprint_name> --eigenlayer ecdsa
3333
```
3434

3535
Replace `<blueprint_name>` with your desired AVS name. You'll be prompted with configuration questions - if unsure, the default selections are recommended.
3636

3737
### 3. Building Your AVS
3838

3939
```shell
40-
$ cargo build --release
40+
cargo build --release
4141
```
4242

4343
### 4. Deploying Your Contracts
@@ -126,7 +126,7 @@ Your settings.env file must include:
126126
To verify your setup:
127127

128128
```shell
129-
$ cargo test
129+
cargo test
130130
```
131131

132132
## Troubleshooting

0 commit comments

Comments
 (0)