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
5 changes: 5 additions & 0 deletions .changeset/fast-pandas-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@chainlink/nomia-adapter': patch
---

Add parseResponse NOMIA EA log for timing from logs
3 changes: 3 additions & 0 deletions packages/sources/nomia/src/transport/price.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export const httpTransport = new HttpTransport<HttpTransportTypes>({
})
},
parseResponse: (params, response) => {
// Helps us time request rate from logs
logger.info(`parseResponse called: params.length=${params.length}`)

// Validate basic response structure
if (!response.data || typeof response.data !== 'object') {
logger.error(
Expand Down
Loading