Struct abstract_sdk::App
source · pub struct App<'a, T: AppInterface> { /* private fields */ }
Implementations§
source§impl<'a, T: AppInterface> App<'a, T>
impl<'a, T: AppInterface> App<'a, T>
sourcepub fn request<M: Serialize>(
&self,
app_id: ModuleId<'_>,
message: impl Into<ExecuteMsg<M, Empty>>
) -> AbstractSdkResult<CosmosMsg>
pub fn request<M: Serialize>( &self, app_id: ModuleId<'_>, message: impl Into<ExecuteMsg<M, Empty>> ) -> AbstractSdkResult<CosmosMsg>
Construct an app request message.
sourcepub fn configure(
&self,
app_id: ModuleId<'_>,
message: BaseExecuteMsg
) -> AbstractSdkResult<CosmosMsg>
pub fn configure( &self, app_id: ModuleId<'_>, message: BaseExecuteMsg ) -> AbstractSdkResult<CosmosMsg>
Construct an app configuation message
sourcepub fn query<Q: Serialize, R: DeserializeOwned>(
&self,
app_id: ModuleId<'_>,
message: impl Into<QueryMsg<Q>>
) -> AbstractSdkResult<R>
pub fn query<Q: Serialize, R: DeserializeOwned>( &self, app_id: ModuleId<'_>, message: impl Into<QueryMsg<Q>> ) -> AbstractSdkResult<R>
Smart query an app