diff --git a/proto/gen.sh b/proto/gen.sh index 764416fda52..c43afe29654 100755 --- a/proto/gen.sh +++ b/proto/gen.sh @@ -7,4 +7,8 @@ TARGET_DIR=./types/pb cd $SCRIPT_DIR rm -rf $TARGET_DIR/* docker run -v $PWD:/workspace --workdir /workspace tendermintdev/docker-build-proto sh ./proto/protoc.sh + cp -r ./proto/pb/* $TARGET_DIR/ + +rm -rf $TARGET_DIR/tendermint + diff --git a/proto/rollkit/rollkit.proto b/proto/rollkit/rollkit.proto index 83b6cf10687..646ec084986 100644 --- a/proto/rollkit/rollkit.proto +++ b/proto/rollkit/rollkit.proto @@ -1,7 +1,6 @@ syntax = "proto3"; package rollkit; option go_package = "github.com/rollkit/rollkit/types/pb/rollkit"; -import "tendermint/abci/types.proto"; import "tendermint/types/validator.proto"; // Version captures the consensus rules for processing a block in the blockchain, diff --git a/proto/rollkit/state.proto b/proto/rollkit/state.proto index 78f1221663e..5717dda81f8 100644 --- a/proto/rollkit/state.proto +++ b/proto/rollkit/state.proto @@ -4,7 +4,6 @@ option go_package = "github.com/rollkit/rollkit/types/pb/rollkit"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -import "tendermint/abci/types.proto"; import "tendermint/types/types.proto"; import "tendermint/types/validator.proto"; import "tendermint/types/params.proto"; diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto deleted file mode 100644 index 640360aad35..00000000000 --- a/proto/tendermint/abci/types.proto +++ /dev/null @@ -1,486 +0,0 @@ -syntax = "proto3"; -package tendermint.abci; - -option go_package = "github.com/tendermint/tendermint/abci/types"; - -// For more information on gogo.proto, see: -// https://github.com/gogo/protobuf/blob/master/extensions.md -import "tendermint/crypto/proof.proto"; -import "tendermint/types/types.proto"; -import "tendermint/crypto/keys.proto"; -import "tendermint/types/params.proto"; -import "google/protobuf/timestamp.proto"; -import "gogoproto/gogo.proto"; - -// This file is copied from http://github.com/tendermint/abci -// NOTE: When using custom types, mind the warnings. -// https://github.com/gogo/protobuf/blob/master/custom_types.md#warnings-and-issues - -//---------------------------------------- -// Request types - -message Request { - oneof value { - RequestEcho echo = 1; - RequestFlush flush = 2; - RequestInfo info = 3; - RequestSetOption set_option = 4; - RequestInitChain init_chain = 5; - RequestQuery query = 6; - RequestBeginBlock begin_block = 7; - RequestCheckTx check_tx = 8; - RequestDeliverTx deliver_tx = 9; - RequestEndBlock end_block = 10; - RequestCommit commit = 11; - RequestListSnapshots list_snapshots = 12; - RequestOfferSnapshot offer_snapshot = 13; - RequestLoadSnapshotChunk load_snapshot_chunk = 14; - RequestApplySnapshotChunk apply_snapshot_chunk = 15; - RequestGetAppHash get_app_hash = 16; - RequestGenerateFraudProof generate_fraud_proof = 17; - RequestVerifyFraudProof verify_fraud_proof = 18; - } -} - -message RequestEcho { - string message = 1; -} - -message RequestFlush {} - -message RequestInfo { - string version = 1; - uint64 block_version = 2; - uint64 p2p_version = 3; -} - -// nondeterministic -message RequestSetOption { - string key = 1; - string value = 2; -} - -message RequestInitChain { - google.protobuf.Timestamp time = 1 - [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - string chain_id = 2; - ConsensusParams consensus_params = 3; - repeated ValidatorUpdate validators = 4 [(gogoproto.nullable) = false]; - bytes app_state_bytes = 5; - int64 initial_height = 6; -} - -message RequestQuery { - bytes data = 1; - string path = 2; - int64 height = 3; - bool prove = 4; -} - -message RequestBeginBlock { - bytes hash = 1; - tendermint.types.Header header = 2 [(gogoproto.nullable) = false]; - LastCommitInfo last_commit_info = 3 [(gogoproto.nullable) = false]; - repeated Evidence byzantine_validators = 4 [(gogoproto.nullable) = false]; -} - -enum CheckTxType { - NEW = 0 [(gogoproto.enumvalue_customname) = "New"]; - RECHECK = 1 [(gogoproto.enumvalue_customname) = "Recheck"]; -} - -message RequestCheckTx { - bytes tx = 1; - CheckTxType type = 2; -} - -message RequestDeliverTx { - bytes tx = 1; -} - -message RequestEndBlock { - int64 height = 1; -} - -message RequestCommit {} - -// lists available snapshots -message RequestListSnapshots {} - -// offers a snapshot to the application -message RequestOfferSnapshot { - Snapshot snapshot = 1; // snapshot offered by peers - bytes app_hash = 2; // light client-verified app hash for snapshot height -} - -// loads a snapshot chunk -message RequestLoadSnapshotChunk { - uint64 height = 1; - uint32 format = 2; - uint32 chunk = 3; -} - -// Applies a snapshot chunk -message RequestApplySnapshotChunk { - uint32 index = 1; - bytes chunk = 2; - string sender = 3; -} - -// Gets the current appHash -message RequestGetAppHash {} - -// Generates a fraud proof -message RequestGenerateFraudProof { - RequestBeginBlock begin_block_request = 1 [(gogoproto.nullable) = false]; - repeated RequestDeliverTx deliver_tx_requests = 2; - RequestEndBlock end_block_request = 3; -} - -// Verifies a fraud proof -message RequestVerifyFraudProof { - FraudProof fraud_proof = 1; - bytes expected_valid_app_hash = 2; -} - -//---------------------------------------- -// Response types - -message Response { - oneof value { - ResponseException exception = 1; - ResponseEcho echo = 2; - ResponseFlush flush = 3; - ResponseInfo info = 4; - ResponseSetOption set_option = 5; - ResponseInitChain init_chain = 6; - ResponseQuery query = 7; - ResponseBeginBlock begin_block = 8; - ResponseCheckTx check_tx = 9; - ResponseDeliverTx deliver_tx = 10; - ResponseEndBlock end_block = 11; - ResponseCommit commit = 12; - ResponseListSnapshots list_snapshots = 13; - ResponseOfferSnapshot offer_snapshot = 14; - ResponseLoadSnapshotChunk load_snapshot_chunk = 15; - ResponseApplySnapshotChunk apply_snapshot_chunk = 16; - ResponseGetAppHash get_app_hash = 17; - ResponseGenerateFraudProof generate_fraud_proof = 18; - ResponseVerifyFraudProof verify_fraud_proof = 19; - } -} - -// nondeterministic -message ResponseException { - string error = 1; -} - -message ResponseEcho { - string message = 1; -} - -message ResponseFlush {} - -message ResponseInfo { - string data = 1; - - string version = 2; - uint64 app_version = 3; - - int64 last_block_height = 4; - bytes last_block_app_hash = 5; -} - -// nondeterministic -message ResponseSetOption { - uint32 code = 1; - // bytes data = 2; - string log = 3; - string info = 4; -} - -message ResponseInitChain { - ConsensusParams consensus_params = 1; - repeated ValidatorUpdate validators = 2 [(gogoproto.nullable) = false]; - bytes app_hash = 3; -} - -message ResponseQuery { - uint32 code = 1; - // bytes data = 2; // use "value" instead. - string log = 3; // nondeterministic - string info = 4; // nondeterministic - int64 index = 5; - bytes key = 6; - bytes value = 7; - tendermint.crypto.ProofOps proof_ops = 8; - int64 height = 9; - string codespace = 10; -} - -message ResponseBeginBlock { - repeated Event events = 1 - [(gogoproto.nullable) = false, (gogoproto.jsontag) = "events,omitempty"]; -} - -message ResponseCheckTx { - uint32 code = 1; - bytes data = 2; - string log = 3; // nondeterministic - string info = 4; // nondeterministic - int64 gas_wanted = 5 [json_name = "gas_wanted"]; - int64 gas_used = 6 [json_name = "gas_used"]; - repeated Event events = 7 - [(gogoproto.nullable) = false, (gogoproto.jsontag) = "events,omitempty"]; - string codespace = 8; - string sender = 9; - int64 priority = 10; - - // mempool_error is set by Tendermint. - // ABCI applictions creating a ResponseCheckTX should not set mempool_error. - string mempool_error = 11; -} - -message ResponseDeliverTx { - uint32 code = 1; - bytes data = 2; - string log = 3; // nondeterministic - string info = 4; // nondeterministic - int64 gas_wanted = 5 [json_name = "gas_wanted"]; - int64 gas_used = 6 [json_name = "gas_used"]; - repeated Event events = 7 [ - (gogoproto.nullable) = false, - (gogoproto.jsontag) = "events,omitempty" - ]; // nondeterministic - string codespace = 8; -} - -message ResponseEndBlock { - repeated ValidatorUpdate validator_updates = 1 [(gogoproto.nullable) = false]; - ConsensusParams consensus_param_updates = 2; - repeated Event events = 3 - [(gogoproto.nullable) = false, (gogoproto.jsontag) = "events,omitempty"]; -} - -message ResponseCommit { - // reserve 1 - bytes data = 2; - int64 retain_height = 3; -} - -message ResponseListSnapshots { - repeated Snapshot snapshots = 1; -} - -message ResponseOfferSnapshot { - Result result = 1; - - enum Result { - UNKNOWN = 0; // Unknown result, abort all snapshot restoration - ACCEPT = 1; // Snapshot accepted, apply chunks - ABORT = 2; // Abort all snapshot restoration - REJECT = 3; // Reject this specific snapshot, try others - REJECT_FORMAT = 4; // Reject all snapshots of this format, try others - REJECT_SENDER = 5; // Reject all snapshots from the sender(s), try others - } -} - -message ResponseLoadSnapshotChunk { - bytes chunk = 1; -} - -message ResponseApplySnapshotChunk { - Result result = 1; - repeated uint32 refetch_chunks = 2; // Chunks to refetch and reapply - repeated string reject_senders = 3; // Chunk senders to reject and ban - - enum Result { - UNKNOWN = 0; // Unknown result, abort all snapshot restoration - ACCEPT = 1; // Chunk successfully accepted - ABORT = 2; // Abort all snapshot restoration - RETRY = 3; // Retry chunk (combine with refetch and reject) - RETRY_SNAPSHOT = 4; // Retry snapshot (combine with refetch and reject) - REJECT_SNAPSHOT = 5; // Reject this snapshot, try others - } -} - -message ResponseGetAppHash { - bytes app_hash = 1; -} - -message ResponseGenerateFraudProof { - FraudProof fraud_proof = 1; -} - -message ResponseVerifyFraudProof { - bool success = 1; -} - -//---------------------------------------- -// Misc. - -// ConsensusParams contains all consensus-relevant parameters -// that can be adjusted by the abci app -message ConsensusParams { - BlockParams block = 1; - tendermint.types.EvidenceParams evidence = 2; - tendermint.types.ValidatorParams validator = 3; - tendermint.types.VersionParams version = 4; -} - -// BlockParams contains limits on the block size. -message BlockParams { - // Note: must be greater than 0 - int64 max_bytes = 1; - // Note: must be greater or equal to -1 - int64 max_gas = 2; -} - -message LastCommitInfo { - int32 round = 1; - repeated VoteInfo votes = 2 [(gogoproto.nullable) = false]; -} - -// Event allows application developers to attach additional information to -// ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and ResponseDeliverTx. -// Later, transactions may be queried using these events. -message Event { - string type = 1; - repeated EventAttribute attributes = 2 [ - (gogoproto.nullable) = false, - (gogoproto.jsontag) = "attributes,omitempty" - ]; -} - -// EventAttribute is a single key-value pair, associated with an event. -message EventAttribute { - bytes key = 1; - bytes value = 2; - bool index = 3; // nondeterministic -} - -// TxResult contains results of executing the transaction. -// -// One usage is indexing transaction results. -message TxResult { - int64 height = 1; - uint32 index = 2; - bytes tx = 3; - ResponseDeliverTx result = 4 [(gogoproto.nullable) = false]; -} - -//---------------------------------------- -// Blockchain Types - -// Validator -message Validator { - bytes address = 1; // The first 20 bytes of SHA256(public key) - // PubKey pub_key = 2 [(gogoproto.nullable)=false]; - int64 power = 3; // The voting power -} - -// ValidatorUpdate -message ValidatorUpdate { - tendermint.crypto.PublicKey pub_key = 1 [(gogoproto.nullable) = false]; - int64 power = 2; -} - -// VoteInfo -message VoteInfo { - Validator validator = 1 [(gogoproto.nullable) = false]; - bool signed_last_block = 2; -} - -enum EvidenceType { - UNKNOWN = 0; - DUPLICATE_VOTE = 1; - LIGHT_CLIENT_ATTACK = 2; -} - -message Evidence { - EvidenceType type = 1; - // The offending validator - Validator validator = 2 [(gogoproto.nullable) = false]; - // The height when the offense occurred - int64 height = 3; - // The corresponding time where the offense occurred - google.protobuf.Timestamp time = 4 - [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - // Total voting power of the validator set in case the ABCI application does - // not store historical validators. - // https://github.com/tendermint/tendermint/issues/4581 - int64 total_voting_power = 5; -} - -//---------------------------------------- -// State Sync Types - -message Snapshot { - uint64 height = 1; // The height at which the snapshot was taken - uint32 format = 2; // The application-specific snapshot format - uint32 chunks = 3; // Number of chunks in the snapshot - bytes hash = 4; // Arbitrary snapshot hash, equal only if identical - bytes metadata = 5; // Arbitrary application metadata -} - -// Represents a single-round fraudProof -message FraudProof { - int64 block_height = 1; - bytes pre_state_app_hash = 2; - bytes expected_valid_app_hash = 3; - map state_witness = 4; - - RequestBeginBlock fraudulent_begin_block = 5; - RequestDeliverTx fraudulent_deliver_tx = 6; - RequestEndBlock fraudulent_end_block = 7; -} - -// State witness with a list of all witness data -message StateWitness { - // store level proof - tendermint.crypto.ProofOp proof = 1; - // substore level hash - bytes root_hash = 2; - // List of witness data - repeated WitnessData witness_data = 3; -} - -// Witness data containing a key/value pair and a Merkle proof for said key/value pair -message WitnessData { - Operation operation = 1; - bytes key = 2; - bytes value = 3; - repeated tendermint.crypto.ProofOp proofs = 4; -} - -enum Operation { - WRITE = 0 [(gogoproto.enumvalue_customname) = "write"]; - READ = 1 [(gogoproto.enumvalue_customname) = "read"]; - DELETE = 2 [(gogoproto.enumvalue_customname) = "delete"]; -} - -//---------------------------------------- -// Service Definition - -service ABCIApplication { - rpc Echo(RequestEcho) returns (ResponseEcho); - rpc Flush(RequestFlush) returns (ResponseFlush); - rpc Info(RequestInfo) returns (ResponseInfo); - rpc SetOption(RequestSetOption) returns (ResponseSetOption); - rpc DeliverTx(RequestDeliverTx) returns (ResponseDeliverTx); - rpc CheckTx(RequestCheckTx) returns (ResponseCheckTx); - rpc Query(RequestQuery) returns (ResponseQuery); - rpc Commit(RequestCommit) returns (ResponseCommit); - rpc InitChain(RequestInitChain) returns (ResponseInitChain); - rpc BeginBlock(RequestBeginBlock) returns (ResponseBeginBlock); - rpc EndBlock(RequestEndBlock) returns (ResponseEndBlock); - rpc ListSnapshots(RequestListSnapshots) returns (ResponseListSnapshots); - rpc OfferSnapshot(RequestOfferSnapshot) returns (ResponseOfferSnapshot); - rpc LoadSnapshotChunk(RequestLoadSnapshotChunk) - returns (ResponseLoadSnapshotChunk); - rpc ApplySnapshotChunk(RequestApplySnapshotChunk) - returns (ResponseApplySnapshotChunk); - rpc GetAppHash(RequestGetAppHash) returns (ResponseGetAppHash); - rpc GenerateFraudProof(RequestGenerateFraudProof) returns (ResponseGenerateFraudProof); - rpc VerifyFraudProof(RequestVerifyFraudProof) returns (ResponseVerifyFraudProof); -} diff --git a/types/pb/rollkit/rollkit.pb.go b/types/pb/rollkit/rollkit.pb.go index e68dc4c8bb2..7cde0bee75f 100644 --- a/types/pb/rollkit/rollkit.pb.go +++ b/types/pb/rollkit/rollkit.pb.go @@ -6,7 +6,6 @@ package rollkit import ( fmt "fmt" proto "github.com/gogo/protobuf/proto" - _ "github.com/tendermint/tendermint/abci/types" types "github.com/tendermint/tendermint/proto/tendermint/types" io "io" math "math" @@ -511,47 +510,46 @@ func init() { func init() { proto.RegisterFile("rollkit/rollkit.proto", fileDescriptor_ed489fb7f4d78b3f) } var fileDescriptor_ed489fb7f4d78b3f = []byte{ - // 632 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x94, 0xd1, 0x6e, 0xd3, 0x3c, - 0x14, 0xc7, 0x97, 0xb6, 0x6b, 0xb6, 0xb3, 0x6c, 0xeb, 0x17, 0x7d, 0x1b, 0x61, 0x93, 0xa2, 0x12, - 0x09, 0x51, 0x86, 0xd4, 0x8a, 0x71, 0x83, 0xb8, 0x40, 0x62, 0x80, 0xb4, 0xde, 0x21, 0x17, 0x0d, - 0x89, 0x9b, 0xc8, 0x6d, 0x4c, 0x62, 0xad, 0x8d, 0x2d, 0xdb, 0x9d, 0xca, 0x5b, 0xf0, 0x08, 0x3c, - 0x02, 0x8f, 0xc1, 0xe5, 0x2e, 0xb9, 0x44, 0xeb, 0x8b, 0x20, 0x1f, 0x27, 0x5d, 0xe0, 0xa6, 0xf5, - 0xf9, 0xff, 0x7f, 0x3e, 0xf6, 0xc9, 0x39, 0x32, 0x1c, 0x29, 0x31, 0x9f, 0x5f, 0x73, 0x33, 0xaa, - 0xfe, 0x87, 0x52, 0x09, 0x23, 0x42, 0xbf, 0x0a, 0x4f, 0x4e, 0x0d, 0x2b, 0x33, 0xa6, 0x16, 0xbc, - 0x34, 0x23, 0x3a, 0x9d, 0xf1, 0x91, 0xf9, 0x2a, 0x99, 0x76, 0xd4, 0x49, 0xbf, 0x61, 0xa2, 0x3e, - 0xba, 0xa1, 0x73, 0x9e, 0x51, 0x23, 0x94, 0x23, 0x92, 0xe7, 0xe0, 0x5f, 0x31, 0xa5, 0xb9, 0x28, - 0xc3, 0xff, 0x61, 0x7b, 0x3a, 0x17, 0xb3, 0xeb, 0xc8, 0xeb, 0x7b, 0x83, 0x0e, 0x71, 0x41, 0xd8, - 0x83, 0x36, 0x95, 0x32, 0x6a, 0xa1, 0x66, 0x97, 0xc9, 0x8f, 0x36, 0x74, 0x2f, 0x19, 0xcd, 0x98, - 0x0a, 0xcf, 0xc0, 0xbf, 0x71, 0xbb, 0x71, 0xd3, 0xde, 0x79, 0x6f, 0x58, 0x5f, 0xb3, 0xca, 0x4a, - 0x6a, 0x20, 0x3c, 0x86, 0x6e, 0xc1, 0x78, 0x5e, 0x98, 0x2a, 0x57, 0x15, 0x85, 0x21, 0x74, 0x0c, - 0x5f, 0xb0, 0xa8, 0x8d, 0x2a, 0xae, 0xc3, 0x01, 0xf4, 0xe6, 0x54, 0x9b, 0xb4, 0xc0, 0x63, 0xd2, - 0x82, 0xea, 0x22, 0xea, 0xf4, 0xbd, 0x41, 0x40, 0x0e, 0xac, 0xee, 0x4e, 0xbf, 0xa4, 0xba, 0xd8, - 0x90, 0x33, 0xb1, 0x58, 0x70, 0xe3, 0xc8, 0xed, 0x7b, 0xf2, 0x2d, 0xca, 0x48, 0x9e, 0xc2, 0x6e, - 0x46, 0x0d, 0x75, 0x48, 0x17, 0x91, 0x1d, 0x2b, 0xa0, 0xf9, 0x18, 0x0e, 0x66, 0xa2, 0xd4, 0xac, - 0xd4, 0x4b, 0xed, 0x08, 0x1f, 0x89, 0xfd, 0x8d, 0x8a, 0xd8, 0x43, 0xd8, 0xa1, 0x52, 0x3a, 0x60, - 0x07, 0x01, 0x9f, 0x4a, 0x89, 0xd6, 0x19, 0xfc, 0x87, 0x17, 0x51, 0x4c, 0x2f, 0xe7, 0xa6, 0x4a, - 0xb2, 0x8b, 0xcc, 0xa1, 0x35, 0x88, 0xd3, 0x91, 0x7d, 0x0a, 0x3d, 0xa9, 0x84, 0x14, 0x9a, 0xa9, - 0x94, 0x66, 0x99, 0x62, 0x5a, 0x47, 0xe0, 0xd0, 0x5a, 0x7f, 0xe3, 0x64, 0x8b, 0xd2, 0x3c, 0x57, - 0x2c, 0xb7, 0x3d, 0xab, 0xb2, 0xee, 0x39, 0xb4, 0xa1, 0xd7, 0x97, 0x9b, 0x15, 0x94, 0x97, 0x29, - 0xcf, 0xa2, 0xa0, 0xef, 0x0d, 0x76, 0x89, 0x8f, 0xf1, 0x38, 0x4b, 0x06, 0xd0, 0x75, 0x5f, 0x22, - 0x8c, 0x01, 0x34, 0xcf, 0x4b, 0x6a, 0x96, 0x8a, 0xe9, 0xc8, 0xeb, 0xb7, 0x07, 0x01, 0x69, 0x28, - 0xc9, 0x77, 0x0f, 0x82, 0x09, 0xcf, 0x4b, 0x96, 0x55, 0x2d, 0x7e, 0x62, 0xdb, 0x66, 0x57, 0x55, - 0x87, 0x0f, 0x37, 0x1d, 0x76, 0x00, 0xa9, 0x6c, 0x0b, 0xba, 0x26, 0x60, 0x7f, 0x9b, 0xa0, 0x3b, - 0x9a, 0x54, 0x76, 0xf8, 0x1a, 0x60, 0x33, 0x85, 0x1a, 0xdb, 0xbe, 0x77, 0x1e, 0x0f, 0xef, 0x27, - 0x75, 0xe8, 0x26, 0xf8, 0xaa, 0x66, 0x26, 0xcc, 0x90, 0xc6, 0x8e, 0x84, 0x40, 0xe7, 0x1d, 0x35, - 0xd4, 0x4e, 0xa6, 0x59, 0xd5, 0x35, 0xd8, 0x65, 0xf8, 0x12, 0x22, 0x5e, 0x1a, 0xa6, 0x16, 0x2c, - 0xe3, 0xd4, 0xb0, 0x54, 0x1b, 0xfb, 0xab, 0x84, 0x30, 0x3a, 0x6a, 0x21, 0x76, 0xdc, 0xf4, 0x27, - 0xd6, 0x26, 0xd6, 0x4d, 0xbe, 0xc0, 0xf6, 0x05, 0x8e, 0xfb, 0x2b, 0xd8, 0xd7, 0x58, 0x7e, 0xfa, - 0x57, 0xd5, 0x47, 0x9b, 0x62, 0x9a, 0x1f, 0x87, 0x04, 0xba, 0xf9, 0xa9, 0x1e, 0x41, 0xc7, 0x0e, - 0x54, 0x55, 0xff, 0xfe, 0x66, 0x8b, 0xbd, 0x2d, 0x41, 0x2b, 0xf9, 0x00, 0xf0, 0x71, 0xf5, 0x89, - 0x9b, 0x62, 0x3c, 0x21, 0x3a, 0x7c, 0x00, 0xbe, 0x54, 0x2c, 0xe5, 0xda, 0x1d, 0x13, 0x90, 0xae, - 0x54, 0x6c, 0xac, 0x55, 0x78, 0x00, 0x2d, 0xb3, 0xc2, 0x3c, 0x01, 0x69, 0x99, 0x95, 0x6d, 0xad, - 0x14, 0xda, 0x20, 0xd9, 0x76, 0x73, 0x67, 0xe3, 0xb1, 0x56, 0x17, 0xef, 0x7f, 0xde, 0xc5, 0xde, - 0xed, 0x5d, 0xec, 0xfd, 0xbe, 0x8b, 0xbd, 0x6f, 0xeb, 0x78, 0xeb, 0x76, 0x1d, 0x6f, 0xfd, 0x5a, - 0xc7, 0x5b, 0x9f, 0x9f, 0xe5, 0xdc, 0x14, 0xcb, 0xe9, 0x70, 0x26, 0x16, 0xa3, 0x7f, 0x1e, 0x91, - 0xea, 0x31, 0x90, 0xd3, 0x5a, 0x98, 0x76, 0xf1, 0x39, 0x78, 0xf1, 0x27, 0x00, 0x00, 0xff, 0xff, - 0xa4, 0xb5, 0x85, 0x7b, 0x6f, 0x04, 0x00, 0x00, + // 623 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x94, 0xc1, 0x6e, 0x13, 0x3d, + 0x10, 0xc7, 0xbb, 0x49, 0x9a, 0xb4, 0xd3, 0x6d, 0x9b, 0x6f, 0xf5, 0xb5, 0x2c, 0x20, 0xad, 0xc2, + 0x4a, 0x88, 0x50, 0xa4, 0x44, 0x94, 0x0b, 0xe2, 0x80, 0x44, 0x01, 0xa9, 0xb9, 0x21, 0x07, 0x15, + 0x89, 0xcb, 0xca, 0xc9, 0x9a, 0x5d, 0xab, 0xc9, 0xda, 0xb2, 0x9d, 0x2a, 0xbc, 0x05, 0x8f, 0xc0, + 0x23, 0xf0, 0x18, 0x1c, 0x7b, 0xe4, 0x88, 0xda, 0x17, 0x41, 0x1e, 0x7b, 0xd3, 0x85, 0x4b, 0xe2, + 0xf9, 0xcf, 0xcf, 0x63, 0xcf, 0xfe, 0x47, 0x86, 0x23, 0x25, 0x16, 0x8b, 0x4b, 0x6e, 0xc6, 0xfe, + 0x7f, 0x24, 0x95, 0x30, 0x22, 0xea, 0xf9, 0xf0, 0xc1, 0xc0, 0xb0, 0x2a, 0x67, 0x6a, 0xc9, 0x2b, + 0x33, 0x36, 0x5f, 0x25, 0xd3, 0xe3, 0x2b, 0xba, 0xe0, 0x39, 0x35, 0x42, 0x39, 0x34, 0x7d, 0x0e, + 0xbd, 0x0b, 0xa6, 0x34, 0x17, 0x55, 0xf4, 0x3f, 0x6c, 0xcf, 0x16, 0x62, 0x7e, 0x19, 0x07, 0x83, + 0x60, 0xd8, 0x21, 0x2e, 0x88, 0xfa, 0xd0, 0xa6, 0x52, 0xc6, 0x2d, 0xd4, 0xec, 0x32, 0xfd, 0xd1, + 0x86, 0xee, 0x39, 0xa3, 0x39, 0x53, 0xd1, 0x09, 0xf4, 0xae, 0xdc, 0x6e, 0xdc, 0xb4, 0x77, 0xda, + 0x1f, 0xd5, 0x37, 0xf1, 0x55, 0x49, 0x0d, 0x44, 0xc7, 0xd0, 0x2d, 0x19, 0x2f, 0x4a, 0xe3, 0x6b, + 0xf9, 0x28, 0x8a, 0xa0, 0x63, 0xf8, 0x92, 0xc5, 0x6d, 0x54, 0x71, 0x1d, 0x0d, 0xa1, 0xbf, 0xa0, + 0xda, 0x64, 0x25, 0x1e, 0x93, 0x95, 0x54, 0x97, 0x71, 0x67, 0x10, 0x0c, 0x43, 0x72, 0x60, 0x75, + 0x77, 0xfa, 0x39, 0xd5, 0xe5, 0x86, 0x9c, 0x8b, 0xe5, 0x92, 0x1b, 0x47, 0x6e, 0xdf, 0x91, 0x6f, + 0x51, 0x46, 0xf2, 0x21, 0xec, 0xe6, 0xd4, 0x50, 0x87, 0x74, 0x11, 0xd9, 0xb1, 0x02, 0x26, 0x1f, + 0xc3, 0xc1, 0x5c, 0x54, 0x9a, 0x55, 0x7a, 0xa5, 0x1d, 0xd1, 0x43, 0x62, 0x7f, 0xa3, 0x22, 0x76, + 0x1f, 0x76, 0xa8, 0x94, 0x0e, 0xd8, 0x41, 0xa0, 0x47, 0xa5, 0xc4, 0xd4, 0x09, 0xfc, 0x87, 0x17, + 0x51, 0x4c, 0xaf, 0x16, 0xc6, 0x17, 0xd9, 0x45, 0xe6, 0xd0, 0x26, 0x88, 0xd3, 0x91, 0x7d, 0x0a, + 0x7d, 0xa9, 0x84, 0x14, 0x9a, 0xa9, 0x8c, 0xe6, 0xb9, 0x62, 0x5a, 0xc7, 0xe0, 0xd0, 0x5a, 0x7f, + 0xe3, 0x64, 0x8b, 0xd2, 0xa2, 0x50, 0xac, 0xb0, 0x9e, 0xf9, 0xaa, 0x7b, 0x0e, 0x6d, 0xe8, 0xf5, + 0xe5, 0xe6, 0x25, 0xe5, 0x55, 0xc6, 0xf3, 0x38, 0x1c, 0x04, 0xc3, 0x5d, 0xd2, 0xc3, 0x78, 0x92, + 0xa7, 0x43, 0xe8, 0xba, 0x2f, 0x11, 0x25, 0x00, 0x9a, 0x17, 0x15, 0x35, 0x2b, 0xc5, 0x74, 0x1c, + 0x0c, 0xda, 0xc3, 0x90, 0x34, 0x94, 0xf4, 0x7b, 0x00, 0xe1, 0x94, 0x17, 0x15, 0xcb, 0xbd, 0xc5, + 0x4f, 0xac, 0x6d, 0x76, 0xe5, 0x1d, 0x3e, 0xdc, 0x38, 0xec, 0x00, 0xe2, 0xd3, 0x16, 0x74, 0x26, + 0xa0, 0xbf, 0x4d, 0xd0, 0x1d, 0x4d, 0x7c, 0x3a, 0x7a, 0x0d, 0xb0, 0x99, 0x42, 0x8d, 0xb6, 0xef, + 0x9d, 0x26, 0xa3, 0xbb, 0x49, 0x1d, 0xe1, 0xa4, 0x8e, 0x2e, 0x6a, 0x66, 0xca, 0x0c, 0x69, 0xec, + 0x48, 0x09, 0x74, 0xde, 0x51, 0x43, 0xed, 0x64, 0x9a, 0x75, 0xdd, 0x83, 0x5d, 0x46, 0x2f, 0x21, + 0xe6, 0x95, 0x61, 0x6a, 0xc9, 0x72, 0x4e, 0x0d, 0xcb, 0xb4, 0xb1, 0xbf, 0x4a, 0x08, 0xa3, 0xe3, + 0x16, 0x62, 0xc7, 0xcd, 0xfc, 0xd4, 0xa6, 0x89, 0xcd, 0xa6, 0x5f, 0x60, 0xfb, 0x0c, 0xc7, 0xfd, + 0x15, 0xec, 0x6b, 0x6c, 0x3f, 0xfb, 0xab, 0xeb, 0xa3, 0x4d, 0x33, 0xcd, 0x8f, 0x43, 0x42, 0xdd, + 0xfc, 0x54, 0x8f, 0xa0, 0x63, 0x07, 0xca, 0xf7, 0xbf, 0xbf, 0xd9, 0x62, 0x6f, 0x4b, 0x30, 0x95, + 0x7e, 0x00, 0xf8, 0xb8, 0xfe, 0xc4, 0x4d, 0x39, 0x99, 0x12, 0x1d, 0xdd, 0x83, 0x9e, 0x54, 0x2c, + 0xe3, 0xda, 0x1d, 0x13, 0x92, 0xae, 0x54, 0x6c, 0xa2, 0x55, 0x74, 0x00, 0x2d, 0xb3, 0xc6, 0x3a, + 0x21, 0x69, 0x99, 0xb5, 0xb5, 0x56, 0x0a, 0x6d, 0x90, 0x6c, 0xbb, 0xb9, 0xb3, 0xf1, 0x44, 0xab, + 0xb3, 0xf7, 0x3f, 0x6f, 0x92, 0xe0, 0xfa, 0x26, 0x09, 0x7e, 0xdf, 0x24, 0xc1, 0xb7, 0xdb, 0x64, + 0xeb, 0xfa, 0x36, 0xd9, 0xfa, 0x75, 0x9b, 0x6c, 0x7d, 0x7e, 0x56, 0x70, 0x53, 0xae, 0x66, 0xa3, + 0xb9, 0x58, 0x8e, 0xff, 0x79, 0x27, 0xfc, 0x63, 0x20, 0x67, 0xb5, 0x30, 0xeb, 0xe2, 0x73, 0xf0, + 0xe2, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x64, 0x22, 0x24, 0x1d, 0x52, 0x04, 0x00, 0x00, } func (m *Version) Marshal() (dAtA []byte, err error) { diff --git a/types/pb/rollkit/state.pb.go b/types/pb/rollkit/state.pb.go index 0477ec0af63..234c0b8f777 100644 --- a/types/pb/rollkit/state.pb.go +++ b/types/pb/rollkit/state.pb.go @@ -8,7 +8,6 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/tendermint/tendermint/abci/types" state "github.com/tendermint/tendermint/proto/tendermint/state" types "github.com/tendermint/tendermint/proto/tendermint/types" _ "google.golang.org/protobuf/types/known/timestamppb" @@ -193,44 +192,44 @@ func init() { func init() { proto.RegisterFile("rollkit/state.proto", fileDescriptor_6c88f9697fdbf8e5) } var fileDescriptor_6c88f9697fdbf8e5 = []byte{ - // 586 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0x4f, 0x6f, 0xd3, 0x30, - 0x18, 0xc6, 0x1b, 0xd6, 0xf5, 0x8f, 0xfb, 0x0f, 0x32, 0x0e, 0x59, 0x07, 0x69, 0x40, 0x20, 0x15, - 0x90, 0x12, 0x89, 0xdd, 0x91, 0x48, 0x8b, 0x58, 0xa5, 0x09, 0xa1, 0x0c, 0xed, 0xc0, 0x25, 0x72, - 0x12, 0x93, 0x58, 0x4b, 0xe3, 0x28, 0x76, 0x27, 0xf8, 0x16, 0xfb, 0x58, 0x3b, 0xee, 0xc8, 0xa9, - 0xa0, 0xf6, 0x53, 0x70, 0x43, 0xb6, 0xe3, 0x36, 0x5b, 0x77, 0xd8, 0xa9, 0xcd, 0xf3, 0xfe, 0xde, - 0xa7, 0xcf, 0xeb, 0xd7, 0x29, 0x38, 0x28, 0x48, 0x9a, 0x5e, 0x60, 0xe6, 0x50, 0x06, 0x19, 0xb2, - 0xf3, 0x82, 0x30, 0xa2, 0x37, 0x4b, 0x71, 0xf8, 0x34, 0x26, 0x31, 0x11, 0x9a, 0xc3, 0xbf, 0xc9, - 0xf2, 0x70, 0x14, 0x13, 0x12, 0xa7, 0xc8, 0x11, 0x4f, 0xc1, 0xe2, 0x87, 0xc3, 0xf0, 0x1c, 0x51, - 0x06, 0xe7, 0x79, 0x09, 0x1c, 0x31, 0x94, 0x45, 0xa8, 0x98, 0xe3, 0x8c, 0x39, 0x30, 0x08, 0xb1, - 0xc3, 0x7e, 0xe5, 0x88, 0x96, 0xc5, 0x67, 0x95, 0xa2, 0xd0, 0x6f, 0x55, 0xad, 0x9d, 0xea, 0x25, - 0x4c, 0x71, 0x04, 0x19, 0x29, 0x4a, 0xe2, 0xf9, 0x0e, 0x91, 0xc3, 0x02, 0xce, 0xef, 0xb3, 0x17, - 0x33, 0x55, 0xed, 0x5f, 0xfe, 0x6b, 0x80, 0xfd, 0x33, 0xae, 0xea, 0xc7, 0xa0, 0x79, 0x89, 0x0a, - 0x8a, 0x49, 0x66, 0x68, 0x96, 0x36, 0xee, 0xbc, 0x3f, 0xb4, 0xb7, 0x9d, 0xb6, 0x3c, 0x8d, 0x73, - 0x09, 0x78, 0x8a, 0xd4, 0x0f, 0x41, 0x2b, 0x4c, 0x20, 0xce, 0x7c, 0x1c, 0x19, 0x8f, 0x2c, 0x6d, - 0xdc, 0xf6, 0x9a, 0xe2, 0x79, 0x16, 0xe9, 0xaf, 0x41, 0x1f, 0x67, 0x98, 0x61, 0x98, 0xfa, 0x09, - 0xc2, 0x71, 0xc2, 0x8c, 0x3d, 0x4b, 0x1b, 0xef, 0x79, 0xbd, 0x52, 0x3d, 0x11, 0xa2, 0xfe, 0x16, - 0x3c, 0x49, 0x21, 0x65, 0x7e, 0x90, 0x92, 0xf0, 0x42, 0x91, 0x75, 0x41, 0x0e, 0x78, 0xc1, 0xe5, - 0x7a, 0xc9, 0x7a, 0xa0, 0x57, 0x61, 0x71, 0x64, 0xec, 0xef, 0x06, 0x95, 0xc3, 0x89, 0xae, 0xd9, - 0xd4, 0x3d, 0xb8, 0x5e, 0x8e, 0x6a, 0xab, 0xe5, 0xa8, 0x73, 0xaa, 0xac, 0x66, 0x53, 0xaf, 0xb3, - 0xf1, 0x9d, 0x45, 0xfa, 0x29, 0x18, 0x54, 0x3c, 0xf9, 0xe2, 0x8c, 0x86, 0x70, 0x1d, 0xda, 0x72, - 0xab, 0xb6, 0xda, 0xaa, 0xfd, 0x4d, 0x6d, 0xd5, 0x6d, 0x71, 0xdb, 0xab, 0x3f, 0x23, 0xcd, 0xeb, - 0x6d, 0xbc, 0x78, 0x55, 0x7f, 0x03, 0xda, 0x11, 0x54, 0x53, 0x34, 0x2d, 0x6d, 0x5c, 0x77, 0xbb, - 0xab, 0xe5, 0xa8, 0x35, 0xfd, 0x28, 0x47, 0xf0, 0x5a, 0x11, 0x2c, 0x87, 0xf9, 0x0c, 0x06, 0x19, - 0xfa, 0xc9, 0xfc, 0xcd, 0x3a, 0xa9, 0xd1, 0x12, 0x3f, 0x6c, 0xee, 0x8e, 0x73, 0xae, 0x98, 0x33, - 0xc4, 0xbc, 0x3e, 0x6f, 0xdb, 0x28, 0x54, 0xff, 0x00, 0x40, 0xc5, 0xa3, 0xfd, 0x20, 0x8f, 0x4a, - 0x07, 0x0f, 0x22, 0x4e, 0xa0, 0x62, 0x02, 0x1e, 0x16, 0x84, 0xb7, 0x55, 0x82, 0x4c, 0x80, 0x29, - 0x8c, 0xe4, 0xf8, 0x15, 0x3f, 0x3f, 0x4c, 0x60, 0x16, 0xa3, 0xc8, 0xe8, 0x88, 0xbd, 0x1e, 0x71, - 0x4a, 0x9e, 0xc2, 0xb6, 0x7b, 0x22, 0x11, 0xdd, 0x03, 0x8f, 0x43, 0x92, 0x51, 0x94, 0xd1, 0x05, - 0xf5, 0xe5, 0x45, 0x36, 0xba, 0x22, 0xce, 0x8b, 0xdd, 0x38, 0x13, 0x45, 0x7e, 0x15, 0xa0, 0x5b, - 0xe7, 0x7b, 0xf1, 0x06, 0xe1, 0x6d, 0x59, 0xff, 0x02, 0x5e, 0x55, 0x83, 0xdd, 0xf5, 0xdf, 0xc4, - 0xeb, 0x89, 0x78, 0xd6, 0x36, 0xde, 0x1d, 0x7f, 0x95, 0x51, 0xdd, 0xd9, 0x02, 0xd1, 0x45, 0xca, - 0xa8, 0x9f, 0x40, 0x9a, 0x18, 0x7d, 0x4b, 0x1b, 0x77, 0xe5, 0x9d, 0xf5, 0xa4, 0x7e, 0x02, 0x69, - 0xc2, 0xdf, 0x10, 0x98, 0xe7, 0x12, 0x19, 0x08, 0xa4, 0x09, 0xf3, 0x9c, 0x97, 0xdc, 0x4f, 0xd7, - 0x2b, 0x53, 0xbb, 0x59, 0x99, 0xda, 0xdf, 0x95, 0xa9, 0x5d, 0xad, 0xcd, 0xda, 0xcd, 0xda, 0xac, - 0xfd, 0x5e, 0x9b, 0xb5, 0xef, 0xef, 0x62, 0xcc, 0x92, 0x45, 0x60, 0x87, 0x64, 0xee, 0xa8, 0xff, - 0x23, 0xf5, 0x59, 0xbe, 0xe2, 0x81, 0x12, 0x82, 0x86, 0xb8, 0xa0, 0xc7, 0xff, 0x03, 0x00, 0x00, - 0xff, 0xff, 0x5c, 0xc7, 0x2e, 0xd8, 0xba, 0x04, 0x00, 0x00, + // 580 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0xcd, 0x6e, 0xd3, 0x4e, + 0x14, 0xc5, 0xe3, 0x7f, 0xd3, 0x7c, 0x4c, 0xbe, 0xfe, 0xb8, 0x2c, 0xdc, 0x00, 0x8e, 0x41, 0x20, + 0x05, 0x90, 0x6c, 0x89, 0xee, 0x91, 0x70, 0x82, 0x68, 0xa4, 0x0a, 0xa1, 0x29, 0xea, 0x82, 0x8d, + 0x35, 0xb1, 0x07, 0x7b, 0x54, 0xc7, 0x63, 0x79, 0x26, 0x15, 0xbc, 0x45, 0x1f, 0xab, 0xcb, 0x2e, + 0x59, 0x05, 0x94, 0x3c, 0x05, 0x3b, 0x34, 0x33, 0x9e, 0xc4, 0x34, 0x2c, 0xba, 0x49, 0xe2, 0x73, + 0x7f, 0xf7, 0xe4, 0x5c, 0xdf, 0xb1, 0xc1, 0x51, 0x41, 0xd3, 0xf4, 0x92, 0x70, 0x8f, 0x71, 0xc4, + 0xb1, 0x9b, 0x17, 0x94, 0x53, 0xb3, 0x59, 0x8a, 0xc3, 0x87, 0x31, 0x8d, 0xa9, 0xd4, 0x3c, 0xf1, + 0x4b, 0x95, 0x87, 0xa3, 0x98, 0xd2, 0x38, 0xc5, 0x9e, 0xbc, 0x9a, 0x2f, 0xbf, 0x7a, 0x9c, 0x2c, + 0x30, 0xe3, 0x68, 0x91, 0x97, 0xc0, 0x63, 0x8e, 0xb3, 0x08, 0x17, 0x0b, 0x92, 0x71, 0x8f, 0x7f, + 0xcf, 0x31, 0x53, 0x9f, 0x65, 0xd5, 0xd9, 0xab, 0x5e, 0xa1, 0x94, 0x44, 0x88, 0xd3, 0xa2, 0x24, + 0x9e, 0xec, 0x11, 0x39, 0x2a, 0xd0, 0x82, 0xfd, 0xc3, 0x5e, 0xc6, 0xae, 0xda, 0x3f, 0xfb, 0xdd, + 0x00, 0x87, 0xe7, 0x42, 0x35, 0x4f, 0x40, 0xf3, 0x0a, 0x17, 0x8c, 0xd0, 0xcc, 0x32, 0x1c, 0x63, + 0xdc, 0x79, 0x73, 0xec, 0xee, 0x3a, 0x5d, 0x35, 0xf0, 0x85, 0x02, 0xa0, 0x26, 0xcd, 0x63, 0xd0, + 0x0a, 0x13, 0x44, 0xb2, 0x80, 0x44, 0xd6, 0x7f, 0x8e, 0x31, 0x6e, 0xc3, 0xa6, 0xbc, 0x9e, 0x45, + 0xe6, 0x0b, 0xd0, 0x27, 0x19, 0xe1, 0x04, 0xa5, 0x41, 0x82, 0x49, 0x9c, 0x70, 0xeb, 0xc0, 0x31, + 0xc6, 0x07, 0xb0, 0x57, 0xaa, 0xa7, 0x52, 0x34, 0x5f, 0x81, 0x07, 0x29, 0x62, 0x3c, 0x98, 0xa7, + 0x34, 0xbc, 0xd4, 0x64, 0x5d, 0x92, 0x03, 0x51, 0xf0, 0x85, 0x5e, 0xb2, 0x10, 0xf4, 0x2a, 0x2c, + 0x89, 0xac, 0xc3, 0xfd, 0xa0, 0x6a, 0x38, 0xd9, 0x35, 0x9b, 0xfa, 0x47, 0x37, 0xab, 0x51, 0x6d, + 0xbd, 0x1a, 0x75, 0xce, 0xb4, 0xd5, 0x6c, 0x0a, 0x3b, 0x5b, 0xdf, 0x59, 0x64, 0x9e, 0x81, 0x41, + 0xc5, 0x53, 0xec, 0xc6, 0x6a, 0x48, 0xd7, 0xa1, 0xab, 0x16, 0xe7, 0xea, 0xc5, 0xb9, 0x9f, 0xf5, + 0xe2, 0xfc, 0x96, 0xb0, 0xbd, 0xfe, 0x39, 0x32, 0x60, 0x6f, 0xeb, 0x25, 0xaa, 0xe6, 0x4b, 0xd0, + 0x8e, 0x90, 0x9e, 0xa2, 0xe9, 0x18, 0xe3, 0xba, 0xdf, 0x5d, 0xaf, 0x46, 0xad, 0xe9, 0x3b, 0x35, + 0x02, 0x6c, 0x45, 0xa8, 0x1c, 0xe6, 0x03, 0x18, 0x64, 0xf8, 0x1b, 0x0f, 0xb6, 0xeb, 0x64, 0x56, + 0x4b, 0xfe, 0xb1, 0xbd, 0x3f, 0xce, 0x85, 0x66, 0xce, 0x31, 0x87, 0x7d, 0xd1, 0xb6, 0x55, 0x98, + 0xf9, 0x16, 0x80, 0x8a, 0x47, 0xfb, 0x5e, 0x1e, 0x95, 0x0e, 0x11, 0x44, 0xde, 0x81, 0x8a, 0x09, + 0xb8, 0x5f, 0x10, 0xd1, 0x56, 0x09, 0x32, 0x01, 0xb6, 0x34, 0x52, 0xe3, 0x57, 0xfc, 0x82, 0x30, + 0x41, 0x59, 0x8c, 0x23, 0xab, 0x23, 0xf7, 0xfa, 0x48, 0x50, 0xea, 0x2e, 0xec, 0xba, 0x27, 0x0a, + 0x31, 0x21, 0xf8, 0x3f, 0xa4, 0x19, 0xc3, 0x19, 0x5b, 0xb2, 0x40, 0x1d, 0x64, 0xab, 0x2b, 0xe3, + 0x3c, 0xdd, 0x8f, 0x33, 0xd1, 0xe4, 0x27, 0x09, 0xfa, 0x75, 0xb1, 0x17, 0x38, 0x08, 0xff, 0x96, + 0xcd, 0x8f, 0xe0, 0x79, 0x35, 0xd8, 0x5d, 0xff, 0x6d, 0xbc, 0x9e, 0x8c, 0xe7, 0xec, 0xe2, 0xdd, + 0xf1, 0xd7, 0x19, 0xf5, 0x99, 0x2d, 0x30, 0x5b, 0xa6, 0x9c, 0x05, 0x09, 0x62, 0x89, 0xd5, 0x77, + 0x8c, 0x71, 0x57, 0x9d, 0x59, 0xa8, 0xf4, 0x53, 0xc4, 0x12, 0xf1, 0x84, 0xa0, 0x3c, 0x57, 0xc8, + 0x40, 0x22, 0x4d, 0x94, 0xe7, 0xa2, 0xe4, 0xbf, 0xbf, 0x59, 0xdb, 0xc6, 0xed, 0xda, 0x36, 0x7e, + 0xad, 0x6d, 0xe3, 0x7a, 0x63, 0xd7, 0x6e, 0x37, 0x76, 0xed, 0xc7, 0xc6, 0xae, 0x7d, 0x79, 0x1d, + 0x13, 0x9e, 0x2c, 0xe7, 0x6e, 0x48, 0x17, 0x9e, 0x7e, 0xe5, 0xe8, 0xef, 0xf2, 0x11, 0x9f, 0x6b, + 0x61, 0xde, 0x90, 0x07, 0xf4, 0xe4, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x66, 0x31, 0x53, 0x16, + 0x9d, 0x04, 0x00, 0x00, } func (m *State) Marshal() (dAtA []byte, err error) {