-
Notifications
You must be signed in to change notification settings - Fork 35
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
Update for RC6 chain and GSRPC versions #1439
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
9506796
Use temp fix for indices
mikiquantum 05bc449
merge develop
mikiquantum 4c27087
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 0e0301b
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 9a882bd
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum e7a8910
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 37aafff
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum ef381fc
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 02ec57b
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 8945142
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum e6210ab
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum df1faff
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 98f709d
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 9f74621
Merge branch 'develop' of github.com:centrifuge/go-centrifuge into de…
mikiquantum 10ad69c
Update for RC6 chain and GSRPC versions
mikiquantum 5d1ab50
Bridge v1.1.0
mikiquantum fc49d77
subkey rc6
mikiquantum 084a584
fix wget
mikiquantum da7788f
fix wget
mikiquantum e19b0a3
tx version from api
mikiquantum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,11 +1,11 @@ | ||
version: '3' | ||
services: | ||
bridge: | ||
image: "chainsafe/chainbridge:v1.0.0" | ||
image: "chainsafe/chainbridge:v1.1.0" | ||
container_name: bridge | ||
environment: | ||
- KEYSTORE_PASSWORD=centrifuge | ||
volumes: | ||
- ${BRIDGE_CONFIGDIR}:/config/ | ||
- ${BRIDGE_KEYSDIR}:/keys/ | ||
command: --config /config/config.toml --keystore /keys --verbosity dbug | ||
command: --config /config/config.json --keystore /keys --verbosity dbug |
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
25 changes: 25 additions & 0 deletions
25
build/scripts/test-dependencies/bridge/config/config.example.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,25 @@ | ||
{ | ||
"chains":[ | ||
{ | ||
"name": "eth", | ||
"type": "ethereum", | ||
"id": 0, | ||
"endpoint": "ws://geth:9546", | ||
"from": "0x88740f7A4A2b28F9B2Edb3F88452592d8f31311c", | ||
"opts": { | ||
"bridge":"0x478ab279Ac5F4bd69382D34cF2382606E6208eFc", | ||
"erc721Handler":"0x907E73DAEc81a61EcfCe770B61416b37F5df99bE", | ||
"erc20Handler":"0x3483c3a1Af5e78AE5AaB07de3Ea57b6F3877745F", | ||
"genericHandler":"0x26e5D5C370f992558a64fD140EEAC91b5a6C11ee" | ||
} | ||
}, | ||
{ | ||
"name": "substrate", | ||
"type": "substrate", | ||
"id": 1, | ||
"endpoint": "ws://cc:9944", | ||
"from": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY", | ||
"opts": { } | ||
} | ||
] | ||
} |
15 changes: 0 additions & 15 deletions
15
build/scripts/test-dependencies/bridge/config/config.example.toml
This file was deleted.
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 |
---|---|---|
|
@@ -141,26 +141,19 @@ type EventRelayerThresholdChanged struct { | |
// Events holds the default events and custom events for centrifuge chain | ||
type Events struct { | ||
types.EventRecords | ||
ChainBridge_FungibleTransfer []EventFungibleTransfer //nolint:stylecheck,golint | ||
ChainBridge_NonFungibleTransfer []EventNonFungibleTransfer //nolint:stylecheck,golint | ||
ChainBridge_GenericTransfer []EventGenericTransfer //nolint:stylecheck,golint | ||
ChainBridge_ChainWhitelisted []EventChainWhitelisted //nolint:stylecheck,golint | ||
ChainBridge_RelayerAdded []EventRelayerAdded //nolint:stylecheck,golint | ||
ChainBridge_RelayerThresholdChanged []EventRelayerThresholdChanged //nolint:stylecheck,golint | ||
Nfts_DepositAsset []EventNFTDeposited //nolint:stylecheck,golint | ||
Council_Proposed []types.EventCollectiveProposed //nolint:stylecheck,golint | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Already part of GSRPC events |
||
Council_Voted []types.EventCollectiveProposed //nolint:stylecheck,golint | ||
Council_Approved []types.EventCollectiveApproved //nolint:stylecheck,golint | ||
Council_Disapproved []types.EventCollectiveDisapproved //nolint:stylecheck,golint | ||
Council_Executed []types.EventCollectiveExecuted //nolint:stylecheck,golint | ||
Council_MemberExecuted []types.EventCollectiveMemberExecuted //nolint:stylecheck,golint | ||
Council_Closed []types.EventCollectiveClosed //nolint:stylecheck,golint | ||
Fees_FeeChanged []EventFeeChanged //nolint:stylecheck,golint | ||
MultiAccount_NewMultiAccount []EventNewMultiAccount //nolint:stylecheck,golint | ||
MultiAccount_MultiAccountUpdated []EventMultiAccountUpdated //nolint:stylecheck,golint | ||
MultiAccount_MultiAccountRemoved []EventMultiAccountRemoved //nolint:stylecheck,golint | ||
MultiAccount_NewMultisig []EventNewMultisig //nolint:stylecheck,golint | ||
MultiAccount_MultisigApproval []EventMultisigApproval //nolint:stylecheck,golint | ||
MultiAccount_MultisigExecuted []EventMultisigExecuted //nolint:stylecheck,golint | ||
MultiAccount_MultisigCancelled []EventMultisigCancelled //nolint:stylecheck,golint | ||
ChainBridge_FungibleTransfer []EventFungibleTransfer //nolint:stylecheck,golint | ||
ChainBridge_NonFungibleTransfer []EventNonFungibleTransfer //nolint:stylecheck,golint | ||
ChainBridge_GenericTransfer []EventGenericTransfer //nolint:stylecheck,golint | ||
ChainBridge_ChainWhitelisted []EventChainWhitelisted //nolint:stylecheck,golint | ||
ChainBridge_RelayerAdded []EventRelayerAdded //nolint:stylecheck,golint | ||
ChainBridge_RelayerThresholdChanged []EventRelayerThresholdChanged //nolint:stylecheck,golint | ||
Nfts_DepositAsset []EventNFTDeposited //nolint:stylecheck,golint | ||
Fees_FeeChanged []EventFeeChanged //nolint:stylecheck,golint | ||
MultiAccount_NewMultiAccount []EventNewMultiAccount //nolint:stylecheck,golint | ||
MultiAccount_MultiAccountUpdated []EventMultiAccountUpdated //nolint:stylecheck,golint | ||
MultiAccount_MultiAccountRemoved []EventMultiAccountRemoved //nolint:stylecheck,golint | ||
MultiAccount_NewMultisig []EventNewMultisig //nolint:stylecheck,golint | ||
MultiAccount_MultisigApproval []EventMultisigApproval //nolint:stylecheck,golint | ||
MultiAccount_MultisigExecuted []EventMultisigExecuted //nolint:stylecheck,golint | ||
MultiAccount_MultisigCancelled []EventMultisigCancelled //nolint:stylecheck,golint | ||
} |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RC6 image