-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from CudoVentures/release1.2.0
Release 1.2.0
- Loading branch information
Showing
104 changed files
with
3,895 additions
and
1,583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# LOCAL | ||
VITE_APP_LOCAL_CAPTCHA_SITE_KEY='' | ||
VITE_APP_LOCAL_FAUCET_ADDRESS='' | ||
VITE_APP_LOCAL_BRIDGE_URL='' | ||
VITE_APP_LOCAL_GRAPHQL_URL='' | ||
VITE_APP_LOCAL_GRAPHQL_WS='' | ||
VITE_APP_LOCAL_RPC='' | ||
VITE_APP_LOCAL_API='' | ||
VITE_APP_LOCAL_EXPLORER_URL='' | ||
VITE_APP_LOCAL_STAKING_URL='' | ||
VITE_APP_LOCAL_CHAIN_NAME='' | ||
VITE_APP_LOCAL_CHAIN_ID='' | ||
|
||
# PRIVATE | ||
VITE_APP_PRIVATE_CAPTCHA_SITE_KEY='' | ||
VITE_APP_PRIVATE_FAUCET_ADDRESS='' | ||
VITE_APP_PRIVATE_BRIDGE_URL='' | ||
VITE_APP_PRIVATE_GRAPHQL_URL='' | ||
VITE_APP_PRIVATE_GRAPHQL_WS='' | ||
VITE_APP_PRIVATE_RPC='' | ||
VITE_APP_PRIVATE_API='' | ||
VITE_APP_PRIVATE_EXPLORER_URL='' | ||
VITE_APP_PRIVATE_STAKING_URL='' | ||
VITE_APP_PRIVATE_CHAIN_NAME='' | ||
VITE_APP_PRIVATE_CHAIN_ID='' | ||
|
||
# PUBLIC | ||
VITE_APP_PUBLIC_CAPTCHA_SITE_KEY='' | ||
VITE_APP_PUBLIC_FAUCET_ADDRESS='' | ||
VITE_APP_PUBLIC_BRIDGE_URL='' | ||
VITE_APP_PUBLIC_GRAPHQL_UR='' | ||
VITE_APP_PUBLIC_GRAPHQL_WS='' | ||
VITE_APP_PUBLIC_RPC='' | ||
VITE_APP_PUBLIC_API='' | ||
VITE_APP_PUBLIC_EXPLORER_URL='' | ||
VITE_APP_PUBLIC_STAKING_URL='' | ||
VITE_APP_PUBLIC_CHAIN_NAME='' | ||
VITE_APP_PUBLIC_CHAIN_ID='' | ||
|
||
# MAINNET | ||
VITE_APP_MAINNET_BRIDGE_URL='' | ||
VITE_APP_MAINNET_GRAPHQL_URL='' | ||
VITE_APP_MAINNET_GRAPHQL_WS='' | ||
VITE_APP_MAINNET_RPC='' | ||
VITE_APP_MAINNET_API='' | ||
VITE_APP_MAINNET_EXPLORER_URL='' | ||
VITE_APP_MAINNET_STAKING_URL='' | ||
VITE_APP_MAINNET_CHAIN_NAME='' | ||
VITE_APP_MAINNET_CHAIN_ID='' | ||
|
||
# GENERAL SETTINGS | ||
VITE_NODE_ENV='' #Production or empty | ||
VITE_APP_DEFAULT_NETWORK='' # LOCAL | PRIVATE | PUBLIC | MAINNET | ||
VITE_APP_GAS_PRICE=5000000000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/* eslint-disable import/prefer-default-export */ | ||
export const GET_CURRENCY_RATE_URL = (currency: string) => | ||
`https://api.coingecko.com/api/v3/simple/price?ids=CUDOS&vs_currencies=${currency}` | ||
|
||
export const GET_FAUCET_TOKENS = import.meta.env.VITE_FAUCET_URL |
Oops, something went wrong.