github.com/cosmos/cosmos-sdk@v0.50.10/proto/README.md (about)

     1  # Maintaining Cosmos SDK Proto Files
     2  
     3  All of the Cosmos SDK proto files are defined here. This folder should
     4  be synced regularly with buf.build/cosmos/cosmos-sdk regularly by
     5  a maintainer by running `buf push` in this folder.
     6  
     7  User facing documentation should not be placed here but instead goes in
     8  `buf.md` and in each protobuf package following the guidelines in
     9  https://docs.buf.build/bsr/documentation.
    10  
    11  ## SDK x Buf
    12  
    13  | Cosmos SDK Version | Buf Commit Version                                                                                            |
    14  | ------------------ | ------------------------------------------------------------------------------------------------------------- |
    15  | Prior v0.46.0      | [Unavailable](https://github.com/bufbuild/buf/issues/1415)                                                    |
    16  | v0.46.x            | [8cb30a2c4de74dc9bd8d260b1e75e176](https://buf.build/cosmos/cosmos-sdk/docs/8cb30a2c4de74dc9bd8d260b1e75e176) |
    17  | v0.47.x            | [v0.47.0](https://buf.build/cosmos/cosmos-sdk/docs/v0.47.0)                                                   |
    18  | v0.50.x            | [v0.50.0](https://buf.build/cosmos/cosmos-sdk/docs/v0.50.0)                                                   |
    19  | Next               | [latest on buf](https://buf.build/cosmos/cosmos-sdk/commits/main)                                             |
    20  
    21  ## Generate
    22  
    23  To get the Cosmos SDK proto given a commit, run: 
    24  
    25  ```bash
    26  buf export buf.build/cosmos/cosmos-sdk:${commit} --output .
    27  ```