You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
import requests
|
|
|
|
from lws import config
|
|
|
|
|
|
class LWS:
|
|
def __init__(self, admin_key):
|
|
self.admin_key = admin_key
|
|
|
|
def list_accounts(self):
|
|
endpoint = f"{config.LWS_ADMIN_URL}/list_accounts"
|
|
data = {"auth": self.admin_key}
|
|
try:
|
|
req = requests.post(endpoint, json=data, timeout=5)
|
|
req.raise_for_status()
|
|
if req.ok:
|
|
return req.json()
|
|
return {}
|
|
except Exception as e:
|
|
print(f"Failed to list accounts: {e}")
|
|
return {}
|
|
|
|
def get_address_txs(self, address, view_key):
|
|
endpoint = f"{config.LWS_URL}/get_address_txs"
|
|
data = {
|
|
"address": address,
|
|
"view_key": view_key
|
|
}
|
|
try:
|
|
req = requests.post(endpoint, json=data, timeout=5)
|
|
req.raise_for_status()
|
|
if req.ok:
|
|
return req.json()
|
|
return {}
|
|
except Exception as e:
|
|
print(f"Failed to get wallet info {address}: {e}")
|
|
return False
|