更新环境配置示例,添加 GRVT 相关的 API 凭证和选项,增强文档以支持新的交易所适配器,确保用户能够正确配置和使用 GRVT 交易功能。

This commit is contained in:
discountry
2025-09-27 16:12:20 +08:00
parent 64640f4494
commit dde7ab71a9
60 changed files with 16126 additions and 527 deletions
@@ -0,0 +1,9 @@
from pathlib import Path
readme = Path("README.md").read_text()
changelog = Path("CHANGELOG.md").read_text()
combined = f"{readme}\n\n## Changelog\n\n{changelog}"
Path("README_PYPI.md").write_text(combined)
print("✅ Combined README.md and CHANGELOG.md into README_PYPI.md")