protosol 5.2.0

Protobuf definitions for the SVM fuzzing project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
syntax = "proto3";
package org.solana.sealevel.v1;

message VmMemRegion {
  uint64 vm_addr = 1;

  bytes content = 2;

  bool is_writable = 3;
}

message InstrSerializeResult {
  int32 result = 1;

  repeated VmMemRegion regions = 2;
}