Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ICS28: Cross-Chain Validation V1 #666

Merged
merged 34 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
79becaf
ICS 28 CCV draft w/ init and validator set update (#640)
mpoke Feb 10, 2022
e548e72
merge CODEOWNERS from master
mpoke Feb 24, 2022
f637f0c
ICS28: CCV draft w/ complete unbonding (#646)
mpoke Feb 28, 2022
0f132dc
ICS28: Extend consumer InitGenesis (#659)
mpoke Feb 28, 2022
5292796
ICS28: Consumer Initiated Slashing (aka Evidence) (#663)
mpoke Mar 23, 2022
723af4d
ICS28: Remove CCV channel state (#678)
mpoke Mar 23, 2022
c626454
Update technical_specification.md
mpoke Mar 28, 2022
28d46ee
ICS28: Replace "Initiator" w/ "Caller" and “Trigger Event” (#696)
mpoke Apr 4, 2022
51dd64d
ICS28: Handle pending proposals to spawn consumer chains (#697)
mpoke Apr 4, 2022
2322702
ICS28: Remove genesisHash from specification (#699)
mpoke Apr 4, 2022
a6c9861
ICS28: CCV Reward Distribution subprotocol (#704)
mpoke Apr 20, 2022
6a04566
ICS28: Set initH in onChanOpenConfirm (#705)
mpoke Apr 20, 2022
dfc0398
ICS28: Enable the removal of a consumer chain from the provider (#707)
mpoke May 10, 2022
484b02c
ICS28: Remove BeforeUnbondingOpCompleted (#711)
mpoke May 10, 2022
9bdba66
ICS28: Update SlashPacketData (#728)
mpoke May 10, 2022
a6bc8d1
ICS28: Remove dependency on Tendermint and ABCI (#730)
mpoke May 11, 2022
0b3c84a
call UnbondMaturePackets() earlier (#747)
mpoke May 20, 2022
b7611ae
fix edge case enabled by aggregation (#746)
mpoke May 20, 2022
a635623
Use `h < hp'` instead of `h <= hp'` in Bond-Based Consumer Voting Pow…
danwt May 20, 2022
fe3c111
replace slashRequests w/ downtimeSlashRequests (#745)
mpoke May 20, 2022
76f2577
ics28 update sendPacket (#756)
mpoke May 23, 2022
3842922
ICS28: Restructure technical spec (#760)
mpoke Jun 9, 2022
ad30596
ICS28: Unbonding ops are put on hold even w/o consumer chains (#763)
mpoke Jun 9, 2022
5be51c0
Use currentTimestamp() >= p.stopTime in StopConsumerChainProposalHand…
danwt Jun 20, 2022
3713192
adding consumerUnbondingPeriod (#771)
mpoke Jun 23, 2022
6187e04
fix sendFungibleTokens signature
mpoke Jun 23, 2022
f1b1040
Merge branch 'master' into marius/ccv
mpoke Jun 23, 2022
7ea1ce6
Merge branch 'marius/ccv' of github.com:cosmos/ibc into marius/ccv
mpoke Jun 23, 2022
6ebbd60
add authors
mpoke Jun 24, 2022
5265e0b
ICS28: Removing the only consumer chain (#770)
mpoke Jun 27, 2022
b967c18
add conditions for CreateConsumerClient and StopConsumerChain (#775)
mpoke Jun 27, 2022
5ea9021
update created date
mpoke Jun 27, 2022
5d3b778
Merge branch 'main' into marius/ccv
mpoke Aug 1, 2022
195c36c
ICS28: Account for slashing in Bond-Based Consumer Voting Power prope…
mpoke Aug 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Default owners for repository
# 2/n quorum required for merge

* @mpoke @adityasripal @cwgoes @colin-axner
* @mpoke @adityasripal @cwgoes @colin-axner
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ All standards at or past the "Draft" stage are listed here in order of their ICS
| -------------------------------------------------------- | ----------------------- | ----- |
| [20](spec/app/ics-020-fungible-token-transfer/README.md) | Fungible Token Transfer | Candidate |
| [27](spec/app/ics-027-interchain-accounts/README.md) | Interchain Accounts | Draft |
| [28](spec/app/ics-028-cross-chain-validation/README.md) | Cross-Chain Validation | Draft |
| [29](spec/app/ics-029-fee-payment) | General Relayer Incentivisation Mechanism | Candidate |
| [30](spec/app/ics-030-middleware) | IBC Application Middleware | Candidate |
57 changes: 57 additions & 0 deletions spec/app/ics-028-cross-chain-validation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
ics: 28
title: Cross-Chain Validation
stage: draft
category: IBC/APP
requires: 25, 26, 20
author: Marius Poke <marius@informal.systems>, Aditya Sripal <aditya@interchain.io>, Jovan Komatovic <jovan.komatovic@epfl.ch>, Cezara Dragoi <cezara.dragoi@inria.fr>, Josef Widder <josef@informal.systems>
created: 2022-06-27
modified: 2022-06-27
---

<!-- omit in toc -->
# Synopsis

This standard document specifies packet data structure, state machine handling logic, and encoding details for Cross-Chain Validation (CCV). CCV is the specific IBC level protocol that enables *Interchain Security*, a Cosmos-specific category of *Shared Security*.

At a high level, CCV enables a *provider chain* (e.g., the Cosmos Hub) to provide *security* to multiple *consumer chains*. This means that the validator sets on the consumer chains are chosen from the validator set of the provider chain (for more details, see the [Security Model](./overview_and_basic_concepts.md#security-model) section).

The communication between the provider and the consumer chains is done through the IBC protocol over a *unique*, *ordered* channel (one for each consumer chain).

> Throughout this document, we will use the terms chain and blockchain interchangeably.

## Contents
- [Overview and Basic Concepts](./overview_and_basic_concepts.md)
- [System Model and Properties](./system_model_and_properties.md)
- [Technical Specification: Data Structures and Methods](./technical_specification.md)
- [Data Structures](./data_structures.md)
- [Methods](./methods.md)

<!--
## Backwards Compatibility

(discussion of compatibility or lack thereof with previous standards)


## Forwards Compatibility

-->

## Example Implementation

Interchain Security [Go implementation](https://github.com/cosmos/interchain-security).


<!--
## Other Implementations

(links to or descriptions of other implementations)

## History

(changelog and notable inspirations / references)
-->

## Copyright

All content herein is licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0).
295 changes: 295 additions & 0 deletions spec/app/ics-028-cross-chain-validation/data_structures.md

Large diffs are not rendered by default.

Loading