Skip to content

Commit

Permalink
fix: update hashes and port
Browse files Browse the repository at this point in the history
  • Loading branch information
dvilelaf committed Jun 19, 2024
1 parent aac0916 commit 840032f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/constants/serviceTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ServiceTemplate } from '@/client';
export const SERVICE_TEMPLATES: ServiceTemplate[] = [
{
name: 'Trader Agent',
hash: 'bafybeieg45wcjcwd5znuwpjcp5scfhgdqwpfq43pzaare6nwvmy5bb56cm',
hash: 'bafybeiblmttux62rqbo2pmtyu5hwd6mcb2mj3b3tchd6lq5rsvdhotrfsq',
description: 'Trader agent for omen prediction markets',
image:
'https://operate.olas.network/_next/image?url=%2Fimages%2Fprediction-agent.png&w=3840&q=75',
Expand Down
2 changes: 1 addition & 1 deletion operate/services/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
async def check_service_health() -> bool:
"""Check the service health"""
async with aiohttp.ClientSession() as session:
async with session.get("http://localhost:8000/healthcheck") as resp:
async with session.get("http://localhost:8716/healthcheck") as resp:
status = resp.status
response_json = await resp.json()
return status == HTTP_OK and response_json.get(
Expand Down
2 changes: 1 addition & 1 deletion templates/trader.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Trader Agent"
description: "Trader agent for omen prediction markets"
hash: bafybeieg45wcjcwd5znuwpjcp5scfhgdqwpfq43pzaare6nwvmy5bb56cm
hash: bafybeiblmttux62rqbo2pmtyu5hwd6mcb2mj3b3tchd6lq5rsvdhotrfsq
image: https://operate.olas.network/_next/image?url=%2Fimages%2Fprediction-agent.png&w=3840&q=75
configuration:
nft: bafybeig64atqaladigoc3ds4arltdu63wkdrk3gesjfvnfdmz35amv7faq
Expand Down

0 comments on commit 840032f

Please sign in to comment.