refactor: restructure Lighter SDK by removing deprecated Go files and enhancing Python documentation with new examples and models

This commit is contained in:
discountry
2025-12-07 19:14:56 +08:00
parent 85705dd27c
commit 5f79b134f2
310 changed files with 47112 additions and 3698 deletions
@@ -0,0 +1,17 @@
import asyncio
from utils import default_example_setup
async def main():
client, api_client, _ = default_example_setup()
err = client.check_client()
if err is not None:
print(f"CheckClient error: {err}")
return
tx_info, response, err = await client.create_sub_account()
print(tx_info, response, err)
if __name__ == "__main__":
asyncio.run(main())