mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 18:15:18 +00:00
14 lines
347 B
Python
14 lines
347 B
Python
from pathlib import Path
|
|
import json
|
|
from web3 import Web3
|
|
|
|
|
|
def load_contract_metadata(path: str, name: str):
|
|
path = Path(path)
|
|
try:
|
|
found_file = next(path.rglob(f"{name}.json"))
|
|
return json.loads(open(found_file, "r").read())
|
|
except StopIteration:
|
|
raise Exception(f"Cannot found contract {name}'s metadata")
|
|
|