Returns the function's/modifier's instructions that create a new contract.
Last updated 2 days ago
new_contract_instructions() β Instructions
new_contract_instructions() β
Instructions
from glider import * def query(): functions = Functions().with_name("deploy").exec(20) deployment_instructions = [] for func in functions: for inst in func.new_contract_instructions().exec(): deployment_instructions.append(inst) return deployment_instructions