Integrations
Supported Integrations
from src.utils.blockchain_manager import BlockchainManager blockchain = BlockchainManager() # Deploy a contract contract_address = blockchain.deploy_contract(abi, bytecode) print(f"Contract deployed at: {contract_address}") # Call a contract function result = blockchain.call_contract_function(contract_address, abi, "getValue") print(f"Contract result: {result}")
Benefits of Integrations
Last updated