Skip to content

Commit

Permalink
Use my RPC node (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymcmackin authored Feb 21, 2024
1 parent 4af160b commit ac169ae
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/tutorials/join-dal-baker/prepare-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Step 3: Set up a baker account on Weeklynet"
authors: Tezos core developers
last_update:
date: 14 February 2024
date: 19 February 2024
---

Our baker needs a user account consisting of a pair of keys and an address.
Expand All @@ -11,6 +11,14 @@ Our baker needs a user account consisting of a pair of keys and an address.
If you are using a Docker container, you can enter the container with the `docker exec` command, as in `docker exec -it my-image /bin/sh`.
To get the name of the Docker container, you run the `docker ps` command.

1. Set your installation of the Octez client to use your node instead of the public Weeklynet node:

```bash
octez-client -E http://127.0.0.1:8732 config update
```

Now that you have your own node, you can use its private RPC endpoint so your commands run quickly, instead of using the public RPC endpoint.

1. Create or import an account in the Octez client.
The simplest way to get an account that works with Weeklynet is to use the Octez client to randomly generate an account.
This command creates an account and associates it with the `my_baker` alias:
Expand Down

0 comments on commit ac169ae

Please sign in to comment.