diff --git a/proto/message_contents/frames.proto b/proto/message_contents/frames.proto index a7ee16d..9018f0c 100644 --- a/proto/message_contents/frames.proto +++ b/proto/message_contents/frames.proto @@ -37,11 +37,15 @@ message FrameActionBody { // The outer payload that will be sent as the `messageBytes` in the // `trusted_data` part of the Frames message message FrameAction { - Signature signature = 1; + Signature signature = 1 [deprecated = true]; // The SignedPublicKeyBundle of the signer, used to link the XMTP signature // with a blockchain account through a chain of signatures. - SignedPublicKeyBundle signed_public_key_bundle = 2; + SignedPublicKeyBundle signed_public_key_bundle = 2 [deprecated = true]; // Serialized FrameActionBody message, so that the signature verification can // happen on a byte-perfect representation of the message bytes action_body = 3; + // The installation signature + bytes installation_signature = 4; + // The public installation id used to sign. + bytes installation_id = 5; }