-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imp: get access to bank and expose types from modules other than ibc
- Loading branch information
1 parent
2575a5b
commit 7e68779
Showing
19 changed files
with
301 additions
and
128 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,15 @@ | ||
pub(crate) mod account; | ||
pub(crate) mod context; | ||
pub(crate) mod impls; | ||
pub(crate) mod service; | ||
mod account; | ||
mod context; | ||
mod impls; | ||
mod service; | ||
|
||
pub use impls::{Auth, AuthAccountKeeper, AuthAccountReader}; | ||
pub use account::*; | ||
pub use context::*; | ||
pub use impls::*; | ||
pub use service::*; | ||
|
||
/// Re-exports `auth` module proto types for convenience. | ||
pub mod proto { | ||
pub use cosmrs::AccountId; | ||
pub use ibc_proto::cosmos::auth::*; | ||
} |
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,7 +1,17 @@ | ||
pub(crate) mod context; | ||
pub(crate) mod error; | ||
pub(crate) mod impls; | ||
pub(crate) mod service; | ||
pub(crate) mod util; | ||
mod context; | ||
mod error; | ||
mod impls; | ||
mod service; | ||
mod util; | ||
|
||
pub use impls::Bank; | ||
pub use context::*; | ||
pub use error::*; | ||
pub use impls::*; | ||
pub use service::*; | ||
pub use util::*; | ||
|
||
/// Re-exports `bank` module proto types for convenience. | ||
pub mod proto { | ||
pub use cosmrs::Coin; | ||
pub use ibc_proto::cosmos::bank::*; | ||
} |
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,8 +1,18 @@ | ||
pub(crate) mod error; | ||
pub(crate) mod impls; | ||
pub(crate) mod msg; | ||
pub(crate) mod path; | ||
pub(crate) mod proposal; | ||
pub(crate) mod service; | ||
mod error; | ||
mod impls; | ||
mod msg; | ||
mod path; | ||
mod proposal; | ||
mod service; | ||
|
||
pub use impls::Governance; | ||
pub use error::*; | ||
pub use impls::*; | ||
pub use msg::*; | ||
pub use path::*; | ||
pub use proposal::*; | ||
pub use service::*; | ||
|
||
/// Re-exports `gov` module proto types for convenience. | ||
pub mod proto { | ||
pub use ibc_proto::cosmos::gov::*; | ||
} |
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,10 +1,11 @@ | ||
pub mod client_contexts; | ||
pub mod error; | ||
pub mod impls; | ||
mod client_contexts; | ||
mod error; | ||
mod impls; | ||
mod router; | ||
pub mod transfer; | ||
mod transfer; | ||
|
||
pub use impls::AnyConsensusState; | ||
pub use impls::Ibc; | ||
pub use impls::IbcContext; | ||
pub use transfer::IbcTransferModule; | ||
pub use client_contexts::*; | ||
pub use error::*; | ||
pub use impls::*; | ||
pub use router::*; | ||
pub use 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
pub(crate) mod impls; | ||
pub(crate) mod service; | ||
mod impls; | ||
mod service; | ||
|
||
pub use impls::Staking; | ||
pub use impls::*; | ||
pub use service::*; | ||
|
||
/// Re-exports `staking` module proto types for convenience. | ||
pub mod proto { | ||
pub use ibc_proto::cosmos::staking::*; | ||
} |
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.