kopia lustrzana https://github.com/bugout-dev/moonstream
Add apply of filters wich in general depends on names of dashboard subscriptions.
Reformat code for get support of subscription wich not contain abi and only are generic methods.pull/452/head
rodzic
73a49941d8
commit
4f3326c05b
|
@ -8,10 +8,11 @@ import logging
|
||||||
import time
|
import time
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from typing import Any, Callable, Dict, List
|
from typing import Any, Callable, Dict, List, Union
|
||||||
|
from uuid import UUID
|
||||||
|
|
||||||
import boto3 # type: ignore
|
import boto3 # type: ignore
|
||||||
from bugout.data import BugoutResources
|
from bugout.data import BugoutResource, BugoutResources
|
||||||
from moonstreamdb.db import yield_db_session_ctx
|
from moonstreamdb.db import yield_db_session_ctx
|
||||||
from sqlalchemy import Column, Date, and_, func, text
|
from sqlalchemy import Column, Date, and_, func, text
|
||||||
from sqlalchemy.orm import Query, Session
|
from sqlalchemy.orm import Query, Session
|
||||||
|
@ -31,7 +32,7 @@ from ..settings import (
|
||||||
)
|
)
|
||||||
from ..settings import bugout_client as bc
|
from ..settings import bugout_client as bc
|
||||||
|
|
||||||
from web3 import Web3
|
from web3 import Web3, method
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
logger.setLevel(logging.INFO)
|
logger.setLevel(logging.INFO)
|
||||||
|
@ -78,11 +79,11 @@ def push_statistics(
|
||||||
subscription: Any,
|
subscription: Any,
|
||||||
timescale: str,
|
timescale: str,
|
||||||
bucket: str,
|
bucket: str,
|
||||||
hash: str,
|
dashboard_id: UUID,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
|
||||||
result_bytes = json.dumps(statistics_data).encode("utf-8")
|
result_bytes = json.dumps(statistics_data).encode("utf-8")
|
||||||
result_key = f'{MOONSTREAM_S3_SMARTCONTRACTS_ABI_PREFIX}/{blockchain_by_subscription_id[subscription.resource_data["subscription_type_id"]]}/contracts_data/{subscription.resource_data["address"]}/{hash}/v1/{timescale}.json'
|
result_key = f'{MOONSTREAM_S3_SMARTCONTRACTS_ABI_PREFIX}/{blockchain_by_subscription_id[subscription.resource_data["subscription_type_id"]]}/contracts_data/{subscription.resource_data["address"]}/{dashboard_id}/v1/{timescale}.json'
|
||||||
|
|
||||||
s3 = boto3.client("s3")
|
s3 = boto3.client("s3")
|
||||||
s3.put_object(
|
s3.put_object(
|
||||||
|
@ -405,6 +406,104 @@ def get_unique_address(
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def generate_list_of_names(
|
||||||
|
type: str, subscription_filters: Dict[str, Any], read_abi: bool, abi_json: Any
|
||||||
|
):
|
||||||
|
|
||||||
|
"""
|
||||||
|
Generate list of names for select from database by name field
|
||||||
|
"""
|
||||||
|
if read_abi:
|
||||||
|
names = [item["name"] for item in abi_json if item["type"] == type]
|
||||||
|
else:
|
||||||
|
names = [item["name"] for item in subscription_filters[type]]
|
||||||
|
|
||||||
|
return names
|
||||||
|
|
||||||
|
|
||||||
|
def process_external(abi_external_calls, blockchain):
|
||||||
|
"""
|
||||||
|
Request all required external data
|
||||||
|
TODO:(Andrey) Check posibility do it via AsyncHttpProvider(not supported for some of middlewares).
|
||||||
|
"""
|
||||||
|
|
||||||
|
extention_data = []
|
||||||
|
|
||||||
|
external_calls = []
|
||||||
|
|
||||||
|
for external_call in abi_external_calls:
|
||||||
|
try:
|
||||||
|
func_input_abi = []
|
||||||
|
input_args = []
|
||||||
|
for func_input in external_call["inputs"]:
|
||||||
|
func_input_abi.append(
|
||||||
|
{"name": func_input["name"], "type": func_input["type"]}
|
||||||
|
)
|
||||||
|
input_args.append(
|
||||||
|
cast_to_python_type(func_input["type"])(func_input["value"])
|
||||||
|
)
|
||||||
|
|
||||||
|
func_abi = [
|
||||||
|
{
|
||||||
|
"name": external_call["name"],
|
||||||
|
"inputs": func_input_abi,
|
||||||
|
"outputs": external_call["outputs"],
|
||||||
|
"type": "function",
|
||||||
|
"stateMutability": "view",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
external_calls.append(
|
||||||
|
{
|
||||||
|
"display_name": external_call["display_name"],
|
||||||
|
"address": Web3.toChecksumAddress(external_call["address"]),
|
||||||
|
"name": external_call["name"],
|
||||||
|
"abi": func_abi,
|
||||||
|
"input_args": input_args,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error processing external call: {e}")
|
||||||
|
|
||||||
|
web3_client = connect(blockchain)
|
||||||
|
# {
|
||||||
|
# "type": "external_call"
|
||||||
|
# "display_name": "Total weth earned"
|
||||||
|
# "address": "0xdf2811b6432cae65212528f0a7186b71adaec03a",
|
||||||
|
# "name": "balanceOf",
|
||||||
|
# "inputs": [
|
||||||
|
# {
|
||||||
|
# "name": "owner",
|
||||||
|
# "type": "address"
|
||||||
|
# "value": "0xA993c4759B731f650dfA011765a6aedaC91a4a88"
|
||||||
|
# }
|
||||||
|
# ],
|
||||||
|
# "outputs": [
|
||||||
|
# {
|
||||||
|
# "internalType": "uint256",
|
||||||
|
# "name": "",
|
||||||
|
# "type": "uint256"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|
||||||
|
for extcall in external_calls:
|
||||||
|
try:
|
||||||
|
contract = web3_client.eth.contract(
|
||||||
|
address=extcall["address"], abi=extcall["abi"]
|
||||||
|
)
|
||||||
|
response = contract.functions[extcall["name"]](
|
||||||
|
*extcall["input_args"]
|
||||||
|
).call()
|
||||||
|
|
||||||
|
extention_data.append(
|
||||||
|
{"display_name": extcall["display_name"], "value": response}
|
||||||
|
)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Failed to call {extcall['name']} error: {e}")
|
||||||
|
|
||||||
|
return extention_data
|
||||||
|
|
||||||
|
|
||||||
def stats_generate_handler(args: argparse.Namespace):
|
def stats_generate_handler(args: argparse.Namespace):
|
||||||
"""
|
"""
|
||||||
Start crawler with generate.
|
Start crawler with generate.
|
||||||
|
@ -413,192 +512,162 @@ def stats_generate_handler(args: argparse.Namespace):
|
||||||
|
|
||||||
with yield_db_session_ctx() as db_session:
|
with yield_db_session_ctx() as db_session:
|
||||||
# read all subscriptions
|
# read all subscriptions
|
||||||
required_subscriptions: BugoutResources = bc.list_resources(
|
|
||||||
|
# ethereum_blockchain
|
||||||
|
|
||||||
|
blockchain_type = AvailableBlockchainType(args.blockchain)
|
||||||
|
|
||||||
|
# polygon_blockchain
|
||||||
|
dashboard_resources: BugoutResources = bc.list_resources(
|
||||||
|
token=MOONSTREAM_ADMIN_ACCESS_TOKEN,
|
||||||
|
params={"type": BUGOUT_RESOURCE_TYPE_DASHBOARD},
|
||||||
|
timeout=10,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create subscriptions dict for get subscriptions by id.
|
||||||
|
blockchain_subscriptions: BugoutResources = bc.list_resources(
|
||||||
token=MOONSTREAM_ADMIN_ACCESS_TOKEN,
|
token=MOONSTREAM_ADMIN_ACCESS_TOKEN,
|
||||||
params={
|
params={
|
||||||
"type": BUGOUT_RESOURCE_TYPE_SUBSCRIPTION,
|
"type": BUGOUT_RESOURCE_TYPE_SUBSCRIPTION,
|
||||||
"abi": "true",
|
|
||||||
"subscription_type_id": subscription_id_by_blockchain[args.blockchain],
|
"subscription_type_id": subscription_id_by_blockchain[args.blockchain],
|
||||||
},
|
},
|
||||||
timeout=10,
|
timeout=10,
|
||||||
)
|
)
|
||||||
|
|
||||||
print(f"Subscriptions for processing: {len(required_subscriptions.resources)}")
|
subscription_by_id = {
|
||||||
|
blockchain_subscription.id: blockchain_subscription
|
||||||
|
for blockchain_subscription in blockchain_subscriptions.resources
|
||||||
|
}
|
||||||
|
|
||||||
|
# print(f"Subscriptions for processing: {len(required_subscriptions.resources)}")
|
||||||
|
|
||||||
s3_client = boto3.client("s3")
|
s3_client = boto3.client("s3")
|
||||||
|
|
||||||
# Already processed
|
# # Already processed
|
||||||
already_processed = []
|
already_processed = []
|
||||||
|
|
||||||
for subscription in required_subscriptions.resources:
|
for dashboard in dashboard_resources.resources:
|
||||||
bucket = subscription.resource_data["bucket"]
|
|
||||||
key = subscription.resource_data["s3_path"]
|
|
||||||
address = subscription.resource_data["address"]
|
|
||||||
|
|
||||||
print(f"Expected bucket: s3://{bucket}/{key}")
|
for dashboard_subscription_filters in dashboard.resource_data[
|
||||||
|
"dashboard_subscriptions"
|
||||||
|
]:
|
||||||
|
|
||||||
abi = s3_client.get_object(
|
subscription_id = dashboard_subscription_filters["subscription_id"]
|
||||||
Bucket=bucket,
|
|
||||||
Key=key,
|
|
||||||
)
|
|
||||||
abi_json = json.loads(abi["Body"].read())
|
|
||||||
|
|
||||||
abi_string = json.dumps(abi_json, sort_keys=True, indent=2)
|
if subscription_id not in subscription_by_id:
|
||||||
|
# Meen it's are different blockchain type
|
||||||
|
continue
|
||||||
|
|
||||||
hash = hashlib.md5(abi_string.encode("utf-8")).hexdigest()
|
s3_data_object = {}
|
||||||
|
|
||||||
if f"{address}/{hash}" in already_processed:
|
extention_data = []
|
||||||
continue
|
|
||||||
|
|
||||||
s3_data_object = {}
|
address = subscription_by_id[subscription_id].resource_data["address"]
|
||||||
|
|
||||||
abi_functions = [item for item in abi_json if item["type"] == "function"]
|
generic = dashboard_subscription_filters["generic"]
|
||||||
abi_events = [item for item in abi_json if item["type"] == "event"]
|
|
||||||
|
|
||||||
abi_external_calls = [
|
if not subscription_by_id[subscription_id].resource_data["abi"]:
|
||||||
item for item in abi_json if item["type"] == "external_call"
|
|
||||||
]
|
|
||||||
|
|
||||||
external_calls = []
|
methods = []
|
||||||
|
events = []
|
||||||
|
|
||||||
for external_call in abi_external_calls:
|
else:
|
||||||
try:
|
|
||||||
func_input_abi = []
|
|
||||||
input_args = []
|
|
||||||
for func_input in external_call["inputs"]:
|
|
||||||
func_input_abi.append(
|
|
||||||
{"name": func_input["name"], "type": func_input["type"]}
|
|
||||||
)
|
|
||||||
input_args.append(
|
|
||||||
cast_to_python_type(func_input["type"])(func_input["value"])
|
|
||||||
)
|
|
||||||
|
|
||||||
func_abi = [
|
bucket = subscription_by_id[subscription_id].resource_data["bucket"]
|
||||||
{
|
key = subscription_by_id[subscription_id].resource_data["s3_path"]
|
||||||
"name": external_call["name"],
|
|
||||||
"inputs": func_input_abi,
|
abi = s3_client.get_object(
|
||||||
"outputs": external_call["outputs"],
|
Bucket=bucket,
|
||||||
"type": "function",
|
Key=key,
|
||||||
"stateMutability": "view",
|
)
|
||||||
}
|
abi_json = json.loads(abi["Body"].read())
|
||||||
|
|
||||||
|
methods = generate_list_of_names(
|
||||||
|
type="methods",
|
||||||
|
subscription_filters=dashboard_subscription_filters,
|
||||||
|
read_abi=dashboard_subscription_filters.all_methods,
|
||||||
|
abi_json=abi_json,
|
||||||
|
)
|
||||||
|
|
||||||
|
events = generate_list_of_names(
|
||||||
|
type="events",
|
||||||
|
subscription_filters=dashboard_subscription_filters,
|
||||||
|
read_abi=dashboard_subscription_filters.all_methods,
|
||||||
|
abi_json=abi_json,
|
||||||
|
)
|
||||||
|
|
||||||
|
abi_external_calls = [
|
||||||
|
item for item in abi_json if item["type"] == "external_call"
|
||||||
]
|
]
|
||||||
|
|
||||||
external_calls.append(
|
extention_data = process_external(
|
||||||
{
|
abi_external_calls=abi_external_calls,
|
||||||
"display_name": external_call["display_name"],
|
blockchain=blockchain_type,
|
||||||
"address": Web3.toChecksumAddress(external_call["address"]),
|
|
||||||
"name": external_call["name"],
|
|
||||||
"abi": func_abi,
|
|
||||||
"input_args": input_args,
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
except Exception as e:
|
|
||||||
print(f"Error processing external call: {e}")
|
|
||||||
|
|
||||||
web3_client = connect(blockchain_type)
|
extention_data.append(
|
||||||
# {
|
{
|
||||||
# "type": "external_call"
|
"display_name": "Overall unique token owners.",
|
||||||
# "display_name": "Total weth earned"
|
"value": get_unique_address(
|
||||||
# "address": "0xdf2811b6432cae65212528f0a7186b71adaec03a",
|
db_session=db_session,
|
||||||
# "name": "balanceOf",
|
blockchain_type=blockchain_type,
|
||||||
# "inputs": [
|
address=address,
|
||||||
# {
|
),
|
||||||
# "name": "owner",
|
}
|
||||||
# "type": "address"
|
)
|
||||||
# "value": "0xA993c4759B731f650dfA011765a6aedaC91a4a88"
|
|
||||||
# }
|
|
||||||
# ],
|
|
||||||
# "outputs": [
|
|
||||||
# {
|
|
||||||
# "internalType": "uint256",
|
|
||||||
# "name": "",
|
|
||||||
# "type": "uint256"
|
|
||||||
# }
|
|
||||||
# }
|
|
||||||
|
|
||||||
extention_data = []
|
for timescale in [timescale.value for timescale in TimeScale]:
|
||||||
for extcall in external_calls:
|
|
||||||
try:
|
start_date = (
|
||||||
contract = web3_client.eth.contract(
|
datetime.utcnow() - timescales_delta[timescale]["timedelta"]
|
||||||
address=extcall["address"], abi=extcall["abi"]
|
|
||||||
)
|
)
|
||||||
response = contract.functions[extcall["name"]](
|
|
||||||
*extcall["input_args"]
|
|
||||||
).call()
|
|
||||||
|
|
||||||
extention_data.append(
|
print(f"Timescale: {timescale}")
|
||||||
{"display_name": extcall["display_name"], "value": response}
|
|
||||||
)
|
|
||||||
except Exception as e:
|
|
||||||
print(f"Failed to call {extcall['name']} error: {e}")
|
|
||||||
|
|
||||||
extention_data.append(
|
s3_data_object["web3_metric"] = extention_data
|
||||||
{
|
|
||||||
"display_name": "Overall unique token owners.",
|
functions_calls_data = generate_data(
|
||||||
"value": get_unique_address(
|
|
||||||
db_session=db_session,
|
db_session=db_session,
|
||||||
blockchain_type=blockchain_type,
|
blockchain_type=blockchain_type,
|
||||||
address=address,
|
address=address,
|
||||||
),
|
timescale=timescale,
|
||||||
}
|
functions=methods,
|
||||||
)
|
start=start_date,
|
||||||
|
metric_type="tx_call",
|
||||||
|
)
|
||||||
|
|
||||||
for timescale in [timescale.value for timescale in TimeScale]:
|
s3_data_object["functions"] = functions_calls_data
|
||||||
|
# generate data
|
||||||
|
|
||||||
start_date = (
|
events_data = generate_data(
|
||||||
datetime.utcnow() - timescales_delta[timescale]["timedelta"]
|
db_session=db_session,
|
||||||
)
|
blockchain_type=blockchain_type,
|
||||||
|
address=address,
|
||||||
|
timescale=timescale,
|
||||||
|
functions=events,
|
||||||
|
start=start_date,
|
||||||
|
metric_type="event",
|
||||||
|
)
|
||||||
|
|
||||||
print(f"Timescale: {timescale}")
|
s3_data_object["events"] = events_data
|
||||||
|
|
||||||
s3_data_object["web3_metric"] = extention_data
|
s3_data_object["generic"] = generate_metrics(
|
||||||
|
db_session=db_session,
|
||||||
|
blockchain_type=blockchain_type,
|
||||||
|
address=address,
|
||||||
|
timescale=timescale,
|
||||||
|
metrics=generic,
|
||||||
|
start=start_date,
|
||||||
|
)
|
||||||
|
|
||||||
abi_functions_names = [item["name"] for item in abi_functions]
|
push_statistics(
|
||||||
|
statistics_data=s3_data_object,
|
||||||
functions_calls_data = generate_data(
|
subscription=subscription_by_id[subscription_id],
|
||||||
db_session=db_session,
|
timescale=timescale,
|
||||||
blockchain_type=blockchain_type,
|
bucket=bucket,
|
||||||
address=address,
|
dashboard_id=dashboard.id,
|
||||||
timescale=timescale,
|
)
|
||||||
functions=abi_functions_names,
|
already_processed.append(f"{address}/{hash}")
|
||||||
start=start_date,
|
|
||||||
metric_type="tx_call",
|
|
||||||
)
|
|
||||||
|
|
||||||
s3_data_object["functions"] = functions_calls_data
|
|
||||||
# generate data
|
|
||||||
|
|
||||||
abi_events_names = [item["name"] for item in abi_events]
|
|
||||||
|
|
||||||
events_data = generate_data(
|
|
||||||
db_session=db_session,
|
|
||||||
blockchain_type=blockchain_type,
|
|
||||||
address=address,
|
|
||||||
timescale=timescale,
|
|
||||||
functions=abi_events_names,
|
|
||||||
start=start_date,
|
|
||||||
metric_type="event",
|
|
||||||
)
|
|
||||||
|
|
||||||
s3_data_object["events"] = events_data
|
|
||||||
|
|
||||||
s3_data_object["generic"] = generate_metrics(
|
|
||||||
db_session=db_session,
|
|
||||||
blockchain_type=blockchain_type,
|
|
||||||
address=address,
|
|
||||||
timescale=timescale,
|
|
||||||
metrics=abi_events_names,
|
|
||||||
start=start_date,
|
|
||||||
)
|
|
||||||
|
|
||||||
push_statistics(
|
|
||||||
statistics_data=s3_data_object,
|
|
||||||
subscription=subscription,
|
|
||||||
timescale=timescale,
|
|
||||||
bucket=bucket,
|
|
||||||
hash=hash,
|
|
||||||
)
|
|
||||||
already_processed.append(f"{address}/{hash}")
|
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
|
|
Ładowanie…
Reference in New Issue