From 914a6c3f2bea291d0c4c0c12ae247340b0dcaedc Mon Sep 17 00:00:00 2001 From: Gonzalo DCL Date: Mon, 30 Sep 2024 19:43:36 -0300 Subject: [PATCH] send binary message to specific address --- .../kernel/apis/communications_controller.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/proto/decentraland/kernel/apis/communications_controller.proto b/proto/decentraland/kernel/apis/communications_controller.proto index ee2f3722..0cbdfe1a 100644 --- a/proto/decentraland/kernel/apis/communications_controller.proto +++ b/proto/decentraland/kernel/apis/communications_controller.proto @@ -9,6 +9,12 @@ message RealSendResponse {} message SendBinaryRequest { repeated bytes data = 1; + repeated SendBinaryToAddress messages_to_address = 2; +} + +message SendBinaryToAddress { + bytes data = 1; + optional string address = 2; } message SendBinaryResponse {