Skip to content

Commit

Permalink
🎉 feat: 更新包的配置
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ue1nWh1te committed Oct 28, 2024
1 parent 1a1b01e commit cec4940
Show file tree
Hide file tree
Showing 8 changed files with 484 additions and 539 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,3 @@ jobs:
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Exit If Gitleaks Check Failed
if: failure()
run: |
echo "Gitleaks Check Failed"
exit 1
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__pycache__
.vscode
dist
__pycache__
logs
.env
10 changes: 5 additions & 5 deletions poseidon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

__version__ = version("poseidon-python")

from poseidon.evm import (Chain, Account, Contract, Utils)
from poseidon import evm, ton, solana, sui

__all__ = [
"__version__",
"Chain",
"Account",
"Contract",
"Utils",
"evm",
"ton",
"solana",
"sui"
]
994 changes: 468 additions & 526 deletions poseidon/evm.py

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions poseidon/solana.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
将在后续版本中实现
"""
3 changes: 3 additions & 0 deletions poseidon/sui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
将在后续版本中实现
"""
3 changes: 3 additions & 0 deletions poseidon/ton.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
将在后续版本中实现
"""
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "poseidon-python"
version = "2.0.0"
description = "海神波塞冬,本工具库基于 web3.py 对常用的链上交互操作进行了封装,让开发者能够便捷地与任意 EVM 链发起交互"
description = "海神波塞冬,本工具库对常用的链上交互操作进行了模块化抽象与简洁式封装,让开发者能够轻松快速地与主流区块链网络进行交互。目前支持任意 EVM "
keywords = ["blockchain", "web3", "ethereum", "evm", "tooling"]
authors = ["B1ue1nWh1te <[email protected]>"]
repository = "https://github.com/B1ue1nWh1te/Poseidon"
Expand Down

0 comments on commit cec4940

Please sign in to comment.