Skip to content

Commit f08003b

Browse files
Added documentation to realm info protobuf definition
1 parent b3fea33 commit f08003b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

proto/decentraland/sdk/components/realm_info.proto

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import "decentraland/sdk/components/common/id.proto";
55
option (common.ecs_component_id) = 1106;
66

77
message PBRealmInfo {
8-
string base_url = 1;
9-
string realm_name = 2;
10-
int32 network_id = 3;
11-
string comms_adapter = 4;
12-
bool is_preview = 5;
13-
optional string room = 6;
14-
optional bool is_connected_scene_room = 7;
8+
string base_url = 1; // the domain of the realm server
9+
string realm_name = 2; // the name of the realm server
10+
int32 network_id = 3; // the Ethereum network
11+
string comms_adapter = 4; // comms adapter, removing all query parameters (credentials)
12+
bool is_preview = 5; // true if the scene is running as a local preview, instead of published in Decentraland.
13+
optional string room = 6; // the room session id.
14+
optional bool is_connected_scene_room = 7; // true if the user is connected to the scene room.
1515
}

0 commit comments

Comments
 (0)