Skip to content

Conversation

sraibaby
Copy link

No description provided.

Copy link

changeset-bot bot commented Sep 18, 2025

⚠️ No Changeset found

Latest commit: 1c7a76f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Sep 18, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
ant-design-web3 Ready Ready Preview Comment Sep 18, 2025 0:16am

@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Sep 18, 2025
Copy link

Prepare preview

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Summary of Changes

Hello @sraibaby, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request updates the source URL for the TON wallet list within the Ant Design Web3 documentation. The change aims to improve the reliability and scalability of accessing the list of supported TON wallets by switching from a direct GitHub raw content link to a Vercel-hosted endpoint.

Highlights

  • Wallet List URL Update: The URL for the TON wallet list, referenced in both English and Chinese Ant Design Web3 documentation, has been updated to a new, potentially more scalable source hosted on Vercel.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates the URL for the TON wallet list in the documentation to a new endpoint for scalability. However, the new URL points to a temporary, personal Vercel deployment. This introduces significant security and reliability risks and is not a scalable solution. My review suggests using a public CDN like jsDelivr as a more appropriate and robust alternative. I also pointed out that this change creates an inconsistency in the documentation, as another reference to the same URL was not updated.

The interface design of `@ant-design/web3-ton` refers to the [TON official documentation](https://docs.ton.org/) and `@tonconnect/sdk`. You can find more in-depth implementation details in the documentation. The RPC service (such as balance inquiry) uses [Tonconnect](http://toncenter.com), including the testnet and mainnet.

You can check the wallets supported by Ton in the [Wallet Interface](https://raw.githubusercontent.com/ton-blockchain/wallets-list/main/wallets-v2.json). Ant Design Web3 provides settings for some commonly used wallets, as follows:
You can check the wallets supported by Ton in the [Wallet Interface](https://whatever-zeta-two.vercel.app/wallets-v2.json). Ant Design Web3 provides settings for some commonly used wallets, as follows:

Choose a reason for hiding this comment

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

critical

The new URL https://whatever-zeta-two.vercel.app/wallets-v2.json appears to be a temporary Vercel deployment endpoint, which is not suitable for production documentation. This change introduces several issues:

  • Security Risk: It points to an unofficial and untrusted source for the wallet list. A compromised endpoint could serve a malicious list, leading to phishing attacks.
  • Reliability: A temporary deployment URL is not stable and can be taken down at any time, leading to broken links.
  • Scalability: Contrary to the PR title, a personal Vercel deployment is not a scalable solution and is less reliable than the original GitHub source.

For a truly scalable and reliable solution, consider using a public CDN that mirrors GitHub content, like jsDelivr. The URL would be https://cdn.jsdelivr.net/gh/ton-blockchain/wallets-list@main/wallets-v2.json.

Furthermore, this change creates an inconsistency, as the walletsListSource default value in the table on line 47 of this file still points to the old GitHub URL.

Suggested change
You can check the wallets supported by Ton in the [Wallet Interface](https://whatever-zeta-two.vercel.app/wallets-v2.json). Ant Design Web3 provides settings for some commonly used wallets, as follows:
You can check the wallets supported by Ton in the [Wallet Interface](https://cdn.jsdelivr.net/gh/ton-blockchain/wallets-list@main/wallets-v2.json). Ant Design Web3 provides settings for some commonly used wallets, as follows:

`@ant-design/web3-ton` 的接口设计参考了 [TON 官方文档](https://docs.ton.org/mandarin/)`@tonconnect/sdk`,你可以在文档中找到更加深层的实现原理。RPC 服务(比如说查询余额)采用的是 [Tonconnect](http://toncenter.com),包括测试网以及主网。

Ton 支持的钱包可以在 [钱包接口](https://raw.githubusercontent.com/ton-blockchain/wallets-list/main/wallets-v2.json) 中查看,Ant Design Web3 提供了部分常用钱包的设置,如下:
Ton 支持的钱包可以在 [钱包接口](https://whatever-zeta-two.vercel.app/wallets-v2.json) 中查看,Ant Design Web3 提供了部分常用钱包的设置,如下:

Choose a reason for hiding this comment

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

critical

The new URL https://whatever-zeta-two.vercel.app/wallets-v2.json appears to be a temporary Vercel deployment endpoint, which is not suitable for production documentation. This change introduces several issues:

  • Security Risk: It points to an unofficial and untrusted source for the wallet list. A compromised endpoint could serve a malicious list, leading to phishing attacks.
  • Reliability: A temporary deployment URL is not stable and can be taken down at any time, leading to broken links.
  • Scalability: Contrary to the PR title, a personal Vercel deployment is not a scalable solution and is less reliable than the original GitHub source.

For a truly scalable and reliable solution, consider using a public CDN that mirrors GitHub content, like jsDelivr. The URL would be https://cdn.jsdelivr.net/gh/ton-blockchain/wallets-list@main/wallets-v2.json.

Furthermore, this change creates an inconsistency, as the walletsListSource default value in the table on line 47 of this file still points to the old GitHub URL.

Suggested change
Ton 支持的钱包可以在 [钱包接口](https://whatever-zeta-two.vercel.app/wallets-v2.json) 中查看,Ant Design Web3 提供了部分常用钱包的设置,如下:
Ton 支持的钱包可以在 [钱包接口](https://cdn.jsdelivr.net/gh/ton-blockchain/wallets-list@main/wallets-v2.json) 中查看,Ant Design Web3 提供了部分常用钱包的设置,如下:

@dosubot dosubot bot added the documentation Improvements or additions to documentation label Sep 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation size:XS This PR changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant