-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #25 from drips-network/multi-chain-api"
- Loading branch information
Showing
83 changed files
with
4,669 additions
and
7,585 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 |
---|---|---|
@@ -1,31 +1,17 @@ | ||
PORT=string # Optional. The API server port. Defaults to 8080. | ||
|
||
NETWORK=string # Required. The network to connect to. See `SupportedChains` in `types.ts` for supported networks. | ||
|
||
# You should provide at least one of the following RPC URLs: | ||
RPC_URL_MAINNET=string # The RPC URL for the Mainnet provider. | ||
RPC_ACCESS_TOKEN_MAINNET=string # Optional. The access token to use for the RPC. If specified, it will be used as a bearer token in the `Authorization` header. | ||
RPC_URL_SEPOLIA=string # The RPC URL for the Sepolia provider. | ||
RPC_ACCESS_TOKEN_SEPOLIA=string # Optional. The access token to use for the RPC. If specified, it will be used as a bearer token in the `Authorization` header. | ||
RPC_URL_OPTIMISM_SEPOLIA=string # The RPC URL for the Optimism Sepolia provider. | ||
RPC_ACCESS_TOKEN_OPTIMISM_SEPOLIA=string # Optional. The access token to use for the RPC. If specified, it will be used as a bearer token in the `Authorization` header. | ||
RPC_URL_POLYGON_AMOY=string # The RPC URL for the Polygon Amoy provider. | ||
RPC_ACCESS_TOKEN_POLYGON_AMOY=string # Optional. The access token to use for the RPC. If specified, it will be used as a bearer token in the `Authorization` header. | ||
RPC_URL_FILECOIN=string # The RPC URL for the Filecoin provider. | ||
RPC_ACCESS_TOKEN_FILECOIN=string # Optional. The access token to use for the RPC. If specified, it will be used as a bearer token in the `Authorization` header. | ||
|
||
PUBLIC_API_KEYS=string # Required. Comma-separated list of strings API keys that rate limit is applied to. | ||
DRIPS_API_KEY=string # Required. API key withouth rate limit. | ||
|
||
NODE_ENV=string # Required. 'development' or 'production'. | ||
|
||
POSTGRES_CONNECTION_STRING=string # Required. The connection string for the database. | ||
|
||
PRETEND_ALL_REPOS_EXIST=boolean # If true, app will always assume all GitHub repos exist. Used in E2E tests. Defaults to false. | ||
|
||
RATE_LIMIT_WINDOW_IN_MINUTES=number # Optional. defaults to 2. | ||
RATE_LIMIT_MAX_REQUESTS_PER_WINDOW=number # Optional. defaults to 1000. | ||
MAX_QUERY_DEPTH=number # Optional. defaults to 4. | ||
TIMEOUT_IN_SECONDS=number # Optional. defaults to 20. | ||
|
||
IPFS_GATEWAY_URL=string # Optional. The IPFS gateway URL to use for fetching IPFS data. Defaults to 'https://drips.mypinata.cloud'. | ||
PORT=string | ||
NETWORK=string # See 'SupportedNetwork' type. | ||
PUBLIC_API_KEYS=string # comma-separated list of strings | ||
DRIPS_API_KEY=string | ||
INFURA_API_KEY=string | ||
POSTGRES_CONNECTION_STRING=string | ||
REPO_DRIVER_ADDRESS=string # optional, defaults to mainnet address of latest deployment | ||
DRIPS_ADDRESS=string # optional, defaults to mainnet address of latest deployment | ||
RPC_URL=string # optional, defaults to infura mainnet | ||
PRETEND_ALL_REPOS_EXIST=boolean # true or false. If true, app will always assume all GitHub repos exist. Used in E2E tests. Defaults to false. | ||
NODE_ENV=string # 'development' or 'production'. | ||
RATE_LIMIT_WINDOW_IN_MINUTES=number # optional, defaults to 2. | ||
RATE_LIMIT_MAX_REQUESTS_PER_WINDOW=number # optional, defaults to 1000. | ||
MAX_QUERY_DEPTH=number # optional, defaults to 4. | ||
TIMEOUT_IN_SECONDS=number # optional, defaults to 20. | ||
ADDRESS_DRIVER_ADDRESS=string # required, address of the `AddressDriver` contract. | ||
IPFS_GATEWAY_URL=string # required, URL of the IPFS gateway. |
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
Oops, something went wrong.