Skip to content
Draft
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
49 changes: 37 additions & 12 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
3 changes: 2 additions & 1 deletion packages/composites/glv-token/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@
"typescript": "5.8.3"
},
"dependencies": {
"@chainlink/data-streams-sdk": "^1.0.3",
"@chainlink/external-adapter-framework": "2.7.0",
"decimal.js": "^10.3.1",
"ethers": "^5.4.6",
"ethers": "^6.15.0",
"tslib": "2.4.1"
}
}
14 changes: 7 additions & 7 deletions packages/composites/glv-token/src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ export const config = new AdapterConfig(
required: true,
default: '0x6a9505D0B44cFA863d9281EA5B0b34cB36243b45',
},
TIINGO_ADAPTER_URL: {
description: 'URL of Tiingo EA',
DATA_ENGINE_BASE_URL: {
description: 'URL of DataEngine',
type: 'string',
required: true,
},
NCFX_ADAPTER_URL: {
description: 'URL of NCFX EA',
DATA_ENGINE_USER_ID: {
description: 'User ID of DataEngine',
type: 'string',
required: true,
},
COINMETRICS_ADAPTER_URL: {
description: 'URL of Coinmetrics EA',
DATA_ENGINE_USER_SECRET: {
description: 'Secret key for DataEngine',
type: 'string',
required: true,
},
MIN_REQUIRED_SOURCE_SUCCESS: {
description: 'Minimum number of source EAs that need to successfully return a value.',
type: 'number',
required: true,
default: 2,
default: 1,
validate: validator.integer({ min: 1, max: 3 }),
},
MARKET_INFO_API: {
Expand Down
Loading
Loading