@@ -45,19 +45,23 @@ Install Rust (>= 1.90) and `cargo`: [Installation Guide](https://doc.rust-lang.o
4545 <TabItem value = " pop" label = " Pop" default >
4646
4747``` bash
48- # Install Pop CLI
49- $ cargo install --locked --git https://github.com/r0gue-io/pop-cli --branch v0.5-beta pop-cli
48+ # Install Pop CLI via brew
49+ $ brew install r0gue-io/pop-cli/pop
50+
51+ # From source
52+ $ cargo install --force --locked pop-cli
5053
5154# Create a simple contract
52- $ pop new contract flipper && cd flipper
55+ $ pop new
56+
57+ # Build your contract
5358$ pop build --release
5459
5560# Pop CLI automatically launches a local node when deploying
5661$ pop up
5762
5863# Interact with your contract
59- $ pop call --contract 0x… --message get
60- $ pop call --contract 0x… --message flip
64+ $ pop call
6165```
6266
6367 </TabItem >
@@ -99,11 +103,9 @@ $ cargo contract call --suri //Alice --contract 0x… --message flip -x
99103Please see the chapter [ Getting started] ( ../getting-started/setup.md ) of this
100104documentation for a deeper introduction.
101105
102- ## You need to use ink! v6.0.0-beta!
106+ ## Use ink! v6.0.0-beta!
103107
104- Prior releases of ink! are not supported on Asset Hub!
105-
106- Your ` Cargo.toml ` must contain
108+ Your ` Cargo.toml ` must contain:
107109
108110``` toml
109111[dependencies ]
@@ -117,16 +119,10 @@ ink_e2e = { version = "6.0.0-beta" }
117119ink_sandbox = { git = " https://github.com/use-ink/ink.git" , branch = " 6.0.0-beta" }
118120```
119121
120- Your ` cargo-contract ` version must be ` 6.0.0-beta ` too:
121- ``` bash
122- cargo install --force --locked --version 6.0.0-beta cargo-contract
123- ```
124-
125-
126122## 🤔 Smart Contract Examples
127123
128- You can find many contract examples in
129- <a href = " https://github.com/use-ink/ink-examples/tree/v6.x " >the v6 branch of our ` ink-examples ` repository </a >.
124+ You can find many contract examples in our
125+ <a href = " https://github.com/use-ink/ink-examples" > ` ink-examples ` </a > repository .
130126
131127<div className = " row" >
132128 <div className = " col text--center" >
0 commit comments