Skip to content

Commit

Permalink
Update ICS 24 with SDK keys (ref #387)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwgoes committed May 18, 2020
1 parent 03782ac commit d107eb2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
7 changes: 6 additions & 1 deletion misc/aspell_dict
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
personal_ws-1.1 en 604
personal_ws-1.1 en 609
ABCI
ABI
ADR
Expand Down Expand Up @@ -143,6 +143,7 @@ abortTransactionUnless
acc
ack
acknowledgePacket
acks
addChannelToConnection
addConnectionToClient
applyPrefix
Expand Down Expand Up @@ -183,6 +184,7 @@ changelog
channelCapability
channelCapabilityPath
channelEnd
channelEnds
channelEscrowAddresses
channelId
channelIdentifier
Expand Down Expand Up @@ -512,6 +514,9 @@ sdk
secondHeader
sendPacket
sentPacketLogs
seqAcks
seqRecvs
seqSends
serialisable
setId
sharding
Expand Down
Binary file modified spec.pdf
Binary file not shown.
19 changes: 9 additions & 10 deletions spec/ics-024-host-requirements/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,18 @@ Note that the client-related paths listed below reflect the Tendermint client as
| Store | Path format | Value type | Defined in |
| -------------- | ------------------------------------------------------------------------------ | ----------------- | ---------------------- |
| provableStore | "clients/{identifier}/type" | ClientType | [ICS 2](../ics-002-client-semantics) |
| privateStore | "clients/{identifier}" | ClientState | [ICS 2](../ics-007-tendermint-client) |
| provableStore | "clients/{identifier}/consensusStates/{height}" | ConsensusState | [ICS 7](../ics-007-tendermint-client) |
| provableStore | "clients/{identifier}/clientType" | ClientType | [ICS 2](../ics-002-client-semantics) |
| privateStore | "clients/{identifier}/clientState" | ClientState | [ICS 2](../ics-007-tendermint-client) |
| provableStore | "clients/{identifier}/consensusState/{height}" | ConsensusState | [ICS 7](../ics-007-tendermint-client) |
| privateStore | "clients/{identifier}/connections | []Identifier | [ICS 3](../ics-003-connection-semantics) |
| provableStore | "connections/{identifier}" | ConnectionEnd | [ICS 3](../ics-003-connection-semantics) |
| privateStore | "ports/{identifier}" | CapabilityKey | [ICS 5](../ics-005-port-allocation) |
| provableStore | "ports/{identifier}/channels/{identifier}" | ChannelEnd | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "ports/{identifier}/channels/{identifier}/nextSequenceSend" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "ports/{identifier}/channels/{identifier}/nextSequenceRecv" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "ports/{identifier}/channels/{identifier}/nextSequenceAck" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "ports/{identifier}/channels/{identifier}/packets/{sequence}" | bytes | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "ports/{identifier}/channels/{identifier}/acknowledgements/{sequence}" | bytes | [ICS 4](../ics-004-channel-and-packet-semantics) |
| privateStore | "callbacks/{identifier}" | ModuleCallbacks | [ICS 26](../ics-026-routing-module) |
| provableStore | "channelEnds/ports/{identifier}/channels/{identifier}" | ChannelEnd | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "seqSends/ports/{identifier}/channels/{identifier}/nextSequenceSend" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "seqRecvs/ports/{identifier}/channels/{identifier}/nextSequenceRecv" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "seqAcks/ports/{identifier}/channels/{identifier}/nextSequenceAck" | uint64 | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "commitments/ports/{identifier}/channels/{identifier}/packets/{sequence}" | bytes | [ICS 4](../ics-004-channel-and-packet-semantics) |
| provableStore | "acks/ports/{identifier}/channels/{identifier}/acknowledgements/{sequence}" | bytes | [ICS 4](../ics-004-channel-and-packet-semantics) |
### Module layout
Expand Down

0 comments on commit d107eb2

Please sign in to comment.