Add generated docs (#2)
Part of https://www.notion.so/Implement-stacks-1b5a6b22d472806a82f5dafed6955138 Reviewed-on: #2 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
parent
85be626f1c
commit
08f08316cb
118
CLAUDE.md
Normal file
118
CLAUDE.md
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
This is a monorepo containing blockchain watchers for the Azimuth PKI system used in Urbit identities. It watches multiple Ethereum contracts (Azimuth, Censures, Claims, ConditionalStarRelease, DelegatedSending, Ecliptic, LinearStarRelease, Polls) and provides GraphQL APIs for querying their state.
|
||||||
|
|
||||||
|
## Common Commands
|
||||||
|
|
||||||
|
### Building and Development
|
||||||
|
```bash
|
||||||
|
# Build all packages
|
||||||
|
yarn build
|
||||||
|
# or
|
||||||
|
lerna run build --stream
|
||||||
|
|
||||||
|
# Lint all packages (max warnings = 0)
|
||||||
|
yarn lint
|
||||||
|
# or
|
||||||
|
lerna run lint --stream -- --max-warnings=0
|
||||||
|
|
||||||
|
# Set versions across packages
|
||||||
|
yarn version:set
|
||||||
|
# or
|
||||||
|
lerna version --no-git-tag-version
|
||||||
|
```
|
||||||
|
|
||||||
|
### Individual Watcher Commands
|
||||||
|
Each watcher package supports these commands:
|
||||||
|
```bash
|
||||||
|
# Development server (with hot reload)
|
||||||
|
yarn server:dev
|
||||||
|
|
||||||
|
# Production server
|
||||||
|
yarn server
|
||||||
|
|
||||||
|
# Job runner (processes blockchain events)
|
||||||
|
yarn job-runner:dev # development
|
||||||
|
yarn job-runner # production
|
||||||
|
|
||||||
|
# Watch contract for events
|
||||||
|
yarn watch:contract
|
||||||
|
|
||||||
|
# Fill historical data
|
||||||
|
yarn fill
|
||||||
|
|
||||||
|
# Reset operations
|
||||||
|
yarn reset
|
||||||
|
|
||||||
|
# State management
|
||||||
|
yarn checkpoint:dev
|
||||||
|
yarn export-state:dev
|
||||||
|
yarn import-state:dev
|
||||||
|
|
||||||
|
# Utilities
|
||||||
|
yarn inspect-cid
|
||||||
|
yarn index-block
|
||||||
|
```
|
||||||
|
|
||||||
|
### Gateway Server
|
||||||
|
```bash
|
||||||
|
# Development gateway server (proxies to all watchers)
|
||||||
|
yarn server:dev
|
||||||
|
|
||||||
|
# Production gateway server
|
||||||
|
yarn server
|
||||||
|
```
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### Monorepo Structure
|
||||||
|
- **Lerna-managed** yarn workspaces with 8 watcher packages + 1 gateway server
|
||||||
|
- Each watcher is a standalone service with its own database and GraphQL endpoint
|
||||||
|
- **Gateway server** acts as a unified GraphQL proxy that routes queries to appropriate watchers
|
||||||
|
|
||||||
|
### Watcher Packages
|
||||||
|
Each watcher follows identical structure:
|
||||||
|
- **Port allocation**: azimuth(3001), censures(3002), claims(3003), conditionalStarRelease(3004), delegatedSending(3005), ecliptic(3006), linearStarRelease(3007), polls(3008)
|
||||||
|
- **Database**: Individual PostgreSQL database per watcher
|
||||||
|
- **Configuration**: TOML files in `environments/` directory
|
||||||
|
- **Generated code**: Built from contract ABIs using `@cerc-io/codegen`
|
||||||
|
|
||||||
|
### Key Components Per Watcher
|
||||||
|
- `src/server.ts` - GraphQL server
|
||||||
|
- `src/job-runner.ts` - Event processing worker
|
||||||
|
- `src/indexer.ts` - Blockchain event indexing logic
|
||||||
|
- `src/resolvers.ts` - GraphQL resolvers
|
||||||
|
- `src/entity/` - TypeORM entities for all contract methods
|
||||||
|
- `src/gql/queries/` - GraphQL query definitions
|
||||||
|
- `src/cli/` - Command-line utilities for management
|
||||||
|
|
||||||
|
### Gateway Server Architecture
|
||||||
|
- **Schema stitching**: Combines all watcher schemas with prefixed field names
|
||||||
|
- **Health checking**: Monitors watcher availability before routing
|
||||||
|
- **Configuration**: `src/watchers.json` defines watcher endpoints and prefixes
|
||||||
|
- **GraphQL proxy**: Routes queries like `azimuthGetKeys` to azimuth-watcher at localhost:3001
|
||||||
|
|
||||||
|
### Data Flow
|
||||||
|
1. **Event Processing**: job-runner fetches Ethereum events → processes through indexer → stores in database
|
||||||
|
2. **Query Processing**: GraphQL queries → gateway server → appropriate watcher → database → response
|
||||||
|
3. **State Management**: Supports checkpointing, state export/import for data recovery
|
||||||
|
|
||||||
|
## Configuration Notes
|
||||||
|
|
||||||
|
### Environment Setup
|
||||||
|
- Each watcher requires PostgreSQL database (configurable in `environments/local.toml`)
|
||||||
|
- Requires Ethereum RPC endpoint (ipld-eth-server or standard RPC)
|
||||||
|
- Gateway server expects all watchers running on their designated ports
|
||||||
|
|
||||||
|
### Development Workflow
|
||||||
|
- Start individual watchers with `yarn server:dev` and `yarn job-runner:dev`
|
||||||
|
- Start gateway server for unified GraphQL endpoint
|
||||||
|
- Use `yarn fill` to sync historical blockchain data
|
||||||
|
- Monitor with debug logs using `DEBUG=vulcanize:*`
|
||||||
|
|
||||||
|
### Generated Watcher Creation
|
||||||
|
Watchers are generated using `@cerc-io/codegen` from contract ABIs. The process involves creating config.yaml files specifying contract paths, output folders, and generation modes (eth_call/storage/all).
|
259
README.md
259
README.md
@ -1,49 +1,143 @@
|
|||||||
# azimuth-watcher-ts
|
# azimuth-watcher-ts
|
||||||
|
|
||||||
Watcher for the Azimuth PKI on Ethereum, used in Urbit identities. Read more about Azimuth:
|
A comprehensive blockchain indexing and querying system for [Azimuth](https://docs.urbit.org/system/identity), Urbit's identity layer on Ethereum. This system monitors multiple Ethereum smart contracts that make up the Azimuth PKI and provides a unified GraphQL API for querying Urbit identity information.
|
||||||
|
|
||||||
* [https://developers.urbit.org/reference/azimuth/azimuth](https://developers.urbit.org/reference/azimuth/azimuth)
|
## What is Azimuth?
|
||||||
|
|
||||||
This app can be run using Stack Orchestrator:
|
Azimuth is Urbit's public key infrastructure (PKI) that lives on Ethereum. It's a set of smart contracts that manage Urbit identities called "points" (similar to usernames), their ownership, cryptographic keys, and hierarchical relationships. By storing identity data on Ethereum, the system is decentralized and censorship-resistant.
|
||||||
|
|
||||||
* [Azimuth stack](https://git.vdb.to/cerc-io/stack-orchestrator/src/branch/main/app/data/stacks/azimuth)
|
## What are Watchers?
|
||||||
|
|
||||||
It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
Watchers are services that continuously monitor smart contracts on Ethereum, index their events and state changes, and provide efficient APIs for querying blockchain data. Instead of directly querying the Ethereum blockchain (which is slow and expensive), applications can query watchers for fast, indexed access to current and historical blockchain state.
|
||||||
|
|
||||||
## Usage
|
## System Architecture
|
||||||
|
|
||||||
* Query public keys for a point:
|
This system consists of **8 specialized watchers** that each monitor different Azimuth smart contracts:
|
||||||
|
|
||||||
```bash
|
- **azimuth-watcher** - Core identity operations (ownership, keys, sponsorship)
|
||||||
# Example
|
- **censures-watcher** - Reputation and censure system
|
||||||
curl 'https://azimuth.dev.vdb.to/graphql' \
|
- **claims-watcher** - On-chain claims and metadata
|
||||||
|
- **ecliptic-watcher** - Galaxy operations and governance
|
||||||
|
- **polls-watcher** - Voting and governance proposals
|
||||||
|
- **conditional-star-release-watcher** - Conditional star distribution
|
||||||
|
- **linear-star-release-watcher** - Linear star distribution
|
||||||
|
- **delegated-sending-watcher** - Delegated operations
|
||||||
|
|
||||||
|
Plus a **gateway server** that provides a unified GraphQL endpoint routing queries to the appropriate watcher.
|
||||||
|
|
||||||
|
## Hosted Service
|
||||||
|
|
||||||
|
A public instance is available at: **<https://azimuth.dev.vdb.to/graphql>**
|
||||||
|
|
||||||
|
You can also run the system locally using [Stack Orchestrator](https://git.vdb.to/cerc-io/stack-orchestrator/src/branch/main/app/data/stacks/azimuth).
|
||||||
|
|
||||||
|
## Common Use Cases
|
||||||
|
|
||||||
|
### Querying Urbit Point Information
|
||||||
|
|
||||||
|
The **azimuth-watcher** is the primary service for querying Urbit identity data. Here are the most common operations:
|
||||||
|
|
||||||
|
#### 1. Get Point Owner and Basic Info
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Check who owns a specific Urbit point
|
||||||
|
# Example:
|
||||||
|
curl 'https://azimuth.dev.vdb.to/graphql' \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
--data-raw '{"query":"{ azimuthGetOwner(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 1234) { value } }"}' \
|
||||||
|
| jq
|
||||||
|
|
||||||
|
# Response:
|
||||||
|
# {
|
||||||
|
# "data": {
|
||||||
|
# "azimuthGetOwner": {
|
||||||
|
# "value": "0x4b22764F2Db640aB4d0Ecfd0F84344F3CB5C3715"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 2. Get Cryptographic Keys for a Point
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Get encryption and authentication keys for networking
|
||||||
|
# Example:
|
||||||
|
curl 'https://azimuth.dev.vdb.to/graphql' \
|
||||||
-H 'Content-Type: application/json' \
|
-H 'Content-Type: application/json' \
|
||||||
--data-raw '{"query":"{ azimuthGetKeys(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 58213) { value { encryptionKey: value0 authenticationKey: value1 cryptoSuiteVersion: value2 keyRevisionNumber: value3 } } }"}' \
|
--data-raw '{"query":"{ azimuthGetKeys(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 58213) { value { encryptionKey: value0 authenticationKey: value1 cryptoSuiteVersion: value2 keyRevisionNumber: value3 } } }"}' \
|
||||||
| jq
|
| jq
|
||||||
|
|
||||||
# Response
|
# Response:
|
||||||
# {
|
# {
|
||||||
# "data": {
|
# "data": {
|
||||||
# "azimuthGetKeys": {
|
# "azimuthGetKeys": {
|
||||||
# "value": {
|
# "value": {
|
||||||
# "encryptionKey": "0xc248f759474b16192bd8bdca0bff1b8bff555cd3d118022095331d6d98690c6d",
|
# "encryptionKey": "0xc248f759474b16192bd8bdca0bff1b8bff555cd3d118022095331d6d98690c6d",
|
||||||
# "authenticationKey": "0x21188bac08542730e1c4697636d6fa25968f404470ccf917756f05e28c69045a",
|
# "authenticationKey": "0x21188bac08542730e1c4697636d6fa25968f404470ccf917756f05e28c69045a",
|
||||||
# "cryptoSuiteVersion": "1",
|
# "cryptoSuiteVersion": "1",
|
||||||
# "keyRevisionNumber": "1"
|
# "keyRevisionNumber": "1"
|
||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
```
|
```
|
||||||
|
|
||||||
* API params:
|
#### 3. Check Point Status
|
||||||
* `contractAddress`: Azimuth contract address
|
|
||||||
* `blockHash`: block hash at which you want to query the contract state
|
|
||||||
|
|
||||||
* Example GQL queries:
|
```bash
|
||||||
|
# Check if a point is active (booted) and has a sponsor
|
||||||
|
# Example:
|
||||||
|
curl 'https://azimuth.dev.vdb.to/graphql' \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
--data-raw '{"query":"{ azimuthIsActive(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 1234) { value } azimuthHasSponsor(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 1234) { value } azimuthGetSponsor(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _point: 1234) { value } }"}' \
|
||||||
|
| jq
|
||||||
|
|
||||||
```gql
|
# Response:
|
||||||
{
|
# {
|
||||||
|
# "data": {
|
||||||
|
# "azimuthIsActive": {
|
||||||
|
# "value": true
|
||||||
|
# },
|
||||||
|
# "azimuthHasSponsor": {
|
||||||
|
# "value": true
|
||||||
|
# },
|
||||||
|
# "azimuthGetSponsor": {
|
||||||
|
# "value": "210"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 4. Get All Points Owned by an Address
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Find all Urbit points owned by an Ethereum address
|
||||||
|
# Example:
|
||||||
|
curl 'https://azimuth.dev.vdb.to/graphql' \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
--data-raw '{"query":"{ azimuthGetOwnedPoints(blockHash: \"latest\", contractAddress: \"0x223c067F8CF28ae173EE5CafEa60cA44C335fecB\", _whose: \"0x1234567890123456789012345678901234567890\") { value } }"}' \
|
||||||
|
| jq
|
||||||
|
|
||||||
|
# Response:
|
||||||
|
# {
|
||||||
|
# "data": {
|
||||||
|
# "azimuthGetOwnedPoints": {
|
||||||
|
# "value": [
|
||||||
|
# "57965",
|
||||||
|
# "1234"
|
||||||
|
# ]
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 5. Multi-Watcher Queries
|
||||||
|
|
||||||
|
The gateway server allows querying multiple watchers in a single request:
|
||||||
|
|
||||||
|
```graphql
|
||||||
|
{
|
||||||
|
# Check point status (azimuth-watcher)
|
||||||
azimuthIsActive(
|
azimuthIsActive(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0x223c067F8CF28ae173EE5CafEa60cA44C335fecB"
|
contractAddress: "0x223c067F8CF28ae173EE5CafEa60cA44C335fecB"
|
||||||
@ -51,13 +145,17 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check censure count (censures-watcher)
|
||||||
censuresGetCensuredByCount(
|
censuresGetCensuredByCount(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0x325f68d32BdEe6Ed86E7235ff2480e2A433D6189"
|
contractAddress: "0x325f68d32BdEe6Ed86E7235ff2480e2A433D6189"
|
||||||
_who: 6054
|
_who: 6054
|
||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
} }
|
||||||
|
|
||||||
|
# Find a claim (claims-watcher)
|
||||||
claimsFindClaim(
|
claimsFindClaim(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0xe7e7f69b34D7d9Bd8d61Fb22C33b22708947971A"
|
contractAddress: "0xe7e7f69b34D7d9Bd8d61Fb22C33b22708947971A"
|
||||||
@ -67,6 +165,8 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check star release balance (linear-star-release-watcher)
|
||||||
linearStarReleaseVerifyBalance(
|
linearStarReleaseVerifyBalance(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0x86cd9cd0992F04231751E3761De45cEceA5d1801"
|
contractAddress: "0x86cd9cd0992F04231751E3761De45cEceA5d1801"
|
||||||
@ -74,6 +174,8 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check conditional star release (conditional-star-release-watcher)
|
||||||
conditionalStarReleaseWithdrawLimit(
|
conditionalStarReleaseWithdrawLimit(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0x8C241098C3D3498Fe1261421633FD57986D74AeA"
|
contractAddress: "0x8C241098C3D3498Fe1261421633FD57986D74AeA"
|
||||||
@ -82,12 +184,16 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check governance proposals (polls-watcher)
|
||||||
pollsGetUpgradeProposalCount(
|
pollsGetUpgradeProposalCount(
|
||||||
blockHash: "0xeaf611fabbe604932d36b97c89955c091e9582e292b741ebf144962b9ff5c271"
|
blockHash: "0xeaf611fabbe604932d36b97c89955c091e9582e292b741ebf144962b9ff5c271"
|
||||||
contractAddress: "0x7fEcaB617c868Bb5996d99D95200D2Fa708218e4"
|
contractAddress: "0x7fEcaB617c868Bb5996d99D95200D2Fa708218e4"
|
||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check NFT balance (ecliptic-watcher)
|
||||||
eclipticBalanceOf(
|
eclipticBalanceOf(
|
||||||
blockHash: "0x5e82abbe6474caf7b5325022db1d1287ce352488b303685493289770484f54f4"
|
blockHash: "0x5e82abbe6474caf7b5325022db1d1287ce352488b303685493289770484f54f4"
|
||||||
contractAddress: "0x33EeCbf908478C10614626A9D304bfe18B78DD73"
|
contractAddress: "0x33EeCbf908478C10614626A9D304bfe18B78DD73"
|
||||||
@ -95,6 +201,8 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Check delegation permissions (delegated-sending-watcher)
|
||||||
delegatedSendingCanSend(
|
delegatedSendingCanSend(
|
||||||
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
blockHash: "0x2461e78f075e618173c524b5ab4309111001517bb50cfd1b3505aed5433cf5f9"
|
||||||
contractAddress: "0xf6b461fE1aD4bd2ce25B23Fe0aff2ac19B3dFA76"
|
contractAddress: "0xf6b461fE1aD4bd2ce25B23Fe0aff2ac19B3dFA76"
|
||||||
@ -103,84 +211,31 @@ It is also hosted at <https://azimuth.dev.vdb.to/graphql>
|
|||||||
) {
|
) {
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Generate Watchers
|
### Understanding Query Parameters
|
||||||
|
|
||||||
Steps to generate Azimuth watchers using the code generator ([`@cerc-io/codegen`](https://github.com/cerc-io/watcher-ts/tree/v0.2.76/packages/codegen))
|
All queries require these standard parameters:
|
||||||
|
|
||||||
* Clone the original Azimuth repo for required contracts:
|
- **`blockHash`**: Use `"latest"` for current state, or a specific block hash for historical queries
|
||||||
|
- **`contractAddress`**: Azimuth contract address (`0x223c067F8CF28ae173EE5CafEa60cA44C335fecB`)
|
||||||
|
- **`_point`**: The Urbit point number you're querying
|
||||||
|
- **`_whose`**: Ethereum address when querying by owner
|
||||||
|
|
||||||
```bash
|
## How It Works
|
||||||
git clone git@github.com:urbit/azimuth.git
|
|
||||||
|
|
||||||
# Install dependencies
|
### Data Source
|
||||||
npm install
|
|
||||||
|
|
||||||
# Contracts are located in the contracts folder
|
The watchers continuously monitor Ethereum smart contracts by connecting to Ethereum RPC endpoint(s), indexing blockchain events and state changes.
|
||||||
```
|
|
||||||
|
|
||||||
* Setup `cerc-io/watcher-ts` repo:
|
### Data Flow
|
||||||
|
|
||||||
```bash
|
1. **Indexing**: Job runners fetch Ethereum events and blocks from RPC endpoint(s)
|
||||||
git clone git@github.com:cerc-io/watcher-ts.git
|
2. **Processing**: Events are processed and state changes stored in PostgreSQL databases
|
||||||
|
3. **Querying**: GraphQL servers provide fast, indexed access to current and historical blockchain state
|
||||||
|
4. **Gateway**: Unified endpoint routes queries to appropriate specialized watchers
|
||||||
|
|
||||||
# Install dependencies and build packages
|
### Storage
|
||||||
yarn install && yarn build
|
|
||||||
```
|
|
||||||
|
|
||||||
* Create a folder to place all the generated watchers in:
|
Each watcher maintains its own PostgreSQL database for efficient querying and data isolation.
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir -p azimuth-watcher-ts/packages
|
|
||||||
```
|
|
||||||
|
|
||||||
* In `watcher-ts/packages/codegen`, create a `config.yaml` file with required codegen config for generating the watcher for a contract
|
|
||||||
|
|
||||||
For example, for `Azimuth` contract:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Contracts to watch (required).
|
|
||||||
contracts:
|
|
||||||
# Contract name.
|
|
||||||
- name: Azimuth
|
|
||||||
# Contract file path or an url.
|
|
||||||
path: /home/user/azimuth/contracts/Azimuth.sol
|
|
||||||
# Contract kind
|
|
||||||
kind: Azimuth
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/azimuth-watcher-ts/packages/azimuth-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: eth_call
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3001
|
|
||||||
|
|
||||||
# Solc version to use (optional)
|
|
||||||
# If not defined, uses solc version listed in dependencies
|
|
||||||
solc: v0.4.24+commit.e67f0147
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
```
|
|
||||||
|
|
||||||
Note: Create `.sol` files with the contract code from Etherscan for [`ConditionalStarRelease`](https://etherscan.io/address/0x8C241098C3D3498Fe1261421633FD57986D74AeA#code), [`DelegatedSending`](https://etherscan.io/address/0xf6b461fe1ad4bd2ce25b23fe0aff2ac19b3dfa76#code), [`Ecliptic`](https://etherscan.io/address/ecliptic.eth#code) and [`LinearStarRelease`](https://etherscan.io/address/0x86cd9cd0992F04231751E3761De45cEceA5d1801#code) contracts and use the file path for `contracts.path`
|
|
||||||
|
|
||||||
* Run codegen command to generate the watcher:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# In watcher-ts/packages/codegen
|
|
||||||
yarn codegen --config-file ./config.yaml
|
|
||||||
```
|
|
||||||
|
|
||||||
* Update `contracts`, `outputFolder` and `port` fields in the config and re-run the codegen command for all other contracts
|
|
||||||
|
|
||||||
* Setup the parent folder `/home/user/azimuth-watcher-ts` where all the generated watchers are placed as a monorepo
|
|
||||||
|
|
||||||
* The [gateway GQL server](packages/gateway-server) can be used to proxy queries to their respective watchers
|
|
||||||
|
76
generate-watchers.md
Normal file
76
generate-watchers.md
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
# Generate Azimuth Watchers
|
||||||
|
|
||||||
|
* Clone the original Azimuth repo for required contracts:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone git@github.com:urbit/azimuth.git
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
npm install
|
||||||
|
|
||||||
|
# Contracts are located in the contracts folder
|
||||||
|
```
|
||||||
|
|
||||||
|
* Setup `cerc-io/watcher-ts` repo:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone git@github.com:cerc-io/watcher-ts.git
|
||||||
|
|
||||||
|
# Install dependencies and build packages
|
||||||
|
yarn install && yarn build
|
||||||
|
```
|
||||||
|
|
||||||
|
* Create a folder to place all the generated watchers in:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p azimuth-watcher-ts/packages
|
||||||
|
```
|
||||||
|
|
||||||
|
* In `watcher-ts/packages/codegen`, create a `config.yaml` file with required codegen config for generating the watcher for a contract
|
||||||
|
|
||||||
|
For example, for `Azimuth` contract:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Contracts to watch (required).
|
||||||
|
contracts:
|
||||||
|
# Contract name.
|
||||||
|
- name: Azimuth
|
||||||
|
# Contract file path or an url.
|
||||||
|
path: /home/user/azimuth/contracts/Azimuth.sol
|
||||||
|
# Contract kind
|
||||||
|
kind: Azimuth
|
||||||
|
|
||||||
|
# Output folder path (logs output using `stdout` if not provided).
|
||||||
|
outputFolder: /home/user/azimuth-watcher-ts/packages/azimuth-watcher
|
||||||
|
|
||||||
|
# Code generation mode [eth_call | storage | all | none] (default: none).
|
||||||
|
mode: eth_call
|
||||||
|
|
||||||
|
# Kind of watcher [lazy | active] (default: active).
|
||||||
|
kind: active
|
||||||
|
|
||||||
|
# Watcher server port (default: 3008).
|
||||||
|
port: 3001
|
||||||
|
|
||||||
|
# Solc version to use (optional)
|
||||||
|
# If not defined, uses solc version listed in dependencies
|
||||||
|
solc: v0.4.24+commit.e67f0147
|
||||||
|
|
||||||
|
# Flatten the input contract file(s) [true | false] (default: true).
|
||||||
|
flatten: true
|
||||||
|
```
|
||||||
|
|
||||||
|
Note: Create `.sol` files with the contract code from Etherscan for [`ConditionalStarRelease`](https://etherscan.io/address/0x8C241098C3D3498Fe1261421633FD57986D74AeA#code), [`DelegatedSending`](https://etherscan.io/address/0xf6b461fe1ad4bd2ce25b23fe0aff2ac19b3dfa76#code), [`Ecliptic`](https://etherscan.io/address/ecliptic.eth#code) and [`LinearStarRelease`](https://etherscan.io/address/0x86cd9cd0992F04231751E3761De45cEceA5d1801#code) contracts and use the file path for `contracts.path`
|
||||||
|
|
||||||
|
* Run codegen command to generate the watcher:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# In watcher-ts/packages/codegen
|
||||||
|
yarn codegen --config-file ./config.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
* Update `contracts`, `outputFolder` and `port` fields in the config and re-run the codegen command for all other contracts
|
||||||
|
|
||||||
|
* Setup the parent folder `/home/user/azimuth-watcher-ts` where all the generated watchers are placed as a monorepo
|
||||||
|
|
||||||
|
* The [gateway GQL server](packages/gateway-server) can be used to proxy queries to their respective watchers
|
Loading…
Reference in New Issue
Block a user