Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update frames actions to sign with InstalltionId #228

Merged
merged 3 commits into from
Nov 19, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions proto/message_contents/frames.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ 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;
// 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;
bytes signature = 1;
nplasterer marked this conversation as resolved.
Show resolved Hide resolved
// The public installation id used to sign.
string installation_id = 2;
nplasterer marked this conversation as resolved.
Show resolved Hide resolved
// Serialized FrameActionBody message, so that the signature verification can
// happen on a byte-perfect representation of the message
bytes action_body = 3;
Expand Down
Loading