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 @@ -27,6 +27,7 @@
- changed: Distinguish network vs service errors in gift card scenes
- changed: Lock network fee to high priority for gift card purchases
- changed: Pad gift card purchase quantity by 0.00000002 to mitigate underpayments
- 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
- changed: ramps: Infinite buy support enabled
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