def build_(contract_dir_hint, c_cpp_properties_path="", compile_only=False, silent=False): verbosity = [] if silent else None if not compile_only: teos.ABI(contract_dir_hint, c_cpp_properties_path, verbosity) teos.WASM(contract_dir_hint, c_cpp_properties_path, compile_only, verbosity)
def build_abi(self): teos.ABI(self.contract_dir)
def build_abi(self): '''Make the ABI file. ''' teos.ABI(self.contract_dir, self.c_cpp_properties_path)
def build_abi(self): '''Make the ABI file. ''' teos.ABI(self.contract_dir)
def build_(contract_dir_hint, compile_only=False, silent=False): verbosity = [] if silent else None if not compile_only: teos.ABI(contract_dir_hint, None, verbosity) teos.WASM(contract_dir_hint, None, compile_only, verbosity)