diff --git a/.changeset/good-ducks-sell.md b/.changeset/good-ducks-sell.md new file mode 100644 index 0000000000..817fd79b6d --- /dev/null +++ b/.changeset/good-ducks-sell.md @@ -0,0 +1,6 @@ +--- +'@chainlink/bank-frick-adapter': patch +'@chainlink/superstate-adapter': patch +--- + +Mark sensitive fields for superstate and bank_frick diff --git a/packages/sources/bank-frick/src/config/index.ts b/packages/sources/bank-frick/src/config/index.ts index ef388f4ddd..0090398eb3 100644 --- a/packages/sources/bank-frick/src/config/index.ts +++ b/packages/sources/bank-frick/src/config/index.ts @@ -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.', @@ -33,6 +34,7 @@ export const config = new AdapterConfig({ description: '', type: 'string', required: true, + sensitive: true, validate: { meta: { details: 'Invalid private key', diff --git a/packages/sources/superstate/src/config/index.ts b/packages/sources/superstate/src/config/index.ts index 0c15150678..9fa8a34d44 100644 --- a/packages/sources/superstate/src/config/index.ts +++ b/packages/sources/superstate/src/config/index.ts @@ -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',