Skip to content

Commit

Permalink
Update token update workflow endpoints to production URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKermo committed Oct 21, 2024
1 parent ad363be commit 97f0dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/token-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
# Construct the image URL dynamically
if [[ $FILE == scroll/tokens/* ]]; then
IMAGE_URL="https://raw.githubusercontent.com/Fibrous-Finance/Fibrous-tokens/refs/heads/main/images/scroll/${ADDRESS}.png"
ENDPOINT="https://test-graph.fibrous.finance/scroll/update_token"
ENDPOINT="https://graph.fibrous.finance/scroll/update_token"
elif [[ $FILE == starknet/tokens/* ]]; then
IMAGE_URL="https://raw.githubusercontent.com/Fibrous-Finance/Fibrous-tokens/refs/heads/main/images/starknet/${ADDRESS}.png"
ENDPOINT="https://test-graph.fibrous.finance/starknet/update_token"
ENDPOINT="https://graph.fibrous.finance/starknet/update_token"
fi
echo "Sending POST request to $ENDPOINT with address: $ADDRESS and imageUrl: $IMAGE_URL"
Expand Down

0 comments on commit 97f0dd6

Please sign in to comment.