Keymaster -- Optics Transaction Wallet Funding, Monitoring, and Management #737
yourbuddyconner
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
The config file:
Networks: List of supported networks, |
Beta Was this translation helpful? Give feedback.
1 reply
-
MVP Features:
Extra Credit Features
Program Logic:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem: Reusing transaction signers across multiple homes results in nonce collisions when agents from separate homes try to write to the same replica at the same time.
Solution: Use unique signers per-home.
Problem: For 4 homes (alfajores, kovan, rinkeby, rinkarby) with 5 addresses each (kathy, watcher, updater, processor, relayer), this means there will be 20 unique addresses and each address has to be funded on each network resulting in
20 * 4 = 80
unique accounts across all networks which must be funded and topped up regularly.Generalized:
num_homes^2 * num_addresses
Solution: Write a tool that stores metadata about homes, addresses and sources of funds to make it easy to manage this quickly ballooning issue.
Beta Was this translation helpful? Give feedback.
All reactions