-
Notifications
You must be signed in to change notification settings - Fork 24
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
feat: implement cross chain and oracle modules #42
Conversation
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
yutianwu
changed the title
[WIP] ibc: implement ibc module
[WIP] crosschan/oralce: implement cross chain and oracle moudles
Nov 23, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
unclezoro
reviewed
Nov 24, 2022
yutianwu
force-pushed
the
add_ibc
branch
2 times, most recently
from
December 21, 2022 03:24
8f36e43
to
2f18dd5
Compare
yutianwu
force-pushed
the
add_ibc
branch
2 times, most recently
from
December 29, 2022 11:59
b306473
to
99de73d
Compare
yutianwu
force-pushed
the
add_ibc
branch
2 times, most recently
from
January 9, 2023 07:23
b1706a8
to
a630100
Compare
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
reviewed
Jan 9, 2023
unclezoro
approved these changes
Jan 16, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pr implements two modules:
crosschain
andoracle
:crosschain
: Thecrosschain
module manages the cross-chain packages created by other modules. It also maintains all the receive and send sequences of each channel. Othe modules can register their cross-chain apps tocrosschain
module, so that the cross-chain package from BSC can be dispatched to their apps and processed properly.oracle
: Theoracle
module processesOracleClaim
messages from relayers. TheOracleClaim
messages are relayed from BSC which will be processed by the cross-chain app of the specific module. If the relayer is not in turn, the message will be rejected. Theoracle
module will also check the BLS signature of the signed relayers, if the proportion of signed relayers don't reach the threshold of2/3
, it will also be rejected.Changes
crosschain
and oracle module