Skip to content
Open
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 @@ -9,6 +9,7 @@
- added: Nym (NYM) wallet support
- added: opBNB (BNB) support
- added: Register SwapKit V3 as a separate exchange plugin
- added: Register n.exchange (nexchange) swap plugin
- changed: Manage tokens scene saves changes on explicit save instead of live toggling
- changed: Unify split wallet scene titles and add chain-specific descriptions for EVM and UTXO splits
- fixed: Security check notification not reappearing after dismissal
Expand Down
6 changes: 6 additions & 0 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,12 @@ export const asEnvConfig = asObject({
edgeApiKey: asOptional(asString, '')
}).withRest
),
NEXCHANGE_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, ''),
referralCode: asOptional(asString, '')
}).withRest
),
NYM_INIT: asCorePluginInit(asBoolean),
OPBNB_INIT: asCorePluginInit(asEvmApiKeys),
OPTIMISM_INIT: asCorePluginInit(asEvmApiKeys),
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const swapPlugins = {
godex: ENV.GODEX_INIT,
lifi: ENV.LIFI_INIT,
letsexchange: ENV.LETSEXCHANGE_INIT,
nexchange: ENV.NEXCHANGE_INIT,
sideshift: ENV.SIDESHIFT_INIT,
swapuz: ENV.SWAPUZ_INIT,

Expand Down
Loading