generated from slatedocs/slate
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from InjectiveLabs/feat/ibc_channel_module_qu…
…eries Feat/ibc channel module queries
- Loading branch information
Showing
38 changed files
with
2,715 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ includes: | |
- derivatives | ||
- spot | ||
- binaryoptions | ||
- ibccorechannel | ||
- ibctransfer | ||
- insurance | ||
- oracle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{"Parameter": "state", "Type": "State", "Description": "Current state of the channel end"}, | ||
{"Parameter": "ordering", "Type": "Order", "Description": "Whether the channel is ordered or unordered"}, | ||
{"Parameter": "counterparty", "Type": "Counterparty", "Description": "Counterparty channel end"}, | ||
{"Parameter": "connection_hops", "Type": "String Array", "Description": "List of connection identifiers, in order, along which packets sent on this channel will travel"}, | ||
{"Parameter": "version", "Type": "String", "Description": "Opaque channel version, which is agreed upon during the handshake"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port on the counterparty chain which owns the other end of the channel"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel end on the counterparty chain"} | ||
] |
9 changes: 9 additions & 0 deletions
9
source/json_tables/chain/ibc/core/channel/identifiedChannel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{"Parameter": "state", "Type": "State", "Description": "Current state of the channel end"}, | ||
{"Parameter": "ordering", "Type": "Order", "Description": "Whether the channel is ordered or unordered"}, | ||
{"Parameter": "counterparty", "Type": "Counterparty", "Description": "Counterparty channel end"}, | ||
{"Parameter": "connection_hops", "Type": "String Array", "Description": "List of connection identifiers, in order, along which packets sent on this channel will travel"}, | ||
{"Parameter": "version", "Type": "String", "Description": "Opaque channel version, which is agreed upon during the handshake"}, | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port identifier"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel identifier"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Code": "0", "Name": "ORDER_NONE_UNSPECIFIED"}, | ||
{"Code": "1", "Name": "ORDER_UNORDERED"}, | ||
{"Code": "2", "Name": "ORDER_ORDERED"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port identifier"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel identifier"}, | ||
{"Parameter": "sequence", "Type": "Integer", "Description": "Packet sequence"}, | ||
{"Parameter": "data", "Type": "Byte Array", "Description": "Embedded data that represents packet state"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryChannelClientStateRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryChannelClientStateResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "identified_client_state", "Type": "IdentifiedChannel", "Description": "Client state associated with the channel"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
6 changes: 6 additions & 0 deletions
6
source/json_tables/chain/ibc/core/channel/queryChannelConsensusStateRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "revision_number", "Type": "Integer", "Description": "Revision number of the consensus state", "Required": "Yes"}, | ||
{"Parameter": "revision_height", "Type": "Integer", "Description": "Revision height of the consensus state", "Required": "Yes"} | ||
] |
6 changes: 6 additions & 0 deletions
6
source/json_tables/chain/ibc/core/channel/queryChannelConsensusStateResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"Parameter": "consensus_state", "Type": "Any", "Description": "Consensus state associated with the channel"}, | ||
{"Parameter": "client_id", "Type": "String", "Description": "Client ID associated with the consensus state"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryChannelRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryChannelResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "channel", "Type": "Channel", "Description": "Channel details"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
3 changes: 3 additions & 0 deletions
3
source/json_tables/chain/ibc/core/channel/queryChannelsRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[ | ||
{"Parameter": "pagination", "Type": "PageRequest", "Description": "The optional pagination for the request", "Required": "No"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryChannelsResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "channels", "Type": "IdentifiedChannel Array", "Description": "List of channels"}, | ||
{"Parameter": "pagination", "Type": "PageResponse", "Description": "Pagination information in the response"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryConnectionChannelsRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "connection", "Type": "String", "Description": "Connection unique identifier", "Required": "Yes"}, | ||
{"Parameter": "pagination", "Type": "PageRequest", "Description": "The optional pagination for the request", "Required": "No"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryConnectionChannelsResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "channels", "Type": "IdentifiedChannel Array", "Description": "List of channels"}, | ||
{"Parameter": "pagination", "Type": "PageResponse", "Description": "Pagination information in the response"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryNextSequenceReceiveRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryNextSequenceReceiveResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "next_sequence_receive", "Type": "Integer", "Description": "Next sequence receive number"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketAcknowledgementRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "sequence", "Type": "Integer", "Description": "Packet sequence", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketAcknowledgementResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "acknowledgement", "Type": "Byte Array", "Description": "Success flag to mark if the receipt exists"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
6 changes: 6 additions & 0 deletions
6
source/json_tables/chain/ibc/core/channel/queryPacketAcknowledgementsRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "pagination", "Type": "PageRequest", "Description": "The optional pagination for the request", "Required": "No"}, | ||
{"Parameter": "packet_commitment_sequences", "Type": "Integer Array", "Description": "List of packet sequences", "Required": "No"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketAcknowledgementsResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "acknowledgements", "Type": "PacketState Array", "Description": "Acknowledgements details"}, | ||
{"Parameter": "pagination", "Type": "PageResponse", "Description": "Pagination information in the response"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketCommitmentRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "sequence", "Type": "Integer", "Description": "Packet sequence", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketCommitmentResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "commitment", "Type": "Byte Array", "Description": "Packet associated with the request fields"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketCommitmentsRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "pagination", "Type": "PageRequest", "Description": "The optional pagination for the request", "Required": "No"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketCommitmentsResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "commitments", "Type": "PacketState Array", "Description": "Commitments information"}, | ||
{"Parameter": "pagination", "Type": "PageResponse", "Description": "Pagination information in the response"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketReceiptRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "sequence", "Type": "Integer", "Description": "Packet sequence", "Required": "Yes"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryPacketReceiptResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "received", "Type": "Boolean", "Description": "Success flag to mark if the receipt exists"}, | ||
{"Parameter": "proof", "Type": "Byte Array", "Description": "Merkle proof of existence"}, | ||
{"Parameter": "proof_height", "Type": "Height", "Description": "Height at which the proof was retrieved"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryUnreceivedAcksRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "packet_ack_sequences", "Type": "Integer Array", "Description": "List of acknowledgement sequences", "Required": "No"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryUnreceivedAcksResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "sequences", "Type": "Integer Array", "Description": "List of unreceived packet sequences"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
5 changes: 5 additions & 0 deletions
5
source/json_tables/chain/ibc/core/channel/queryUnreceivedPacketsRequest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"Parameter": "port_id", "Type": "String", "Description": "Port unique identifier", "Required": "Yes"}, | ||
{"Parameter": "channel_id", "Type": "String", "Description": "Channel unique identifier", "Required": "Yes"}, | ||
{"Parameter": "packet_commitment_sequences", "Type": "Integer Array", "Description": "List of packet sequences", "Required": "No"} | ||
] |
4 changes: 4 additions & 0 deletions
4
source/json_tables/chain/ibc/core/channel/queryUnreceivedPacketsResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"Parameter": "sequences", "Type": "Integer Array", "Description": "List of unreceived packet sequences"}, | ||
{"Parameter": "height", "Type": "Height", "Description": "Query block height"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{"Code": "0", "Name": "STATE_UNINITIALIZED_UNSPECIFIED"}, | ||
{"Code": "1", "Name": "STATE_INIT"}, | ||
{"Code": "2", "Name": "STATE_TRYOPEN"}, | ||
{"Code": "3", "Name": "STATE_OPEN"}, | ||
{"Code": "4", "Name": "STATE_CLOSED"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[ | ||
{"Parameter": "txs", "Type": "Bytes Array", "Description": "Txs that will be applied by state @ block.Height+1. NOTE: not all txs here are valid. We're just agreeing on the order first. This means that block.AppHash does not include these txs."} | ||
{"Parameter": "txs", "Type": "Byte Array", "Description": "Txs that will be applied by state @ block.Height+1. NOTE: not all txs here are valid. We're just agreeing on the order first. This means that block.AppHash does not include these txs."} | ||
] |