hedera 0.4.0

Hedera SDK for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";

package proto;

option java_package = "com.hederahashgraph.api.proto.java";
option java_multiple_files = true;

import "BasicTypes.proto";

/* The transaction body to update the fee schedule. */
message CreateFeeScheduleTransactionBody {
	Key key = 1; // the key that must sign to update the Fee Schedule
	repeated TransactionFeeSchedule transactionFeeSchedule = 2; // The fee schedule for a specific hedera functionality and the time period this fee will be valid for the transaction
}