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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased (develop)

- added: swaps.xyz swap provider wiring (SWAPSXYZ_INIT core plugin init and registration).
- added: Verbose logging for exchange rate queries: the request body, resolved/rate-less counts, and errors are captured when the Verbose Logging setting is enabled.
- added: Exchange-rate cache snapshot in the support log output, plus a `rates-cache-replay` script that re-runs those queries against the rates server and reports the result for each pair.
- added: "-m" tag on the version number in the Help scene for Maestro test builds
Expand Down
5 changes: 5 additions & 0 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,11 @@ export const asEnvConfig = asObject({
quiknodeApiKey: asOptional(asString, '')
}).withRest
),
SWAPSXYZ_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, '')
}).withRest
),
SWAPUZ_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, '')
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export const swapPlugins = {
letsexchange: ENV.LETSEXCHANGE_INIT,
nexchange: ENV.NEXCHANGE_INIT,
sideshift: ENV.SIDESHIFT_INIT,
swapsxyz: ENV.SWAPSXYZ_INIT,
swapuz: ENV.SWAPUZ_INIT,
xgram: ENV.XGRAM_INIT,
nymswap: ENV.NYM_SWAP_INIT,
Expand Down
Loading