Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bumped package to include both permissions and peggy messages #229

Merged
merged 3 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion packages/injective-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0"
name = "injective-std"
readme = "README.md"
repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-std"
version = "1.12.10-testnet-rc2.1"
version = "1.12.10-testnet-rc2.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,6 @@ pub struct MsgInstantSpotMarketLaunch {
/// quantity
#[prost(string, tag = "6")]
pub min_quantity_tick_size: ::prost::alloc::string::String,

#[prost(string, tag = "7")]
pub min_notional: ::prost::alloc::string::String,
}
Expand Down Expand Up @@ -1931,7 +1930,6 @@ pub struct MsgInstantPerpetualMarketLaunch {
/// quantity
#[prost(string, tag = "13")]
pub min_quantity_tick_size: ::prost::alloc::string::String,

#[prost(string, tag = "14")]
pub min_notional: ::prost::alloc::string::String,
}
Expand Down
2 changes: 2 additions & 0 deletions packages/injective-std/src/types/injective/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ pub mod auction;
pub mod exchange;
pub mod insurance;
pub mod oracle;
pub mod peggy;
pub mod permissions;
pub mod tokenfactory;
pub mod wasmx;
1 change: 1 addition & 0 deletions packages/injective-std/src/types/injective/peggy/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod v1;
1,644 changes: 1,644 additions & 0 deletions packages/injective-std/src/types/injective/peggy/v1.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod v1beta1;
421 changes: 421 additions & 0 deletions packages/injective-std/src/types/injective/permissions/v1beta1.rs

Large diffs are not rendered by default.

Loading