-
Notifications
You must be signed in to change notification settings - Fork 105
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
Parachain Relayer V2 #1321
base: vincent/v2
Are you sure you want to change the base?
Parachain Relayer V2 #1321
Conversation
relayer/relays/parachain/types_v2.go
Outdated
Fee types.U128 | ||
Nonce uint64 | ||
BlockNumber uint32 | ||
Fee big.Int |
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.
If you use types.UCompact then you won't need to write a custom decoder.
Parachain config.ParachainConfig `mapstructure:"parachain"` | ||
Ethereum config.EthereumConfig `mapstructure:"ethereum"` | ||
Contracts SourceContractsConfig `mapstructure:"contracts"` | ||
Beacon beaconconf.BeaconConfig `mapstructure:"beacon"` |
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.
Why does the parachain relayer need the beacon config?
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.
https://github.com/Snowfork/snowbridge/pull/1321/files#r1827164159 for submit delivery proof back to BH.
relayer/relays/parachain/main.go
Outdated
return fmt.Errorf("get block header: %w", err) | ||
} | ||
|
||
proof, err := relay.beaconHeader.FetchExecutionProof(*blockHeader.ParentBeaconRoot, false) |
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.
Generate delivery proof
* Update contracts for smoke tests * Remove unused * Decode test * Update subxt
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## vincent/v2 #1321 +/- ##
==============================================
+ Coverage 65.29% 65.44% +0.14%
==============================================
Files 23 23
Lines 729 735 +6
Branches 122 123 +1
==============================================
+ Hits 476 481 +5
Misses 242 242
- Partials 11 12 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Resolves: https://linear.app/snowfork/issue/SNO-1230
Requires: yrong/polkadot-sdk#4