-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Properly define and document our public interface (#656)
* some docstrings updated * Remove dynamic_typing module * move some utils to tendermint client * Make `crate::utils` private * docs * Remove unused struct * move events under core * move timestamp under core * Move tx_msg under core * Make naming convention comment not module-level * Make core::handler private * Re-export all core::context * make tx_msg private and re-export Msg * core module docs * many docs improvements * Release v0.39.0 (#657) * unclog release * bump version * Correct issue 621 description --------- Co-authored-by: Farhad Shabani <[email protected]> * fix doc test * `Validation/ExecutionContext` method docs * more docs improvements * remove unused function * client docs improvements * move trust_threshold to tendermint * connection * finish ics-20 docs * finish docs for the tendermint light client * core docs * move `ModuleExtras` out of channel * Make all `TYPE_URL` private * Move `Acknowledgement ` * remove superfluous channel message modules * finish channel docs * Remove `ics05_port` module * ValidationError -> IdentifierError * remove error module * cleanup ics24_host path * move host validate module under identifier * move RouterError * move msgs under core * remove tx_msg * router module * remove arbitrary restrictions on `ModuleId` * router * finish ics23 * mock * fmt * Add serialization for various structs and enums (#653) * Add serialization for various structs and enums * Create 652-codec-borsh-serde.md --------- Signed-off-by: Davirain <[email protected]> * changelog * remove `ClientTypePath` --------- Signed-off-by: Davirain <[email protected]> Co-authored-by: Farhad Shabani <[email protected]> Co-authored-by: Davirain <[email protected]>
- Loading branch information
1 parent
aeac915
commit ee16dc2
Showing
131 changed files
with
876 additions
and
892 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/breaking-changes/235-cleanup-modules-exposed.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Reduce and consolidate the amount of public modules exposed | ||
([#235](https://github.com/cosmos/ibc-rs/issues/235)) |
1 change: 1 addition & 0 deletions
1
.changelog/unreleased/breaking-changes/597-type-urls-private.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Make `TYPE_URL`s private ([#597](https://github.com/cosmos/ibc-rs/issues/597)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Document every method of `ValidationContext` and `ExecutionContext` | ||
([#376](https://github.com/cosmos/ibc-rs/issues/376)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//! Various packet encoding semantics which underpin the various types of transactions. | ||
//! Implementation of IBC applications | ||
|
||
#[cfg(feature = "serde")] | ||
pub mod transfer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
//! Defines the token transfer message type | ||
|
||
pub mod transfer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.