This changeset migrates the rollkit demo to go-da, the more modern version
of the DA interface for Rollkit.
One of the most important changes is that rollkit doesn't embed the adapters anymore.
Instead, it communicates with the adapter through gRPC protocol. Instead of yet another
adapter, this implements gRPC dock directly, which kind of challenges the current
architecture.
Notable changes:
demo/rollkit was regenerated from the tutorial once again. That turned out to be
easier than manually porting changes. I ported init-local.sh though.
removed adapter/sugondat since it is not longer needed
since it looks like we are going away from the docker workflow, I did not port
the Dockerfile to the new code. I left the docker-compose.yml though, just removed
the gm service.
the JSON-RPC was pushed to the sovereign dock. Now serve subcommand will launch
only the specified dock instead of all of them. Each dock has its own subcommand.
ikura-shim serve rollkit is now used for running rollkit.
now dock subcommands get their own options. E.g. rollkit doc now can accept the default
namespace in case requests from rollkit without namespace (they do atm).
There are some things that were left for follow ups:
This changeset migrates the rollkit demo to go-da, the more modern version of the DA interface for Rollkit.
One of the most important changes is that rollkit doesn't embed the adapters anymore. Instead, it communicates with the adapter through gRPC protocol. Instead of yet another adapter, this implements gRPC dock directly, which kind of challenges the current architecture.
Notable changes:
serve
subcommand will launch only the specified dock instead of all of them. Each dock has its own subcommand.ikura-shim serve rollkit
is now used for running rollkit.There are some things that were left for follow ups:
Closes #106