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 post-commit action #137

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Changes from 1 commit
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
10 changes: 8 additions & 2 deletions proto/mls/database/intents.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ message SendMessageData {
V1 v1 = 1;
}
}

// Wrapper around a list af repeated EVM Account Addresses
message AccountAddresses {
repeated string account_addresses = 1;
}

// Wrapper around a list of repeated Installation IDs
message InstallationIds {
repeated bytes installation_ids = 1;
Expand Down Expand Up @@ -62,9 +63,14 @@ message RemoveMembersData {

// Generic data-type for all post-commit actions
message PostCommitAction {
// An installation
message Installation {
bytes installation_id = 1;
neekolas marked this conversation as resolved.
Show resolved Hide resolved
bytes hpke_public_key = 2;
}
// SendWelcome message
message SendWelcomes {
repeated bytes installation_ids = 1;
repeated Installation installations = 1;
bytes welcome_message = 2;
}

Expand Down
Loading