-
Notifications
You must be signed in to change notification settings - Fork 33
Fix/issues with explorer #370
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
Fix/issues with explorer #370
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThis pull request introduces significant architectural changes to the Injective Python SDK. The modifications primarily involve restructuring the gRPC API interfaces, removing several indexer and exchange-related RPC services, and updating import paths for protocol buffer modules. The changes streamline the SDK's communication layers, removing deprecated or unused services while introducing more standardized methods for interacting with blockchain and exchange functionalities. Changes
Sequence DiagramsequenceDiagram
participant Client
participant ChainGrpcChainStream
participant GrpcApiStreamAssistant
participant GrpcService
Client->>ChainGrpcChainStream: Initialize with channel
Client->>ChainGrpcChainStream: stream(callback, filters)
ChainGrpcChainStream->>GrpcApiStreamAssistant: listen_stream(call, request, callbacks)
GrpcApiStreamAssistant->>GrpcService: Send streaming request
GrpcService-->>GrpcApiStreamAssistant: Stream data
GrpcApiStreamAssistant-->>Client: Invoke callback with streamed data
Poem
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
Documentation and Community
|
Summary by CodeRabbit
Based on the comprehensive summary of changes, here are the release notes:
New Features
API Changes
Improvements
PaginationOptionandPaginationclassesComposerclassRefactoring
Maintenance