Skip to content

Commit

Permalink
docs(summonerd): use latest pcli version
Browse files Browse the repository at this point in the history
Bumps the recommended version of pcli to v0.63.3, to match the latest
point release [0]. Also removes the `cargo run` invocations to match
the recent change to the docs, to recommend installing binaries over
compiling from source [1].

[0] #3469
[1] #3442
  • Loading branch information
conorsch committed Dec 4, 2023
1 parent 3bf0609 commit 2860f78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/summonerd/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ <h3 class="font-bold text-xl pt-4 bg-text-linear bg-clip-text text-transparent">
to set up <span class="font-mono">pcli</span> and create a wallet.
<br>
If you already have <span class="font-mono">pcli</span> installed, make sure you're using
<span class="font-bold">v0.63.1</span>:
<span class="font-bold">v0.63.3</span>:
<pre
class="text-sm my-8 p-2 bg-charcoal rounded-lg"><span class="no-select">$ </span>cargo run --quiet --release --bin pcli -- --version
<span class="no-select">pcli v0.63.1</span></pre>
class="text-sm my-8 p-2 bg-charcoal rounded-lg"><span class="no-select">$ </span>pcli --version
<span class="no-select">pcli v0.63.3</span></pre>
</p>
<h3 class="font-bold text-xl pt-4 bg-text-linear bg-clip-text text-transparent">Receiving Faucet Funds</h3>
<p>
Expand All @@ -104,7 +104,7 @@ <h3 class="font-bold text-xl pt-4 bg-text-linear bg-clip-text text-transparent">
To do this, you need to first get your address from <span class="font-mono">pcli</span>:
</p>
<pre
class="text-sm my-8 p-2 bg-charcoal rounded-lg">cargo run --quiet --release --bin pcli -- view address</pre>
class="text-sm my-8 p-2 bg-charcoal rounded-lg">pcli view address</pre>
<p>
Then, you can go to the <span class="font-bold">#testnet-faucet</span> channel in the Discord, and paste that
address to receive funds.
Expand All @@ -118,7 +118,7 @@ <h3 class="font-bold text-xl pt-4 bg-text-linear bg-clip-text text-transparent">
To join the queue, use <span class="font-mono">pcli ceremony contribute</span> to place a bid:
</p>
<pre
class="text-sm my-8 p-4 bg-charcoal rounded-lg overflow-x-auto">cargo run --quiet --release --bin pcli -- ceremony contribute --phase {{ phase_number }} --bid {{ min_bid }} --coordinator-address {{ address }}</pre>
class="text-sm my-8 p-4 bg-charcoal rounded-lg overflow-x-auto">pcli ceremony contribute --phase {{ phase_number }} --bid {{ min_bid }} --coordinator-address {{ address }}</pre>
<p>
The minimum bid for this ceremony is {{ min_bid }}.
</p>
Expand Down

0 comments on commit 2860f78

Please sign in to comment.