Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
c9db23b
DF-22512: Patches sensitive fields for Bank Frick & Superstate EAs
cl-efornaciari Nov 24, 2025
ec8d949
adds changeset
cl-efornaciari Nov 26, 2025
b16416b
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
dbffe4b
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
702c810
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
a009e2f
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
0a2335e
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
2e19ae3
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
1bf78c6
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 26, 2025
30c786d
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 27, 2025
f150e57
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 27, 2025
6a0313f
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 28, 2025
58f6d61
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 28, 2025
81e2c62
Merge branch 'main' into feature/DF-22512/patch-sensitive-fields-for-…
app-token-issuer-data-feeds[bot] Nov 28, 2025
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