You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: contracts/reflect/schema/query_msg.json
+3-3
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@
164
164
"description": "These are queries to the various IBC modules to see the state of the contract's IBC connection. These will return errors if the contract is not \"ibc enabled\"",
165
165
"anyOf": [
166
166
{
167
-
"description": "Gets the Port ID the current contract is bound to. Returns PortIdResponse",
167
+
"description": "Gets the Port ID the current contract is bound to.\n\nReturns a `PortIdResponse`.",
168
168
"type": "object",
169
169
"required": [
170
170
"port_id"
@@ -177,7 +177,7 @@
177
177
"additionalProperties": false
178
178
},
179
179
{
180
-
"description": "Lists all channels that are bound to a given port. If `port_id` is omitted, this list all channels bound to the contract's port. Returns a `ListChannelsResponse`.",
180
+
"description": "Lists all channels that are bound to a given port. If `port_id` is omitted, this list all channels bound to the contract's port.\n\nReturns a `ListChannelsResponse`.",
181
181
"type": "object",
182
182
"required": [
183
183
"list_channels"
@@ -198,7 +198,7 @@
198
198
"additionalProperties": false
199
199
},
200
200
{
201
-
"description": "Lists all information for a (portID, channelID) pair. If port_id is omitted, it will default to the contract's own channel. (To save a PortId{} call) Returns ChannelResponse.",
201
+
"description": "Lists all information for a (portID, channelID) pair. If port_id is omitted, it will default to the contract's own channel. (To save a PortId{} call)\n\nReturns a `ChannelResponse`.",
0 commit comments