Skip to content

Commit

Permalink
Merge pull request #335 from Lumerin-protocol/fix/resetratingconfig
Browse files Browse the repository at this point in the history
Reset rating-config.json.example after defaults implemented
  • Loading branch information
abs2023 authored Dec 4, 2024
2 parents f0f3931 + 9d76e5f commit 8863816
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
--form "ref=${{ env.gitlab_branch }}" \
--form "variables[SOURCE_REPO]=${{ github.repository }}" \
--form "variables[SOURCE_BRANCH]=${{ github.ref_name }}" \
--form "variables[GITHUB_VFULL]=${{ env.VFULL }}" \
--form "variables[GITHUB_TAG]=${{ env.TAG_NAME }}")

# Parse JSON response using jq
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/proxy-router.main.env
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ PROXY_ADDRESS=0.0.0.0:3333
WEB_ADDRESS=0.0.0.0:8082
WEB_PUBLIC_URL=http://localhost:8082
MODELS_CONFIG_PATH=
RATING_CONFIG_PATH=
ETH_NODE_USE_SUBSCRIPTIONS=false
ETH_NODE_ADDRESS=
ETH_NODE_LEGACY_TX=false
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/proxy-router.test.env
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ PROXY_ADDRESS=0.0.0.0:3333
WEB_ADDRESS=0.0.0.0:8082
WEB_PUBLIC_URL=http://localhost:8082
MODELS_CONFIG_PATH=
RATING_CONFIG_PATH=
ETH_NODE_USE_SUBSCRIPTIONS=false
ETH_NODE_ADDRESS=
ETH_NODE_LEGACY_TX=false
Expand Down
1 change: 1 addition & 0 deletions proxy-router/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ PROXY_ADDRESS=0.0.0.0:3333
WEB_ADDRESS=0.0.0.0:8082
WEB_PUBLIC_URL=http://localhost:8082
MODELS_CONFIG_PATH=
RATING_CONFIG_PATH=
ETH_NODE_USE_SUBSCRIPTIONS=false
ETH_NODE_ADDRESS=
ETH_NODE_LEGACY_TX=false
Expand Down
1 change: 1 addition & 0 deletions proxy-router/.env.example.win
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ PROXY_ADDRESS=0.0.0.0:3333
WEB_ADDRESS=0.0.0.0:8082
WEB_PUBLIC_URL=http://localhost:8082
MODELS_CONFIG_PATH=
RATING_CONFIG_PATH=
ETH_NODE_USE_SUBSCRIPTIONS=false
ETH_NODE_ADDRESS=
ETH_NODE_LEGACY_TX=false
Expand Down
3 changes: 2 additions & 1 deletion proxy-router/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ bin

data*

models-config.json
models-config.json
rating-config.json
File renamed without changes.
34 changes: 25 additions & 9 deletions ui-desktop/.env.example
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
# This file is used to set the environment variables for the cicd workflow
# Contract and Token current as of 11/5/2024

# MAINNET VALUES
CHAIN_ID=42161
DIAMOND_ADDRESS=0xDE819AaEE474626E3f34Ef0263373357e5a6C71b
DISPLAY_NAME=Arbitrum
EXPLORER_URL=https://arbiscan.io/tx/{{hash}}
TOKEN_ADDRESS=0x092bAaDB7DEf4C3981454dD9c0A0D7FF07bCFc86
DEV_TOOLS=false
SYMBOL_ETH=ETH
SYMBOL_COIN=MOR

# TESTNET VALUES
#CHAIN_ID=421614
#DIAMOND_ADDRESS=0xb8C55cD613af947E73E262F0d3C54b7211Af16CF
#DISPLAY_NAME=Sepolia Arbitrum
#EXPLORER_URL=https://sepolia.arbiscan.io/tx/{{hash}}
#TOKEN_ADDRESS=0x34a285a1b1c166420df5b6630132542923b5b27e
#DEV_TOOLS=true
#SYMBOL_ETH=ETH
#SYMBOL_COIN=MOR

# COMMON
BYPASS_AUTH=false
CHAIN_ID=421614
DEBUG=false
DEFAULT_SELLER_CURRENCY=BTC
DEV_TOOLS=true
DIAMOND_ADDRESS=0xb8C55cD613af947E73E262F0d3C54b7211Af16CF
DISPLAY_NAME=Sepolia Arbitrum
EXPLORER_URL=https://sepolia.arbiscan.io/tx/{{hash}}
IGNORE_DEBUG_LOGS=false
PROXY_WEB_DEFAULT_PORT=8082
SENTRY_DSN=
SYMBOL_ETH=ETH
SYMBOL_COIN=MOR
TOKEN_ADDRESS=0x34a285a1b1c166420df5b6630132542923b5b27e
TRACKING_ID=
FAILOVER_ENABLED=
FAILOVER_ENABLED=

0 comments on commit 8863816

Please sign in to comment.