2

I'm using Javascript SDK. Currently it seems random. I'm wanting to submit to a specific node to reduce latency

Defi Girl
  • 186
  • 4

1 Answers1

2

Yes you can do that. You can specify a consensus node you want to submit the transaction to like the example below.

 const customClient = Client.forNetwork(node).setMirrorNetwork(
   "custom.mirrornode.com:5600"
 );
Defi Girl
  • 186
  • 4