Skip to content

Commit 6df18a6

Browse files
committed
fmt
1 parent 23c7b37 commit 6df18a6

File tree

30 files changed

+34
-34
lines changed

30 files changed

+34
-34
lines changed

packages/injective-std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version = "1.13.5"
1212
[dependencies]
1313
chrono = { workspace = true }
1414
cosmwasm-std = { workspace = true }
15-
injective-std-derive = { workspace = true, path = "../injective-std-derive" }
15+
injective-std-derive = { workspace = true }
1616
prost = { workspace = true }
1717
prost-types = { workspace = true }
1818
schemars = { workspace = true }

packages/injective-std/src/types/cosmos/auth/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object for the auth module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, PartialEq, Eq, ::prost::Message, ::serde::Serialize, ::serde::Deserialize, ::schemars::JsonSchema, CosmwasmExt)]

packages/injective-std/src/types/cosmos/auth/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// BaseAccount defines a base account type. It contains all the necessary fields
33
/// for basic account functionality. Any custom account type should extend this
44
/// type for additional functionality (e.g. vesting).

packages/injective-std/src/types/cosmos/authz/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object of the authz module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, Copy, PartialEq, Eq, ::prost::Message, ::serde::Serialize, ::serde::Deserialize, ::schemars::JsonSchema, CosmwasmExt)]

packages/injective-std/src/types/cosmos/authz/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// GenericAuthorization gives the grantee unrestricted permissions to execute
33
/// the provided method on behalf of the granter's account.
44
#[allow(clippy::derive_partial_eq_without_eq)]

packages/injective-std/src/types/cosmos/bank/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object of the bank module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, PartialEq, Eq, ::prost::Message, ::serde::Serialize, ::serde::Deserialize, ::schemars::JsonSchema, CosmwasmExt)]

packages/injective-std/src/types/cosmos/bank/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// SendAuthorization allows the grantee to spend up to spend_limit coins from
33
/// the granter's account.
44
///

packages/injective-std/src/types/cosmos/base/node/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// ConfigRequest defines the request structure for the Config gRPC query.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, Copy, PartialEq, Eq, ::prost::Message, ::serde::Serialize, ::serde::Deserialize, ::schemars::JsonSchema, CosmwasmExt)]

packages/injective-std/src/types/cosmos/base/query/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// PageRequest is to be embedded in gRPC request messages for efficient
33
/// pagination. Ex:
44
///

packages/injective-std/src/types/cosmos/base/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Coin defines a token with a denomination and an amount.
33
///
44
/// NOTE: The amount field is an Int which implements the custom method

0 commit comments

Comments
 (0)