@@ -9,10 +9,11 @@ title: Quickstart
9
9
- [ git] ( https://git-scm.org )
10
10
- Tangle CLI, see [ installation] ( ./installation.mdx )
11
11
12
- ## Creating a New Project
12
+ ## Creating a New Tangle Blueprint
13
13
14
- 1 . For an in-depth guide to commands, see the [ CLI Reference] ( ./reference.mdx ) . To get started
15
- right away with creating a Tangle Blueprint, open your terminal and run:
14
+ 1 . For an in-depth guide to commands, see the [ Tangle Blueprint Commands] ( ./tangle.mdx ) . If you are
15
+ looking to get started building an Eigenlayer AVS, see the [ eigenlayer section] ( ./eigenlayer.mdx ) instead.
16
+ To get started right away with creating a Tangle Blueprint, open your terminal and run:
16
17
17
18
``` shell
18
19
cargo tangle blueprint create --name < blueprint-name>
@@ -22,28 +23,14 @@ cargo tangle blueprint create --name <blueprint-name>
22
23
23
24
![ CLI Blueprint Creation] ( /images/cli-blueprint-create.png )
24
25
25
- ### Project Structure
26
-
27
- After creation, your project will have the following structure:
28
-
29
- ```
30
- <blueprint-name>/
31
- ├── src/
32
- │ ├── lib.rs
33
- │ └── main.rs
34
- ├── Cargo.toml
35
- ├── README.md
36
- └── ...
37
- ```
38
-
39
26
## Deploying your Blueprint
40
27
41
28
Once you're ready to deploy your blueprint, simply:
42
29
43
30
``` shell
44
31
export SIGNER=" //Alice"
45
32
export EVM_SIGNER=" 0xcb6df9de1efca7a3998a8ead4e02159d5fa99c3e0d4fd6432667390bb4726854"
46
- cargo tangle blueprint deploy
33
+ cargo tangle blueprint deploy tangle --devnet
47
34
```
48
35
49
- See [ deploy command reference] ( ./reference .mdx#deploy ) for all options.
36
+ See [ deploy command reference] ( ./tangle .mdx#deploying-a-blueprint ) for all options.
0 commit comments