This is a starter kit for the Adder library.
This starter kit is an introduction tutorial on how to use the adder library to create simple indexer. Adder communicate with a Cardano Node using the ChainSync protocol.
For running this starter kit you'll need access to a fully synced instance of a Cardano Node.
If you do not want to install the required components yourself, you can use the Demeter.run platform to create a cloud environment with access to common Cardano infrastructure. The following command will open this repo in a private, web-based VSCode IDE with access to a shared Cardano Node.
Since you're running this starter kit from a Cardano Workspace, you already have access to the required infrastructure, such as the Cardano Node.
The network to which you're connected (mainnet, preview, preprod, etc) is defined by your project's configuration, selected at the moment of creating your environment.
To simplify the overall process, Cardano Workspaces come already configured with specific environmental variables that allows you to connect to the node without extra step. These are the variables relevant for this particular tutorial:
CARDANO_NODE_SOCKET_PATH
: provides the location of the unix socket within the workspace where the cardano node is listening.CARDANO_NODE_MAGIC
: the network magic corresponding to the node that is connected to the workspace.
In this case Adder is using chain-sync Node-to-Client communication to observe all events that happen on blockchain. The example is in a single main.go
file under ./cmd/adder
.
For adder
, the default configuration will communicate over the local
UNIX socket mounted at /ipc/node.socket
via Node-to-Client ChainSync.
Running the code:
go run ./cmd/adder-publisher