Skip to content

Implement Proof By Query Verifier

If you intend to set request and create credential request. The following guide will help you implement the verifier module for your solution.

Clone verifier repo

Our example verifier repository might be a useful reference as your work through the implementation.

Environment variables

You will need these values to create your own verifier on the various Redbelly environments.

  • Create .env file.
  • Copy values from .env.example to .env

.env

  • POSEIDON_ADDRESS = 0x88Ce67B3280711AB849082C9754F19850aF559C2
  • MTP_ADDRESS = 0x582E232c669179eff5E03Ed3ab09B19c09A8ED33
  • NETWORK_NAME = 'redbelly'
  • CHAIN_ID = 152
  • RPC_URL = 'https://rbn-aws-eu-north-1a-0-b.devnet.redbelly.network:8545'
  • WALLET_KEY = {Add your Private Key}
  • PORT = {Optional: Add port for Verifier Server}
  • POSEIDON_ADDRESS = Coming Soon
  • MTP_ADDRESS = Coming Soon
  • NETWORK_NAME = 'redbelly'
  • CHAIN_ID = Coming Soon
  • RPC_URL = Coming Soon
  • WALLET_KEY = {Add your Private Key}
  • PORT = {Optional: Add port for Verifier Server}

Next Up: Write smart contract →