Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 | import { ClientConfig } from 'sdk-signer-client';
export const signerConfig: ClientConfig = {
url: process.env.SIGNER_WS_URL || 'ws://localhost:9090',
apiKey: process.env.SIGNER_API_KEY || 'your-api-key-change-this',
timeout: 30000,
reconnectInterval: 2000, // Let SDK try quick reconnects first
maxReconnectAttempts: 3 // Limited SDK attempts, then our service takes over
};
|