* ibc: protobuf v1 * update codec * core client * core connection * core host * core commitment * core port * core channel * core ibc module files * core exported * core types & simulation * core spec * make proto-all * ibc alias
11 lines
421 B
Go
11 lines
421 B
Go
/*
|
|
Package client implements the ICS 02 - Client Semantics specification
|
|
https://github.com/cosmos/ics/tree/master/spec/ics-002-client-semantics. This
|
|
concrete implementations defines types and method to store and update light
|
|
clients which tracks on other chain's state.
|
|
|
|
The main type is `Client`, which provides `commitment.Root` to verify state proofs and `ConsensusState` to
|
|
verify header proofs.
|
|
*/
|
|
package client
|