Files
2023-11-01 10:18:13 -04:00

24 lines
385 B
Protocol Buffer

syntax = "proto3";
package sol.transactions.v1;
message Instructions {
repeated Instruction instructions = 1;
}
message Instruction {
string program_id = 1;
repeated string accounts = 2;
string data = 3;
}
message Transactions {
repeated Transaction transactions = 1;
}
message Transaction {
repeated string signatures = 1;
repeated Instruction instructions = 2;
}