Replies: 2 comments 6 replies
|
Hi there, long time no see. Awesome project. Masstransit might be a good call,I haven't had the chance to use it yet but have followed the progress for sometime, it would be a fully fledged comm's layer that allows choosing between several underlying engines. |
3 replies
|
I don't think the daemon should be opinionated on transport of remote signing, just have good hooks for it (simple DTO objects/interface). |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We know how important it is to support remote signers.
The question here is: What transport layer should we use between the daemon and the signer?
I'll start by enumerating what layer some of the current implementations use:
Nowadays every company has access to a queue or pub/sub service, like RMQ, SQS, or Kafka. I believe that even Redis or Garnet should be enough for this task.
For the first iteration, we could:
Since pub/sub is inherently network native, this approach could pave the way to a distributed signing system, minimizing attack vectors and availability.
All reactions