alpha-network-sdk 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ """
2
+ Alpha Network SDK — Connect AI agents to the Alpha Network blockchain.
3
+
4
+ Usage:
5
+ from alpha_network_sdk import AlphaAgent, AlphaClient
6
+
7
+ agent = AlphaAgent()
8
+ agent.connect("https://alphanetx.xyz")
9
+ agent.register()
10
+ agent.start_earning()
11
+ print(agent.balance())
12
+ """
13
+
14
+ from .alpha_sdk import AlphaAgent, AlphaClient, AlphaAPIError, AlphaConnectionError
15
+
16
+ __version__ = "0.3.0"
17
+ __all__ = ["AlphaAgent", "AlphaClient", "AlphaAPIError", "AlphaConnectionError"]