com.hedera.services.stream.proto.ContractBytecodeOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_bytecode.proto
package com.hedera.services.stream.proto;
public interface ContractBytecodeOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractBytecode)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The contract to which the bytecodes apply to
*
*
* .proto.ContractID contract_id = 1;
* @return Whether the contractId field is set.
*/
boolean hasContractId();
/**
*
**
* The contract to which the bytecodes apply to
*
*
* .proto.ContractID contract_id = 1;
* @return The contractId.
*/
com.hederahashgraph.api.proto.java.ContractID getContractId();
/**
*
**
* The contract to which the bytecodes apply to
*
*
* .proto.ContractID contract_id = 1;
*/
com.hederahashgraph.api.proto.java.ContractIDOrBuilder getContractIdOrBuilder();
/**
*
**
* Contract bytecode during deployment
*
*
* bytes initcode = 2;
* @return The initcode.
*/
com.google.protobuf.ByteString getInitcode();
/**
*
**
* Contract bytecode after deployment
*
*
* bytes runtime_bytecode = 3;
* @return The runtimeBytecode.
*/
com.google.protobuf.ByteString getRuntimeBytecode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy