Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 3 KB

README.md

File metadata and controls

63 lines (45 loc) · 3 KB

wheresmyum

The wheresmyum code leverages pindexer to display information about IBC transfers.

Getting Started

The application is written in Remix, and uses pnpm for package management. The fastest way to get started on the development environment is to use Nix:

sh <(curl -L https://nixos.org/nix/install)
nix develop
just dev

However, you still need a database to connect to.

Connecting to a database

The wheresmyum application requires a PostgreSQL database containing ABCI event information, munged by a custom indexer, rather than by pindexer. Eventually the relevant indexing logic will likely be upstreamed to pindexer, at which point a standard pindexer database can be used. For now, operators must run the bundled wheresmyum-indexer tool located in indexer/. As with pindexer, wheresmyum-indexer requires a CometBFT event database. Consult the pindexer docs on setting that up.

The relevant env vars for wheresmyum are:

# add these to e.g. `.envrc`:
export PENUMBRA_INDEXER_ENDPOINT="postgresql://<PGUSER>:<PGPASS>@<PGHOST>:<PGPORT>/<PGDATABASE>?sslmode=require""
# optional: if you see "self-signed certificate in certificate chain" errors,
# you'll likely need to export a `ca-cert.pem` file for the DB TLS.
# export PENUMBRA_INDEXER_CA_CERT="$(cat ca-cert.pem)"

If you see an error self-signed certificate in certificate chain, then you'll need to:

  1. obtain the CA certificate file for the backend database you're connecting to, and export it as PENUMBRA_INDEXER_CA_CERT.
  2. remove the sslmode=require string on the PENUMBRA_INDEXER_ENDPOINT var.

See context in penumbra-zone/dex-explorer#55. After configuring that information, run just dev again in the nix shell, and you should have events visible.

Deployment

Merges to main will automatically build a container, hosted at ghcr.io/penumbra-zone/wheresmyum. In order to run the application, you'll need to deploy a Penumbra fullnode, with ABCI event indexing enabled. Furthermore, you'll need to run the [wheresmyum-indexer] and provide read-only access to that database to the application. The relevant environment variables you'll want to set are:

  • PENUMBRA_INDEXER_ENDPOINT: the URL to a Postgres database, managed by pindexer
  • PENUMBRA_INDEXER_CA_CERT: optional; if set, the database connection will use the provided certificate authority when validating TLS

Styling

This template comes with Tailwind CSS already configured for a simple default starting experience. You can use whatever css framework you prefer. See the Vite docs on css for more information.