From 90fcd376f0d09fe461806b0c0b5c31a7a05d1a0c Mon Sep 17 00:00:00 2001 From: glyph Date: Tue, 16 Aug 2022 08:46:42 +0100 Subject: [PATCH] add note about golgi --- part_1_sbot_rocket/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/part_1_sbot_rocket/README.md b/part_1_sbot_rocket/README.md index 2aec25a..7bc379f 100644 --- a/part_1_sbot_rocket/README.md +++ b/part_1_sbot_rocket/README.md @@ -131,6 +131,8 @@ Now we can write our first Scuttlebutt-related code. Begin by adding the `golgi` `golgi = { git = "https://git.coopcloud.tech/golgi-ssb/golgi.git" }` +`golgi` is an RPC client library that allows us to interact with a running sbot. + We're going to write a function to define the connection parameters needed to communicate successfully with our locally-running sbot instance. This includes the IP and port on which the `go-sbot` is listening, as well as the location of the keystore being used by the `go-sbot` (ie. where the `secret` file lives...the file which contains the public-private keypair used by the sbot): `src/main.rs`