Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate the codebase from tendermint-rs dependency to cometbft-rs #1073

Open
2 tasks
adizere opened this issue Feb 2, 2024 · 2 comments · May be fixed by #1103
Open
2 tasks

Migrate the codebase from tendermint-rs dependency to cometbft-rs #1073

adizere opened this issue Feb 2, 2024 · 2 comments · May be fixed by #1103
Assignees
Labels
A: blocked Admin: blocked by another (internal/external) issue or PR S: deps Scope: related to dependencies

Comments

@adizere
Copy link
Contributor

adizere commented Feb 2, 2024

Feature Summary

We need to test, validate, and ship the upgrade to CometBFT-rs so that we can safely sunset Tendermint-rs eventually.

Tasks

  • This work is paired with Hermes-side migration
  • Announce this testing and the planned migration to all users of IBC-rs (maybe in community call) to give them an early notification
@mzabaluev
Copy link
Contributor

mzabaluev commented Feb 6, 2024

The tendermint packages are used as a dependency throughout the cosmos-sdk and interchain-security proto files. The generated files in cometbft-proto correspond to the cometbft.* proto packages as published buf.build/cometbft/cometbft. So the conversion must start with the proto files in the upstream repositories.

@mzabaluev mzabaluev added the A: blocked Admin: blocked by another (internal/external) issue or PR label Feb 6, 2024
@mzabaluev
Copy link
Contributor

So the conversion must start with the proto files in the upstream repositories.

There could be a way forward that does not need waiting for upstream protos to convert from the bundled tendermint.* proto files. We can remap the tendermint.* proto packages to the cometbft_proto modules corresponding to the protobuf revisions in the versioned cometbft.* layout, using the extern_path option of prost-build in the proto-compiler.

Unfortunately, as I have just discovered, the upstream proto revisions as currently pulled to build ibc-proto-rs are not consistent as per the revisions of tendermint they expect to import:

However, by the way the build process is set up in sync-protobuf.sh, all of these inputs to proto-compiler actually end up including the tendermint/* protobuf files found in the cosmos-sdk buf export (the proto-include directory).
Which means our ibc:: generated types for this set of upstream revisions do not necessarily interoperate with the Go types generated in ibc-go as per the targeted commit.

The proper way out of this mess is to convert the upstreams to produce buf modules and reuse buf.build/cometbft/cometbft as a common dependency. Then the build process in ibc-proto-rs could consume the buf modules to generate Rust bindings for them.

Meanwhile, it's possible to juggle the src/*_COMMIT files in ibc-proto-rs to arrive at a combination of proto upstreams that happens to use the same revision of the tendermint protos, and then do the extern_path trick on that. But it's a high-quality balancing act that needs developer's time and care. Which is precisely what buf is meant to get rid of.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A: blocked Admin: blocked by another (internal/external) issue or PR S: deps Scope: related to dependencies
Projects
Status: 🛑 Blocked
Development

Successfully merging a pull request may close this issue.

3 participants