-
Notifications
You must be signed in to change notification settings - Fork 22
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: lint #258
fix: lint #258
Conversation
Caution Review failedThe pull request is closed. Walkthrough此次变更主要集中在三个文件中,涉及类型调整和方法签名更新。 Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant ProviderCosmos
participant CosmJSOfflineSigner
participant ProviderTon
User->>ProviderCosmos: signDirect(...)
ProviderCosmos->>User: Promise<DirectSignResponse>
User->>CosmJSOfflineSigner: sign(...)
CosmJSOfflineSigner->>ProviderCosmos: signDirect(...)
ProviderCosmos->>CosmJSOfflineSigner: Promise<DirectSignResponse>
CosmJSOfflineSigner->>User: Promise<DirectSignResponse>
User->>ProviderTon: connect(...)
ProviderTon->>User: Promise<ConnectEvent>
🪧 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
CodeRabbit Configuration File (
|
Summary by CodeRabbit
新功能
ProviderTon
类中添加了restoreConnection
方法,以便重新建立连接。TonRequest
和JsBridgeRequest
类型,以增强异步方法的类型安全性。改进
connect
方法的实现,增强了连接请求的处理能力和错误处理。错误修复