-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathtutorial.json
More file actions
32 lines (32 loc) · 1.2 KB
/
tutorial.json
File metadata and controls
32 lines (32 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"slug": "hello-world",
"title": "Hello World on Stellar",
"description": "Install StarForge, create a funded test wallet, and prepare your first Soroban deploy.",
"steps": [
{
"title": "Verify your environment",
"description": "Confirm StarForge, network connectivity, and optional Stellar CLI availability.",
"command": "starforge info"
},
{
"title": "Create a deployer wallet",
"description": "Generate a testnet keypair and fund it via Friendbot when available.",
"command": "starforge wallet create deployer --fund"
},
{
"title": "Inspect saved wallets",
"description": "Confirm the deployer wallet is stored locally and listed correctly.",
"command": "starforge wallet list"
},
{
"title": "Build your contract",
"description": "Compile Soroban WASM with the Stellar CLI in your project directory.",
"command": "stellar contract build"
},
{
"title": "Prepare deployment",
"description": "Validate WASM size, wallet balance, and print the exact deploy command.",
"command": "starforge deploy --wasm target/wasm32v1-none/release/hello_world.wasm --wallet deployer --simulate"
}
]
}