-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
3,965 additions
and
1,436 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
use cosmwasm_std::{Binary, CosmosMsg, Deps, DepsMut, Response, SubMsg}; | ||
use provwasm_std::{ProvenanceMsg, ProvenanceQuery}; | ||
|
||
use super::error::ContractError; | ||
|
||
pub type ProvDeps<'a> = Deps<'a, ProvenanceQuery>; | ||
pub type ProvDepsMut<'a> = DepsMut<'a, ProvenanceQuery>; | ||
pub type ProvTxResponse = Result<Response<ProvenanceMsg>, ContractError>; | ||
pub type ProvDeps<'a> = Deps<'a>; | ||
pub type ProvDepsMut<'a> = DepsMut<'a>; | ||
pub type ProvTxResponse = Result<Response, ContractError>; | ||
pub type ProvQueryResponse = Result<Binary, ContractError>; | ||
pub type ProvMsg = CosmosMsg<ProvenanceMsg>; | ||
pub type ProvSubMsg = SubMsg<ProvenanceMsg>; | ||
pub type ProvMsg = CosmosMsg; | ||
pub type ProvSubMsg = SubMsg; |
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
Oops, something went wrong.