initial commit

This commit is contained in:
2025-07-09 15:56:17 +03:00
commit 02fca8f958
9 changed files with 1019 additions and 0 deletions

0
tests/__init__.py Normal file
View File

11
tests/transactions.py Normal file
View File

@ -0,0 +1,11 @@
import pytest
from trc20wrapper.transactions import get_transaction_by_hash
HASH_ = "36ad0f7e042b6d95b22e3226cee5e61101712cc3d519ac5623da1ab3c42d49a9"
ADDR = "TEqCBKLNfJsrYaiYXnSVDDx7QvhyWnH9gj"
@pytest.mark.asyncio
async def test_get_transaction_by_hash():
print(await get_transaction_by_hash(ADDR, HASH_))