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

f: almost working #53

Merged
merged 6 commits into from
Jan 15, 2025
Merged

f: almost working #53

merged 6 commits into from
Jan 15, 2025

Conversation

maxrobot
Copy link
Collaborator

@maxrobot maxrobot commented Jan 15, 2025

Summary by CodeRabbit

  • Dependency Updates

    • Updated Rust package dependencies in injective-test-tube and test-tube packages
    • Upgraded various Go module dependencies
    • Bumped Rust toolchain version from 1.78.0 to 1.81.0 in GitHub workflows
  • Version Increments

    • Incremented injective-test-tube package version to 1.13.3
    • Updated test-tube-inj package version to 2.0.4
  • Test Modifications

    • Added new parameter field in auction integration test
    • Adjusted query method's type parameter constraints in the Wasm struct

Copy link
Contributor

coderabbitai bot commented Jan 15, 2025

Walkthrough

This pull request involves version updates and dependency management across multiple files in the Injective Test Tube project. The changes primarily focus on upgrading package versions, updating dependencies for Rust and Go modules, and modifying the GitHub Actions workflow. The updates span the Cargo.toml files for different packages, the go.mod file, the changelog, and a GitHub Actions workflow configuration. The modifications aim to bring the project's dependencies to their latest versions and ensure compatibility.

Changes

File Change Summary
packages/injective-test-tube/Cargo.toml - Package version updated to 1.13.3
- Updated dependencies: cosmrs to 0.20.0, injective-std to 1.13.6, prost to 0.13.4 with prost-derive feature, test-tube-inj to 2.0.4
packages/injective-test-tube/libinjectivetesttube/go.mod - Multiple dependency version upgrades, including:
- go-version to v1.7.0
- oauth2 to v0.19.0
- DataDog packages updated
- Prometheus packages updated
- OpenTelemetry packages updated
packages/test-tube/Cargo.toml - Package version updated to 2.0.4
- Updated dependencies: cosmrs to 0.20.0, prost to 0.13.4
.github/workflows/unit_test.yml - Rust toolchain version updated from 1.78.0 to 1.81.0
packages/injective-test-tube/src/module/auction.rs - Added inj_basket_max_cap field to Params structure in auction integration test
packages/injective-test-tube/src/module/wasm.rs - Updated query method's signature to require Res to implement only DeserializeOwned

Poem

🐰 Hop, hop, dependencies dance!
Versions leap with each new chance
Rust and Go, they update with glee
Toolchains bloom like a coding tree
Packages sing their version song 🚀


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🔭 Outside diff range comments (1)
packages/test-tube/src/runner/result.rs (1)

Line range hint 171-174: Consider updating TryFrom<ResponseFinalizeBlock> for consistency.

The attribute processing in this implementation still uses direct string conversion (to_string()), while other implementations have been updated to use byte-level access with UTF-8 conversion. Consider updating this implementation for consistency.

Apply this change to maintain consistency with other implementations:

                             Ok(Attribute {
-                                key: a.key.to_string(),
-                                value: a.value.to_string(),
+                                key: std::str::from_utf8(a.key_bytes())?.to_string(),
+                                value: std::str::from_utf8(a.value_bytes())?.to_string(),
                             })
🧹 Nitpick comments (1)
packages/test-tube/src/runner/result.rs (1)

55-56: LGTM! Consider adding error context for UTF-8 conversion failures.

The change to use byte-level access with explicit UTF-8 conversion is safer and more aligned with Cosmos SDK's approach. However, the error context could be improved when UTF-8 conversion fails.

Consider wrapping the UTF-8 conversion errors with more context:

-                                key: std::str::from_utf8(a.key_bytes())?.to_string(),
-                                value: std::str::from_utf8(a.value_bytes())?.to_string(),
+                                key: std::str::from_utf8(a.key_bytes())
+                                    .map_err(|e| Utf8Error::from(e))?.to_string(),
+                                value: std::str::from_utf8(a.value_bytes())
+                                    .map_err(|e| Utf8Error::from(e))?.to_string(),
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e8fbe0c and cc50296.

⛔ Files ignored due to path filters (1)
  • packages/injective-test-tube/libinjectivetesttube/go.sum is excluded by !**/*.sum
📒 Files selected for processing (4)
  • packages/injective-test-tube/Cargo.toml (1 hunks)
  • packages/injective-test-tube/libinjectivetesttube/go.mod (10 hunks)
  • packages/test-tube/Cargo.toml (1 hunks)
  • packages/test-tube/src/runner/result.rs (2 hunks)
🔇 Additional comments (8)
packages/test-tube/src/runner/result.rs (1)

105-106: LGTM! Changes are consistent with the previous implementation.

The byte-level access and UTF-8 conversion changes mirror those in the TryFrom<ExecTxResult> implementation, maintaining consistency across the codebase.

packages/injective-test-tube/libinjectivetesttube/go.mod (5)

279-279: Review the change in repository ownership.

The replace directive for injective-core now points to InjectiveFoundation instead of InjectiveLabs. Please confirm this is intentional and that all necessary permissions and access controls are in place.


250-259: Verify compatibility of golang.org/x updates.

Multiple golang.org/x packages are being updated. These are core packages, so please ensure they maintain compatibility with your existing code.

✅ Verification successful

Indirect dependencies, no compatibility concerns needed

These golang.org/x packages are marked as indirect dependencies in go.mod, meaning they're not directly used in your codebase but are required by other dependencies. Go's module system ensures compatibility for such transitive dependencies. No manual verification is needed.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Look for any deprecated API usage
rg -A 5 "golang.org/x/(crypto|exp|mod|net|sync|sys|term|text|time|tools)" . | grep -v "go.mod"

Length of output: 1457


Script:

#!/bin/bash
# Search for direct imports of golang.org/x packages
ast-grep --pattern 'import (
  $$$
  "golang.org/x/$_"
  $$$
)'

# Also search for single-line imports
ast-grep --pattern 'import "golang.org/x/$_"'

# Search for actual code using these packages without go.sum/go.mod noise
rg -t go --no-heading "golang.org/x/(crypto|exp|mod|net|sync|sys|term|text|time|tools)" . | grep -v "go\.(sum|mod)"

Length of output: 231


86-92: Verify compatibility between DataDog package versions.

All DataDog packages are being updated to v0.58.0. While version alignment is good, please verify that these updates don't introduce breaking changes in your monitoring setup.

✅ Verification successful

DataDog package updates are safe to proceed

These DataDog packages are all marked as indirect dependencies and are not directly used in your codebase. The version alignment to v0.58.0 is likely pulled in by another dependency, and these updates pose minimal risk to your project.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for any compatibility issues or breaking changes in DataDog packages
rg -A 5 "datadog" . | grep -v "go.mod" | grep -E "New|Init|Configure"

Length of output: 67


Script:

#!/bin/bash
# Check if DataDog packages are actually used in the codebase
echo "=== Checking for DataDog imports ==="
rg "\"github.com/DataDog/" --type go

echo -e "\n=== Checking go.mod for indirect markers ==="
grep "DataDog" packages/injective-test-tube/libinjectivetesttube/go.mod

Length of output: 1369


238-246: Verify OpenTelemetry collector compatibility.

The OpenTelemetry packages are being updated to newer versions. Ensure that the collector configuration remains compatible with these updates.


207-208: Verify Prometheus metrics compatibility.

The Prometheus packages (common and procfs) are being updated. Ensure that your metrics collection and reporting remain functional with these updates.

packages/test-tube/Cargo.toml (2)

7-7: Verify if version bump is sufficient for breaking changes.

The version bump from 2.0.1 to 2.0.3 might be insufficient considering the major version update of cosmrs (0.15.0 -> 0.20.0) which likely introduces breaking changes.

Run this script to check for potential breaking changes:

✅ Verification successful

Version bump is appropriate considering the transition plan

The minor version bump is sufficient as the project is actively working to remove the cosmrs dependency (issue #25) and transition to osmosis-std types. Major changes in a dependency being phased out don't warrant a major version bump.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check the changelog for breaking changes in cosmrs between 0.15.0 and 0.20.0
curl -s https://raw.githubusercontent.com/cosmos/cosmos-rust/main/CHANGELOG.md | grep -A 10 "## "

# Look for any direct usage of cosmrs in the codebase that might be affected
rg "use cosmrs::" -A 3

Length of output: 2153


Script:

#!/bin/bash
# Check git history for any test or compilation fixes after the version bump
git log -n 10 --oneline | grep -i "fix\|test\|compile\|build"

# Check if there are any ongoing discussions about breaking changes
gh issue list --repo osmosis-labs/test-tube --state all --search "cosmrs"
gh pr list --repo osmosis-labs/test-tube --state all --search "cosmrs"

Length of output: 351


13-13: Verify compatibility between dependency versions.

The updates to cosmrs (0.20.0) and prost (0.13.4) are significant. Please ensure:

  1. These versions are compatible with each other
  2. All features required by the codebase are still available
  3. No breaking changes affect the current implementation

Run this script to check for potential compatibility issues:

Also applies to: 15-15

✅ Verification successful

Dependencies are properly integrated and compatible

The codebase shows correct integration between cosmrs 0.20.0 and prost 0.13.4:

  • All required features (cosmwasm, rpc) are available
  • Proper protobuf handling is demonstrated in multiple files
  • No breaking changes affect the current implementation
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if these exact versions are used together in other projects
gh api graphql -f query='
{
  search(query: "path:Cargo.toml \"cosmrs = { version = \\\"0.20.0\\\"\" \"prost = \\\"0.13.4\\\"\"", type: CODE, first: 5) {
    nodes {
      ... on CodeResult {
        repository {
          nameWithOwner
        }
        file {
          path
        }
      }
    }
  }
}'

Length of output: 974


Script:

#!/bin/bash
# Check Cargo.toml contents
cat packages/test-tube/Cargo.toml

# Search for files using both cosmrs and prost
rg -l "use (cosmrs|prost)" packages/test-tube/src/

Length of output: 1157


Script:

#!/bin/bash
# Check actual usage patterns in files
for file in packages/test-tube/src/{utils.rs,lib.rs,runner/app.rs,runner/error.rs,account.rs,runner/result.rs}; do
    echo "=== $file ==="
    rg "use (cosmrs|prost)" "$file" -A 2
done

# Check if prost types are used with cosmrs
rg "cosmrs.*prost|prost.*cosmrs" packages/test-tube/src/

Length of output: 2849

serde = "1.0.144"
serde_json = "1.0.85"
test-tube-inj = { version = "2.0.1" }
test-tube-inj = { version = "2.0.1", path = "../test-tube" }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix version mismatch in test-tube-inj dependency.

The test-tube-inj dependency specifies version 2.0.1 but the actual package version in packages/test-tube/Cargo.toml is 2.0.3. This mismatch could cause build issues.

Apply this diff to fix the version:

-test-tube-inj      = { version = "2.0.1", path = "../test-tube" }
+test-tube-inj      = { version = "2.0.3", path = "../test-tube" }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
test-tube-inj = { version = "2.0.1", path = "../test-tube" }
test-tube-inj = { version = "2.0.3", path = "../test-tube" }

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

exclude = [ "injective-core", "test_artifacts" ]

[dependencies]
base64 = "0.21.5"
cosmrs = { version = "0.15.0", features = [ "cosmwasm", "rpc" ] }
cosmrs = { version = "0.20.0", features = [ "cosmwasm", "rpc" ] }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Remove unnecessary prost-derive feature, versions are compatible

The version updates (cosmrs, injective-std, prost) follow semantic versioning and appear compatible. The cosmrs 0.20.0 update only bumps cosmos-sdk-proto dependency. However, the added prost-derive feature appears unnecessary as no prost derive macros are used in the codebase.

  • Consider removing the unused prost-derive feature from the dependency declaration
🔗 Analysis chain

Verify version compatibility across dependencies.

Multiple major version updates:

  • cosmrs: 0.15.0 -> 0.20.0
  • injective-std: 1.13.0 -> 1.13.5
  • prost: 0.12.3 -> 0.13.4 with added prost-derive feature

Please ensure these versions are compatible and the new prost feature is required.

Run this script to check for potential compatibility issues:

Also applies to: 18-19

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if these versions are used together in other Injective projects
gh api graphql -f query='
{
  search(query: "org:InjectiveLabs path:Cargo.toml \"cosmrs = { version = \\\"0.20.0\\\"\" \"injective-std = { version = \\\"1.13.5\\\"\"", type: CODE, first: 5) {
    nodes {
      ... on CodeResult {
        repository {
          nameWithOwner
        }
        file {
          path
        }
      }
    }
  }
}'

# Check if prost-derive feature is used in the code
rg "use prost" -A 3

Length of output: 3036


Script:

#!/bin/bash
# Search for prost derive macros
rg "#\[derive\(" -A 1 | rg -B 1 "Message|Encode|Decode"

# Check Cargo.lock for resolved versions
rg "^(cosmrs|prost|injective-std)" Cargo.lock

# Try fixed GitHub query
gh search code --owner=InjectiveLabs --filename=Cargo.toml 'cosmrs = { version = "0.20.0"' --json repository,path

# Look for potential breaking changes in cosmrs
curl -s https://raw.githubusercontent.com/cosmos/cosmos-rust/main/cosmrs/CHANGELOG.md | head -n 20

Length of output: 1247


Script:

#!/bin/bash
# Search specifically for prost Message derives
rg -B 1 -A 1 '(?m)^#\[derive.*Message.*\]'

# Check if prost-derive is actually used
rg 'use prost::derive|use prost_derive'

# Check if there are any direct prost type imports that might need derive
rg 'use prost::\w+::'

Length of output: 110

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between cc50296 and 3a15926.

📒 Files selected for processing (3)
  • packages/injective-test-tube/CHANGELOG.md (1 hunks)
  • packages/injective-test-tube/Cargo.toml (1 hunks)
  • packages/test-tube/Cargo.toml (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • packages/test-tube/Cargo.toml
  • packages/injective-test-tube/Cargo.toml
🧰 Additional context used
🪛 LanguageTool
packages/injective-test-tube/CHANGELOG.md

[duplication] ~12-~12: Possible typo: you repeated a word.
Context: ... ## 1.13.3 - 2024-16-10 ### Changed - Bumped [email protected] - Bumped [email protected] ## 1.13.2-auct...

(ENGLISH_WORD_REPEAT_RULE)

🔇 Additional comments (2)
packages/injective-test-tube/CHANGELOG.md (2)

Line range hint 1-7: Well-structured changelog format!

The changelog follows the Keep a Changelog format and Semantic Versioning guidelines correctly.

🧰 Tools
🪛 LanguageTool

[duplication] ~12-~12: Possible typo: you repeated a word.
Context: ... ## 1.13.3 - 2024-16-10 ### Changed - Bumped [email protected] - Bumped [email protected] ## 1.13.2-auct...

(ENGLISH_WORD_REPEAT_RULE)


13-13: Verify injective-std version.

There's a discrepancy between the changelog entry and the version mentioned in the AI summary (v1.13.5). Please verify the correct version of injective-std.

@@ -5,9 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.13.3 - 2024-16-10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix invalid date format.

The date format "2024-16-10" is invalid as the month value cannot be 16. Please update to a valid date in YYYY-MM-DD format.

-## 1.13.3 - 2024-16-10
+## 1.13.3 - 2024-10-16

-## 1.13.2-auction.1 - 2024-16-10
+## 1.13.2-auction.1 - 2024-10-16

Also applies to: 15-15

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
packages/injective-test-tube/CHANGELOG.md (1)

8-8: ⚠️ Potential issue

Fix invalid date format.

The date format "2024-16-10" is invalid as the month value cannot be 16. Please update to a valid date in YYYY-MM-DD format.

-## 1.13.3 - 2024-16-10
+## 1.13.3 - 2024-10-16

-## 1.13.2-auction.1 - 2024-16-10
+## 1.13.2-auction.1 - 2024-10-16

Also applies to: 15-15

🧹 Nitpick comments (1)
packages/injective-test-tube/src/module/auction.rs (1)

67-68: Improve readability of the large number.

Consider using numeric separators or scientific notation to make the large number more readable.

-                inj_basket_max_cap: "10000000000000000000000".to_string(),
+                inj_basket_max_cap: "10_000_000_000_000_000_000_000".to_string(),
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3a15926 and 4c1267d.

📒 Files selected for processing (4)
  • .github/workflows/unit_test.yml (2 hunks)
  • packages/injective-test-tube/CHANGELOG.md (1 hunks)
  • packages/injective-test-tube/Cargo.toml (1 hunks)
  • packages/injective-test-tube/src/module/auction.rs (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/injective-test-tube/Cargo.toml
🧰 Additional context used
🪛 LanguageTool
packages/injective-test-tube/CHANGELOG.md

[duplication] ~12-~12: Possible typo: you repeated a word.
Context: ... ## 1.13.3 - 2024-16-10 ### Changed - Bumped [email protected] - Bumped [email protected] ## 1.13.2-auct...

(ENGLISH_WORD_REPEAT_RULE)

⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Lints
  • GitHub Check: Test Suite
🔇 Additional comments (2)
.github/workflows/unit_test.yml (1)

20-20: LGTM! Rust toolchain version update.

The update to Rust 1.81.0 is consistent across both jobs and aligns with the dependency updates.

Also applies to: 41-41

packages/injective-test-tube/CHANGELOG.md (1)

8-20: LGTM! Well-structured changelog entries.

The changelog entries follow the Keep a Changelog format and properly document the dependency updates.

🧰 Tools
🪛 LanguageTool

[duplication] ~12-~12: Possible typo: you repeated a word.
Context: ... ## 1.13.3 - 2024-16-10 ### Changed - Bumped [email protected] - Bumped [email protected] ## 1.13.2-auct...

(ENGLISH_WORD_REPEAT_RULE)

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/injective-test-tube/src/module/wasm.rs (1)

132-132: Improved type constraint accuracy by removing redundant bound.

The removal of ?Sized is correct since DeserializeOwned already implies Sized. This change makes the type constraints more precise without affecting runtime behavior.

Consider adding a doc comment explaining that Res must be a sized type that can be deserialized from the contract's response, to help API users understand the requirements.

/// Query the smart contract state.
/// 
/// # Type Parameters
/// 
/// * `M` - The query message type that can be serialized to JSON
/// * `Res` - The response type that can be deserialized from the contract's JSON response
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4c1267d and 2fb4202.

📒 Files selected for processing (1)
  • packages/injective-test-tube/src/module/wasm.rs (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Test Suite
  • GitHub Check: Lints

Copy link
Contributor

@jbernal87 jbernal87 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@maxrobot maxrobot merged commit d03c58e into dev Jan 15, 2025
6 checks passed
@maxrobot maxrobot deleted the f/bump-injective-std branch January 15, 2025 17:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants