Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- changed: Reconfigure mixFetch options for network reliability.

## 2.43.1 (2026-02-23)

- changed: Upgrade `@nymproject/mix-fetch` to improve performance with new concurrency changes.
Expand Down
8 changes: 7 additions & 1 deletion src/util/nym.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ import { EdgeLog } from '../types/types'
* Configuration options for the NYM mixFetch client.
*/
export const mixFetchOptions: SetupMixFetchOps = {
forceTls: true // force WSS
preferredGateway: '5rXcNe2a44vXisK3uqLHCzpzvEwcnsijDMU7hg4fcYk8', // with WSS
preferredNetworkRequester:
'5x6q9UfVHs5AohKMUqeivj7a556kVVy7QwoKige8xHxh.6CFoB3kJaDbYz6oafPJxNxNjzahpT2NtgtytcSyN9EvF@5rXcNe2a44vXisK3uqLHCzpzvEwcnsijDMU7hg4fcYk8',
forceTls: true, // force WSS
mixFetchOverride: {
requestTimeoutMs: 300000
}
}

// MixFetch initialization state
Expand Down
Loading