Skip to content

Commit

Permalink
feat: all fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Jan 15, 2025
1 parent e68f9e7 commit ba8ffd6
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 52 deletions.
104 changes: 60 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ injective-cosmwasm = { version = "0.3.0", path = "./packages/injective-cosmwas
injective-math = { version = "0.3.0", path = "./packages/injective-math" }
injective-std = { version = "1.13.4", path = "./packages/injective-std" }
injective-std-derive = { version = "1.13.4", path = "./packages/injective-std-derive" }
injective-test-tube = { version = "1.13.2" }
injective-test-tube = { version = "1.13.3" }
injective-testing = { version = "1.1.0", path = "./packages/injective-testing" }
itertools = { version = "0.10.3" }
primitive-types = { version = "0.12.2", default-features = false }
Expand All @@ -44,7 +44,7 @@ serde_repr = { version = "0.1.17" }
serde_test = { version = "1.0.176" }
subtle-encoding = { version = "0.5.1", features = [ "bech32-preview" ] }
syn = { version = "1.0.98" }
test-tube-inj = { version = "=2.0.1" }
test-tube-inj = { version = "2.0.4" }
thiserror = { version = "1.0.56" }
tiny-keccak = { version = "1.2.1" }
trybuild = { version = "1.0.63", features = [ "diff" ] }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ use crate::{
msg::{QueryMsg, QueryStargateResponse},
utils::{execute_all_authorizations, ExchangeType, Setup},
};
use cosmos_sdk_proto::cosmos::authz::v1beta1::{QueryGranteeGrantsRequest, QueryGranterGrantsRequest, QueryGrantsRequest};
use injective_test_tube::RunnerError::QueryError;
use injective_test_tube::{Account, Module, RunnerResult, Wasm};
use injective_test_tube::{
injective_std::types::cosmos::authz::v1beta1::{QueryGranteeGrantsRequest, QueryGranterGrantsRequest, QueryGrantsRequest},
Account, Module, RunnerResult, Wasm,
};

use crate::testing::type_helpers::{Authorization, Grants, StargateQueryGranteeGrantsResponse, StargateQueryGranterGrantsResponse};
use crate::utils::get_stargate_query_result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ use crate::{
testing::type_helpers::{AuthParams, CosmosAuthQueryAccountsResponse, ParamResponse},
utils::{ExchangeType, Setup},
};
use cosmos_sdk_proto::cosmos::auth::v1beta1::QueryAccountRequest;
use injective_test_tube::{Account, Module, Wasm};
use injective_test_tube::{injective_std::types::cosmos::auth::v1beta1::QueryAccountRequest, Account, Module, Wasm};

#[test]
#[cfg_attr(not(feature = "integration"), ignore)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ use crate::{
testing::type_helpers::{BankParams, ParamResponse, QueryBalanceResponse, QueryDenomMetadataResponse, QuerySupplyOffResponse},
utils::{ExchangeType, Setup},
};
use cosmos_sdk_proto::cosmos::bank::v1beta1::{QueryBalanceRequest, QueryDenomMetadataRequest, QuerySupplyOfRequest};
use cosmwasm_std::{Coin, Uint128};
use injective_test_tube::{injective_std::types::injective::tokenfactory::v1beta1::MsgCreateDenom, Account, Module, TokenFactory, Wasm};
use injective_test_tube::{
injective_std::types::{
cosmos::bank::v1beta1::{QueryBalanceRequest, QueryDenomMetadataRequest, QuerySupplyOfRequest},
injective::tokenfactory::v1beta1::MsgCreateDenom,
},
Account, Module, TokenFactory, Wasm,
};

#[test]
#[cfg_attr(not(feature = "integration"), ignore)]
Expand Down

0 comments on commit ba8ffd6

Please sign in to comment.