-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add support for eth to starlight message passing #772
base: master
Are you sure you want to change the base?
Add support for eth to starlight message passing #772
Conversation
WASM runtime size check:Compared to target branchdancebox runtime: 1424 KB (no changes) ✅ flashbox runtime: 820 KB (no changes) ✅ dancelight runtime: 2104 KB (no changes) ✅ container chain template simple runtime: 1124 KB (no changes) ✅ container chain template frontier runtime: 1400 KB (no changes) ✅ |
Coverage Report@@ Coverage Diff @@
## master parth-add-support-for-eth-to-starlight-message-passing +/- ##
=========================================================================================
Coverage 64.57% 64.57% 0.00%
Files 320 320
Lines 55407 55407
=========================================================================================
Hits 35777 35777
Misses 19630 19630
|
@@ -15,7 +15,7 @@ if [ -d "$relayer_root_dir" ]; | |||
then | |||
echo "Relayer seems to be already setup. Skipping git fetch" | |||
else | |||
git clone https://github.com/Snowfork/snowbridge $relayer_root_dir | |||
git clone https://github.com/moondance-labs/snowbridge $relayer_root_dir |
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.
People who have already run this script need to remove the snowbridge folder, otherwise it will fail, as it will use the old remote. CI works?
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.
yes. They will need to remove the old folder. CI should work as we clean up the tmp folder there from what I understand.
cat "$output_dir/contracts.json" | ||
contract_output=$(cat "$output_dir/contracts.json") | ||
|
||
echo "{ \"data\": $contract_output, \"ethereum_key\": \"$ethereum_key\" }" |
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.
Let's use jq? (untested)
echo "{ \"data\": $contract_output, \"ethereum_key\": \"$ethereum_key\" }" | |
jq --arg ethereum_key "$ethereum_key" '{data: ., ethereum_key: $ethereum_key}' "$output_dir/contracts.json" |
a9d9d56
to
dca3c6e
Compare
Description
This PR extends the bridge e2e shell scripts to do following:
It also extends the typescript test:
//ExecutionRelay
phrase so that relayer can send transaction.