Skip to content

Commit

Permalink
update to https endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroShkvorets committed Feb 29, 2024
1 parent 8b28b49 commit d2f8449
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion subgraph/graph-node/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ main() {

prepare() {
if [[ -z "$SUBSTREAMS_ENDPOINT" ]]; then
export SUBSTREAMS_ENDPOINT="http://goerli-sfdm37c.mar.eosn.io:10016"
export SUBSTREAMS_ENDPOINT="https://goerli-cl.substreams.pinax.network:443"
fi
if [[ -z "$SUBSTREAMS_API_TOKEN" ]]; then
echo "Your environment is not corrrectly configured to launch Docker Compose configuration."
Expand Down
10 changes: 5 additions & 5 deletions substreams/Taskfile.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'

env:
ENDPOINT: goerli-sfdm37c.mar.eosn.io:10016
ENDPOINT: goerli-cl.substreams.pinax.network:443

tasks:
protogen:
Expand All @@ -26,21 +26,21 @@ tasks:
deps:
- build
cmds:
- substreams run -e $ENDPOINT map_blobs -s -10 --plaintext
- substreams run -e $ENDPOINT map_blobs -s -10

gui:
desc: "Runs the substreams module with the GUI"
deps:
- build
cmds:
- substreams gui -e $ENDPOINT map_blobs -s -10 --plaintext
- substreams gui -e $ENDPOINT map_blobs -s -10

sink:
desc: "Sinks substreams module into KV store"
deps:
- build
cmds:
- substreams-sink-kv inject $ENDPOINT badger3://./blobs.db substreams.yaml --server-listen-addr=:8000 --flush-interval 100 --plaintext
- substreams-sink-kv inject $ENDPOINT badger3://./blobs.db substreams.yaml --server-listen-addr=:8000 --flush-interval 100

sink:serve:
desc: "Serve sunk data from KV store"
Expand All @@ -52,4 +52,4 @@ tasks:
start:docker:
desc: "Starts the substreams module in a Docker container"
cmds:
- docker run -p 8000:8000 -v $(pwd)/blobs.db:/app/blobs.db ghcr.io/streamingfast/substreams-sink-kv:b38cd28 inject $ENDPOINT badger3:///app/blobs.db https://github.com/pinax-network/blob-service/releases/download/v0.6.1/eth-blobs-v0.6.1.spkg --server-listen-addr=:8000 --plaintext
- docker run -p 8000:8000 -v $(pwd)/blobs.db:/app/blobs.db ghcr.io/streamingfast/substreams-sink-kv:b38cd28 inject $ENDPOINT badger3:///app/blobs.db https://github.com/pinax-network/blob-service/releases/download/v0.6.1/eth-blobs-v0.6.1.spkg --server-listen-addr=:8000

0 comments on commit d2f8449

Please sign in to comment.