Categorygithub.com/bitcoin-sv/dpp-proxy
repositorypackage
0.1.9
Repository: https://github.com/bitcoin-sv/dpp-proxy.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

DPP Proxy

Release Build Status Report Go Sponsor Donate

The Direct Payment Protocol (DPP - previously BIP270) Proxy, or dpp-proxy, is a basic reference implementation of a Direct Payment Protocol Proxy Server. This proxy service is used in order for wallets that are not directly accessible on the public internet to be able to be contacted through this proxy server.

This is written in go and integrates with a wallet running the Payment Protocol PayD Interface.

Exploring Endpoints

To explore the endpoints and functionality, navigate to the Swagger page where the endpoints and their models are described in detail. You can also access the Swagger endpoint on the server, just run the proxy server using go run cmd/rest-server/main.go and hit the Swagger endpoint.

Configuring dpp-proxy

The server has a series of environment variables that allow you to configure the behaviours and integrations of the server. Values can also be passed at build time to provide information such as build information, region, version etc.

Server

KeyDescriptionDefault
SERVER_PORTPort which this server should use:8445
SERVER_HOSTHost name under which this server is founddpp-proxy
SERVER_SWAGGER_ENABLEDIf set to true we will expose an endpoint hosting the Swagger docstrue
SERVER_SWAGGER_HOSTSets the base url for swagger ui callslocalhost:8445

Environment / Deployment Info

KeyDescriptionDefault
ENV_ENVIRONMENTWhat enviornment we are running in, for example 'production'dev
ENV_REGIONRegion we are running in, for example 'eu-west-1'local
ENV_COMMITCommit hash for the current buildtest
ENV_VERSIONSemver tag for the current build, for example v1.0.0v0.0.0
ENV_BUILDDATEDate the code was buildCurrent UTC time
ENV_BITCOIN_NETWORKWhat bitcoin network we are connecting to (mainnet, testnet, stn, regtest)regtest

Logging

KeyDescriptionDefault
LOG_LEVELLevel of logging we want within the server (debug, error, warn, info)info

PayD Wallet

KeyDescriptionDefault
PAYD_HOSTHost for the wallet we are connecting topayd
PAYD_PORTPort the PayD wallet is listening on:8443
PAYD_SECUREIf true the dpp-proxy server will validate the wallet TLS certsfalse
PAYD_NOOPIf true we will use a dummy data store in place of paydtrue

Working with dpp-proxy

There are a set of makefile commands listed under the Makefile which give some useful shortcuts when working with the repo.

Some of the more common commands are listed below:

make pre-commit - ensures dependencies are up to date and runs linter and unit tests.

make build-image - builds a local docker image, useful when testing dpp-proxy in docker.

make run-compose - runs dpp-proxy in compose, a reference PayD wallet will be added to compose soon NOTE the above command will need ran first.

Rebuild on code change

You can also add an optional docker-compose.dev.yml file (this is not committed) where you can safely overwrite values or add other services without impacting the main compose file.

If you add this file, you can run it with make run-compose-dev.

The file I use has a watcher which means it auto rebuilds the image on code change and ensures compose is always up to date, this full file is shown below:

version: "3.7"

services:
  dpp-proxy:
    image: theflyingcodr/go-watcher:1.15.8
    environment:
      GO111MODULE: "on"
      GOFLAGS: "-mod=vendor"
      DB_DSN: "file:data/wallet.db?cache=shared&_foreign_keys=true;"
      DB_SCHEMA_PATH: "data/sqlite/migrations"
    command: watcher -run github.com/bitcoinsv/dpp-proxy/cmd/rest-server/ -watch github.com/bitcoinsv/dpp-proxy
    working_dir: /go/src/github.com/bitcoinsv/dpp-proxy
    volumes:
      - ~/git/bitcoinsv/dpp-proxy-proxy:/go/src/github.com/bitcoinsv/dpp-proxy

CI / CD

We use github actions to test and build the code.

If a new release is required, after your PR is approved and code added to master, simply add a new semver tag and a GitHub action will build and publish your code as well as create a GitHub release.