All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rprise.we-transaction-protobuf.1.11-1.16.0-RC1.source-code.stored_contract.proto Maven / Gradle / Ivy

There is a newer version: 1.12-1.16.0
Show newest version
syntax = "proto3";
package wavesenterprise;

option java_multiple_files = true;
option java_package = "com.wavesenterprise.transaction.protobuf";
option csharp_namespace = "WavesEnterprise";
option go_package = "wavesenterprise.com/weproto";

import "contract_api_version.proto";

message WasmContract {
  bytes bytecode = 1;
  string bytecode_hash = 2;
}

message DockerContract {
  string image = 1;
  string image_hash = 2;
  ContractApiVersion api_version = 3;
}

message StoredContract {
  oneof value {
    WasmContract wasmBytecode = 10;
    DockerContract dockerBytecode = 11;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy