genesis.genesis_permit_transaction.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of we-transaction-protobuf Show documentation
Show all versions of we-transaction-protobuf Show documentation
Library for Waves Enterprise blockchain platform
syntax = "proto3";
package wavesenterprise;
option java_package = "com.wavesenterprise.transaction.protobuf";
option csharp_namespace = "WavesEnterprise";
option go_package = "wavesenterprise.com/weproto";
import "role.proto";
message GenesisPermitTransaction {
bytes id = 1;
bytes target = 2;
Role role = 3;
int64 fee = 4;
int64 timestamp = 5;
bytes signature = 6;
}