Ali Behjati 58a5317bc5 Add metrics to pyth price service (#185) 3 năm trước cách đây
..
src 58a5317bc5 Add metrics to pyth price service (#185) 3 năm trước cách đây
.dockerignore 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
.env.sample 2dd5357b46 Add readiness to Pyth Price Service (#183) 3 năm trước cách đây
.gitignore 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
Dockerfile.price_service 2dd5357b46 Add readiness to Pyth Price Service (#183) 3 năm trước cách đây
Dockerfile.spy_guardian 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
README.md 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
package-lock.json 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
package.json 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây
tsconfig.json 352fa64653 Merge Dev.v2 into main (#181) 3 năm trước cách đây

README.md

Pyth Price Service

This service exposes a REST api to provide latest attestation message for a price feed id.

Build

To build the spy_guardian docker container:

$ docker build -f Dockerfile.spy_guardian -t spy_guardian .

To build the pyth_price_service docker container:

$ docker build -f Dockerfile.pyth_price_service -t pyth_price_service .

Run the spy_guardian docker container in TestNet:

$ docker run --platform linux/amd64 -d --network=host spy_guardian \
--bootstrap /dns4/wormhole-testnet-v2-bootstrap.certus.one/udp/8999/quic/p2p/12D3KooWBY9ty9CXLBXGQzMuqkziLntsVcyz4pk1zWaJRvJn6Mmt \
--network /wormhole/testnet/2/1 \
--spyRPC "[::]:7073"

Or run the spy_guardian docker container in MainNet: For the MainNet gossip network parameters, see https://github.com/certusone/wormhole-networks/blob/master/mainnetv2/info.md

$ docker run --platform linux/amd64 -d --network=host spy_guardian \
--bootstrap <guardianNetworkBootstrapParameterForMainNet> \
--network <guardianNetworkPathForMainNet> \
--spyRPC "[::]:7073"

Then to run the pyth_price_service docker container using a config file called ${HOME}/pyth_price_service/env and logging to directory ${HOME}/pyth_price_service/logs, do the following:

$ docker run \
--volume=${HOME}/pyth_price_service:/var/pyth_price_service \
-e pyth_price_service_CONFIG=/var/pyth_price_service/env \
--network=host \
-d \
pyth_price_service