From 97f0dd6eb77b7b610a894c30532077b8f8e44463 Mon Sep 17 00:00:00 2001 From: 0xKermo Date: Mon, 21 Oct 2024 21:40:09 +0700 Subject: [PATCH] Update token update workflow endpoints to production URLs --- .github/workflows/token-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/token-update.yml b/.github/workflows/token-update.yml index ec82f71..4b50291 100644 --- a/.github/workflows/token-update.yml +++ b/.github/workflows/token-update.yml @@ -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"