genesis.proto 645 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package wormhole_foundation.wormchain.ibc_composability_mw.v1;
  3. option go_package = "github.com/wormhole-foundation/wormchain/x/ibc-composability-mw/types";
  4. import "gogoproto/gogo.proto";
  5. // GenesisState defines the ibc-composability-mw genesis state
  6. message GenesisState {
  7. // key - information about modified packet: src_channel
  8. // (parsedReceiver.Channel), src_port (parsedReceiver.Port), sequence value -
  9. // bytes are the packet data bytes as they came in
  10. map<string, bytes> transposed_data_in_flight = 1 [
  11. (gogoproto.moretags) = "yaml:\"transposed_data_in_flight\"",
  12. (gogoproto.nullable) = false
  13. ];
  14. }