Results 11 comments of Kata Choi

Is using the `ckb.rpc.paramsFormatter.toRawTransaction` in the UI sufficient to resolve the problem that this PR is trying to resolve? In this way, we can avoid implementing an additional backend API...

The UI has been wired up with the background service, and supports the following features: - **Import HD wallets from air-gapped wallets** (I tested with _airgap.it_ vault mobile app. In...

Hi, I wonder if there is a chance to give this PR a round of review, so I can know whether this is going in the right direction since it...

Thanks @greg-nagy for the comment. Sounds like it is in the right direction for me to continue. One thing I think is necessary at this stage is the UI/UX design....

I think we would still need to `add_constant` to constraint constants. For this case in the mul constraint: ```rust let zero = compiler.backend.add_constant( Some("encoding zero for the result of 0...

This `add_constant` does two things: 1. store a constant var 2. constraint the constant value So if we want to remove this interface, we would need to replace it with...

Adding this to the backend trait will only yell within the front end layer where calls these backend api, but not at the frontend to frontend calls which wrap these...

relevant: https://github.com/zksecurity/noname/issues/47

Hi. I won’t be available for this in a month or two. Happy to see someone can pick this up. So please feel free to go ahead. On Tue, 25...

It seems the asm is a must to have feature for all the backends for debugging purposes. So we'd better to keep it as part of the backend interface. Related...