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
We can use metamask in place of RSign if we make an analog to BasicWallet that uses RLP (recursive length prefix) in place of protobuf to serialize the signed parameters.
ethSig.rho has the findOrCreateWallet hitching post now (9631495)
sendTransaction can find the wallet to send from and have it verify the signature and find the wallet to send to. It can't yet transfer the funds because I haven't integrated real purses.
A little more rlp decoding (for nonce, value) is also TODO.
We can use metamask in place of RSign if we make an analog to
BasicWallet
that uses RLP (recursive length prefix) in place of protobuf to serialize the signed parameters.I think I have the tedious details prototyped:
https://github.com/dckc/RChain-API/blob/ethWallet/src/rlp.rho
https://github.com/dckc/RChain-API/blob/ethWallet/src/ethSig.rho
It relies on some new
ByteArray
methods, a couple of which I haven't written yet: rchain/rchain#1968It would also depend on a "hitching post" for "find or create the eth-style wallet for eth address A".
cc @JoshOrndorff @cboscolo
The text was updated successfully, but these errors were encountered: