Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .changeset/good-ducks-sell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@chainlink/bank-frick-adapter': patch
'@chainlink/superstate-adapter': patch
---

Mark sensitive fields for superstate and bank_frick
2 changes: 2 additions & 0 deletions packages/sources/bank-frick/src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const config = new AdapterConfig({
description: 'The API key to use for making requests to the Bank Frick API',
type: 'string',
required: true,
sensitive: true,
},
PAGE_SIZE: {
description: 'The number of accounts to fetch per call to /accounts. Must be >= 1 and <= 500.',
Expand All @@ -33,6 +34,7 @@ export const config = new AdapterConfig({
description: '',
type: 'string',
required: true,
sensitive: true,
validate: {
meta: {
details: 'Invalid private key',
Expand Down
2 changes: 2 additions & 0 deletions packages/sources/superstate/src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ export const config = new AdapterConfig(
TRANSACTION_API_KEY: {
description: 'Api key for /v2/transactions API endpoints',
type: 'string',
sensitive: true,
},
TRANSACTION_API_SECRET: {
description: 'Api secret for /v2/transactions API endpoints',
type: 'string',
sensitive: true,
},
LOOKBACK_DAYS: {
description: 'The number of days of historical data to retrieve',
Expand Down
Loading