protosol 2.0.0

Protobuf definitions for the SVM fuzzing project.
Documentation
syntax = "proto3";
package org.solana.sealevel.v1;

import "metadata.proto";

message TypeContext {
    bytes content = 1;
    string typename = 2;
}

message TypeEffects {
    uint64 result = 1;
    bytes representation = 2;
    bytes yaml = 3;
}

message TypeFixture {
    FixtureMetadata metadata = 1;
    TypeContext input = 2;
    TypeEffects output = 3;
}