You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Communication with other components will happen via gRPC and should consist of:
gRPC server to receive
network notes, and
network tx committed / reverted
store client to fetch
existing network notes on startup
account state
block-producer client to submit network transactions
Configuration should therefore be the three gRPC endpoints.
Network notes, transactions and accounts still have to be formerly defined in the protocol, so we can simply use the conventional existing types for now.
We can ignore actual execution for now, but if a simple algorithm presents itself then that is also welcome. Note that we should not bundle multiple notes yet.
The component should be initialized with the set of network notes from the store; this should occur before any components are started since otherwise we have additional synchronisation between components to perform.
Add a new component responsible for creating network network transactions from network notes.
See parent issue #692 for full details.
Communication with other components will happen via gRPC and should consist of:
Configuration should therefore be the three gRPC endpoints.
Network notes, transactions and accounts still have to be formerly defined in the protocol, so we can simply use the conventional existing types for now.
We can ignore actual execution for now, but if a simple algorithm presents itself then that is also welcome. Note that we should not bundle multiple notes yet.
The component should be initialized with the set of network notes from the store; this should occur before any components are started since otherwise we have additional synchronisation between components to perform.
Partially blocked by
The text was updated successfully, but these errors were encountered: