Skip to content

Commit

Permalink
refactor: use new node url
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalovelo committed Sep 8, 2022
1 parent 5edef74 commit 3603716
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .env.dev-uat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Server Configuration
NODE_URL = https://testnet.aeternity.io
WS_URL = wss://sdk-testnet.aepps.com/channel
NODE_URL = http://testnet.prd.aepps.com:3013
WS_URL = http://testnet.prd.aepps.com:3014
COMPILER_URL = https://compiler.aepps.com
FAUCET_PUBLIC_ADDRESS = ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688
BOT_SERVICE_PORT=3000
Expand All @@ -10,9 +10,9 @@ NETWORK_ID = ae_uat
VITE_NODE_ENV=staging
VITE_BOT_SERVICE_URL=http://localhost:3000
VITE_CLIENT_PORT=8000
VITE_NODE_URL=https://testnet.aeternity.io
VITE_NODE_URL=http://testnet.prd.aepps.com:3013
VITE_COMPILER_URL= https://compiler.aepps.com
VITE_WS_URL= wss://sdk-testnet.aepps.com/channel
VITE_WS_URL= http://testnet.prd.aepps.com:3014
VITE_FAUCET_PUBLIC_ADDRESS = ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688
VITE_NETWORK_ID = ae_uat
VITE_RESPONDER_HOST = localhost
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
VITE_NODE_ENV=staging
VITE_BOT_SERVICE_URL=https://develop-state-channel-demo-backend.dev.aepps.com
VITE_CLIENT_PORT=8000
VITE_NODE_URL=https://testnet.aeternity.io
VITE_NODE_URL=http://testnet.prd.aepps.com:3013
VITE_COMPILER_URL= https://compiler.aepps.com
VITE_WS_URL= wss://sdk-testnet.aepps.com/channel
VITE_WS_URL= http://testnet.prd.aepps.com:3014
VITE_FAUCET_PUBLIC_ADDRESS = ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688
VITE_NETWORK_ID = ae_uat
VITE_RESPONDER_HOST = localhost
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prd-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ jobs:
VITE_NODE_ENV=staging
VITE_BOT_SERVICE_URL=https://state-channel-demo-backend.dev.aepps.com
VITE_CLIENT_PORT=8000
VITE_NODE_URL=https://testnet.aeternity.io
VITE_NODE_URL=http://testnet.prd.aepps.com:3013
VITE_COMPILER_URL= https://compiler.aepps.com
VITE_WS_URL= wss://sdk-testnet.aepps.com/channel
VITE_WS_URL= http://testnet.prd.aepps.com:3014
VITE_FAUCET_PUBLIC_ADDRESS = ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688
VITE_NETWORK_ID = ae_uat
VITE_RESPONDER_HOST = localhost
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stg-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ jobs:
VITE_NODE_ENV=staging
VITE_BOT_SERVICE_URL=https://pr-${{ env.PR_NUMBER }}-state-channel-demo-backend.stg.aepps.com
VITE_CLIENT_PORT=8000
VITE_NODE_URL=https://testnet.aeternity.io
VITE_NODE_URL=http://testnet.prd.aepps.com:3013
VITE_COMPILER_URL= https://compiler.aepps.com
VITE_WS_URL= wss://sdk-testnet.aepps.com/channel
VITE_WS_URL= http://testnet.prd.aepps.com:3014
VITE_FAUCET_PUBLIC_ADDRESS = ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688
VITE_NETWORK_ID = ae_uat
VITE_RESPONDER_HOST = localhost
Expand Down
4 changes: 2 additions & 2 deletions server/src/env/.env.testnet.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const NODE_URL = "https://testnet.aeternity.io ";
export const WS_URL = "wss://sdk-testnet.aepps.com/channel ";
export const NODE_URL = "http://testnet.prd.aepps.com:3013 ";
export const WS_URL = "http://testnet.prd.aepps.com:3014 ";
export const COMPILER_URL = "https://compiler.aepps.com";
export const FAUCET_PUBLIC_ADDRESS =
"ak_2iBPH7HUz3cSDVEUWiHg76MZJ6tZooVNBmmxcgVK6VV8KAE688";
Expand Down

0 comments on commit 3603716

Please sign in to comment.