Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update env file to replace deprecated vars and values #472

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
REACT_APP_CHAIN_ID=mainnet
REACT_APP_GATEWAY_BASE_URL="https://mainnet.rpc.grove.city/v1/60a2ac11b1747c6552385c61"
REACT_APP_TX_FEE=10000
REACT_APP_MAX_TRANSACTION_LIST_COUNT=5000
REACT_APP_MIN_TRANSACTION_LIST_COUNT=200
REACT_APP_BLOCK_EXPLORER_BASE_URL=https://poktscan.com
REACT_APP_BUY_POKT_BASE_URL=https://forum.pokt.network/t/secondary-markets-for-pokt/629
REACT_APP_POKT_USD_VALUE=0.28
REACT_APP_HTTP_TIMEOUT=0
REACT_APP_HTTP_HEADERS='{"Content-Type": "application/json", "Blockchain-Subdomain": "mainnet"}'
REACT_APP_USE_LEGACY_CODEC=true
VITE_CHAIN_ID=mainnet
VITE_GATEWAY_BASE_URL="https://mainnet.rpc.grove.city/v1/60a2ac11b1747c6552385c61"
VITE_TX_FEE=10000
VITE_MAX_TRANSACTION_LIST_COUNT=5000
VITE_MIN_TRANSACTION_LIST_COUNT=200
VITE_BLOCK_EXPLORER_BASE_URL=https://poktscan.com
VITE_BUY_POKT_BASE_URL=https://forum.pokt.network/t/secondary-markets-for-pokt/629
VITE_POKT_USD_VALUE=0.28
VITE_HTTP_TIMEOUT=0
VITE_HTTP_HEADERS='{"Content-Type": "application/json"}'
VITE_USE_LEGACY_CODEC=false
2 changes: 1 addition & 1 deletion .github/workflows/testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
VITE_TX_FEE: "10000"
VITE_MAX_TRANSACTION_LIST_COUNT: "5000"
VITE_MIN_TRANSACTION_LIST_COUNT: "200"
VITE_BLOCK_EXPLORER_BASE_URL: "https://explorer.testnet.pokt.network"
VITE_BLOCK_EXPLORER_BASE_URL: "https://poktscan.com"
VITE_BUY_POKT_BASE_URL: "https://forum.pokt.network/t/secondary-markets-for-pokt/629"
VITE_POKT_USD_VALUE: ${{ secrets.POKT_USD_MARKET_PRICE }}
VITE_HTTP_TIMEOUT: 0
Expand Down