-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config.var file to hide the endpoint and api keys #5
- Loading branch information
Showing
2 changed files
with
34 additions
and
6 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
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,13 @@ | ||
import { AxiosRequestConfig } from "axios"; | ||
|
||
export const ETHEREUM_ENDPOINT = ""; | ||
|
||
export const COSMOS_RPC_ENDPOINT = ""; | ||
export const COSMOS_RPC_CONFIG: AxiosRequestConfig | undefined = undefined; | ||
export const COSMOS_REST_ENDPOINT = ""; | ||
export const COSMOS_REST_CONFIG: AxiosRequestConfig | undefined = undefined; | ||
|
||
export const KAVA_RPC_ENDPOINT = ""; | ||
export const KAVA_RPC_CONFIG: AxiosRequestConfig | undefined = undefined; | ||
export const KAVA_REST_ENDPOINT = ""; | ||
export const KAVA_REST_CONFIG: AxiosRequestConfig | undefined = undefined; |