Skip to content
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
2 changes: 1 addition & 1 deletion packages/non-deployable/token-allocation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This adapter accepts a list of currencies and quantities, and returns the total

The adapter takes the following environment variables:

To be functional at least one of the following underyling adapter locations will need to be provided.
To be functional at least one of the following underlying adapter locations will need to be provided.

| Required? | Name | Description | Options | Defaults to |
| :-------: | :-----------------------------: | :-------------------------------------------------: | :-----: | :---------: |
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/cryptocompare/test/e2e/adapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('execute', () => {
throw new Error('Could not start server when running CryptoCompare e2e tests')
}

// Send inital requests to warm the cache
// Send initial requests to warm the cache
const pendingRequests: Test[] = []
for (const reqData of Object.values(successfulRequests)) {
pendingRequests.push(req.post('/').send(reqData))
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/generic-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To support a specific value for input parameter `apiName`, the environment varia
| :-------: | :---------------------------: | :---------------------------------------------------: | :----: |
| ✅ | {API_NAME}\_API_URL | The API URL to use for a given `apiUrl`. | string |
| | {API_NAME}\_AUTH_HEADER | The header to pass the authentication credentials on. | string |
| | {API_NAME}\_AUTH_HEADER_VALUE | The credentials to pass on the authentcation header. | string |
| | {API_NAME}\_AUTH_HEADER_VALUE | The credentials to pass on the authentication header. | string |

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,6 @@ export const execute: ExecuteWithConfig<ExtendedConfig> = async (request, _, con
}
}

// Every method succeded. Network is healthy
// Every method succeeded. Network is healthy
return _respond(true)
}