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 @@ -4,6 +4,7 @@

- added: Logbox disable option to env.json
- added: Reverse-resolve recipient addresses to ENS / Unstoppable Domains / ZNS names in the send flow, address modal, and transaction history.
- removed: SideShift `privateKey` from env config; the swap integration no longer sends the affiliate secret header.

## 4.49.0 (staging)

Expand Down
3 changes: 1 addition & 2 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,7 @@ export const asEnvConfig = asObject({
SEPOLIA_INIT: asCorePluginInit(asEvmApiKeys),
SIDESHIFT_INIT: asCorePluginInit(
asObject({
affiliateId: asOptional(asString, ''),
privateKey: asOptional(asString)
affiliateId: asOptional(asString, '')
}).withRest
),
SOLANA_INIT: asCorePluginInit(
Expand Down
Loading