laconic-registry-cli/demo
Prathamesh Musale e6b747fb48
Some checks failed
Lint / lint (18.x) (pull_request) Successful in 1m10s
Tests / cli_tests (18.x) (pull_request) Failing after 8m17s
Update records publishing script to support YAML records (#68)
Part of [Define record schemas for entities](https://www.notion.so/Define-record-schemas-for-entities-e13e84d7cf7c4087aae69035733faff0)

Reviewed-on: #68
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-06-25 06:36:46 +00:00
..
scripts Update records publishing script to support YAML records (#68) 2024-06-25 06:36:46 +00:00
README.md Replace repository URL in records with published repo record id (#67) 2024-06-24 13:45:56 +05:30

Registry Demo

Setup

  • Install laconic CLI globally:

    # In laconic-registry-cli repo root
    yarn && yarn build
    yarn global add file:$PWD
    
  • Run the laconicd chain:

    # In laconci2d repo
    make install
    ./scripts/init.sh clean
    
  • Create and populate config.yml following config.example.yml:

    # In laconic-registry-cli repo root
    cp config.example.yml config.yml
    
    # Update the gas value in config.yml
    # gas: 500000
    
    # Get user private key
    laconicd keys export alice --unarmored-hex --unsafe --keyring-backend test --home ~/.laconicd
    
    # Set the output as 'userKey' in config.yml
    # userKey: <ALICE_PRIVATE_KEY>
    
    # Create a bond
    laconic --config config.yml registry bond create --type photon --quantity 100000000000
    
    # Get the bond id
    laconic --config config.yml registry bond list | jq -r '.[].id'
    
    # Set the output as 'bondId' in config.yml
    # bondId: <BOND_ID>
    

Run

  • Publish records:

    # Publishes records and corresponding 'deployment' records from given directory
    
    # In laconic-registry-cli repo root
    # Use records dir path for '--records' as required
    yarn ts-node demo/scripts/publish-records.ts --config config.yml --records <RECORDS_DIR>
    

Example

  • Query for azimuth-watcher deployment(s):

    • Find the WatcherRecord for azimuth-watcher:

      WATCHER_RECORD_ID=$(laconic registry record list --all --type WatcherRecord --name azimuth-watcher | jq -r '.[].id')
      
    • Find corresponding deployment(s):

      laconic registry record list --all --type WatcherDeploymentRecord watcher $WATCHER_RECORD_ID
      
      # Get the deployment URL(s)
      laconic registry record list --all --type WatcherDeploymentRecord watcher $WATCHER_RECORD_ID | jq -r '.[].attributes.url'
      
      # Expected output:
      https://azimuth-watcher-endpoint.example.com
      
  • Query for sushiswap-v3-subgraph deployment(s):

    • Find the SubgraphRecord for sushiswap-v3-subgraph:

      SUBGRAPH_RECORD_ID=$(laconic registry record list --all --type SubgraphRecord --name sushiswap-v3-subgraph | jq -r '.[].id')
      
    • Find corresponding deployment(s):

      laconic registry record list --all --type SubgraphDeploymentRecord subgraph $SUBGRAPH_RECORD_ID
      
      # Get the deployment URL(s)
      laconic registry record list --all --type SubgraphDeploymentRecord subgraph $SUBGRAPH_RECORD_ID | jq -r '.[].attributes.url'
      
      # Expected output:
      # https://sushiswap-v3-subgraph-endpoint.example.com
      
  • Query for geth service deployment(s):

    • Find the ServiceRecord for geth:

      SERVICE_RECORD_ID=$(laconic registry record list --all --type ServiceRecord --name geth | jq -r '.[].id')
      
    • Find corresponding deployment(s):

      laconic registry record list --all --type ServiceDeploymentRecord service $SERVICE_RECORD_ID
      
      # Get the deployment URL(s)
      laconic registry record list --all --type ServiceDeploymentRecord service $SERVICE_RECORD_ID | jq -r '.[].attributes.url'
      
      # Expected output:
      # https://geth-rpc-endpoint-1.example.com
      # https://geth-rpc-endpoint-2.example.com