You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to make progress fleshing out the currently implementation and feature branch we can assume the following and iterate to fine tune it later.
// Packet defines a type that carries data across different chains through IBCmessagePacket {
// number corresponds to the order of sends and receives, where a Packet// with an earlier sequence number must be sent and received before a Packet// with a later sequence number.uint64sequence=1;
// identifies the sending chain.stringsource_id=2;
// identifies the receiving chain.stringdestination_id=3;
// timeout timestamp after which the packet times out.uint64timeout_timestamp=4;
// a list of packet data, each one for a specific application.repeatedPacketDatadata=5 [(gogoproto.nullable) = false];
}
// PacketData contains the source and destination ports and payload for the applicationmessagePacketData {
// specifies the source port of the packet.stringsource_port=1;
// specifies the destination port of the packet.stringdestination_port=2;
// the payload to be sent to the application.Payloadpayload=3 [(gogoproto.nullable) = false];
}
// Payload holds the version, encoding and raw bytes to be passed to an applicationmessagePayload {
// version of the specified application.stringversion=1;
// the encoding used for the provided value.stringencoding=2;
// the raw bytes for the payload.bytesvalue=3;
}
The text was updated successfully, but these errors were encountered:
Finalisation pending specification: cosmos/ibc#1149
In order to make progress fleshing out the currently implementation and feature branch we can assume the following and iterate to fine tune it later.
The text was updated successfully, but these errors were encountered: