Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: explorer- update organisation name to sprinter #240

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_mainnet_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_testnet_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/build ./build
COPY --from=builder /app/prisma ./prisma
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
EXPOSE 8000

COPY start-prod.sh /start-prod.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.api
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ FROM node:18.15-alpine
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/build ./build
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
EXPOSE 8000

CMD [ "node", "./build/index.js"]
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
evm1:
image: ghcr.io/sygmaprotocol/indexer-evm1:latest
image: ghcr.io/sprintertech/indexer-evm1:latest
container_name: evm1
command: ganache-cli --chainId 1337 -d --db data/ --blockTime 2 > /dev/null
logging:
Expand All @@ -10,7 +10,7 @@ services:
- "8545:8545"

evm2:
image: ghcr.io/sygmaprotocol/indexer-evm2:latest
image: ghcr.io/sprintertech/indexer-evm2:latest
command: ganache-cli --chainId 1338 -d --db data/ --blockTime 2 > /dev/null
container_name: evm2
logging:
Expand All @@ -21,7 +21,7 @@ services:
substrate-pallet:
container_name: substrate-pallet
command: ["--pruning=25000"]
image: ghcr.io/sygmaprotocol/indexer-substrate:latest
image: ghcr.io/sprintertech/indexer-substrate:latest
ports:
- "9944:9944"
- "9933:9933"
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
dockerfile: ./Dockerfile
restart: always
environment:
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
SHARED_CONFIG_URL: https://ipfs.io/ipfs/bafkreiasnla2ya55of6nwm3swjstip4q2ixfa3t6tvixyibclfovxnerte
RPC_URL_CONFIG: '[{"id": 1, "endpoint": "http://evm1:8545"}, {"id": 2, "endpoint": "http://evm2:8545"}, {"id": 3, "endpoint": "ws://substrate-pallet:9944"}]'
RETRY_COUNT: '1'
Expand All @@ -91,6 +91,6 @@ services:
context: .
dockerfile: ./Dockerfile.api
environment:
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer
ports:
- "8000:8000"
Loading