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

Replace H160 in config and cli options of relayer by Bytes20 #2116

Merged
merged 11 commits into from
Aug 27, 2024

Conversation

AurelienFT
Copy link
Contributor

@AurelienFT AurelienFT commented Aug 20, 2024

Linked Issues/PRs

#469

Description

Replace H160 in config and cli options of relayer by Bytes20. This might cause a bit of performance impact as it's needed to transform them to H160 to interact with ethers_core dependency.

(This PR follows #1951)

Checklist

  • Breaking changes are clearly marked as such in the PR description and changelog
  • New behavior is reflected in tests
  • The specification matches the implemented behavior (link update PR if changes are needed)

Before requesting review

  • I have reviewed the code myself
  • I have created follow-up issues caused by this PR and linked them here

@Voxelot
Copy link
Member

Voxelot commented Aug 20, 2024

We should double check if this will break the integ tests in the rust sdk since it is a change to a public interface at the library level. If so let's make a ticket on fuels-rs so they are aware of this incoming change.

@AurelienFT
Copy link
Contributor Author

Ok, I'm in the process of doing it. (blocked by : FuelLabs/fuels-rs#1492 for now)

@AurelienFT
Copy link
Contributor Author

We should double check if this will break the integ tests in the rust sdk since it is a change to a public interface at the library level. If so let's make a ticket on fuels-rs so they are aware of this incoming change.

I ran the tests of fuels-rs and didn't had any fail.

@AurelienFT AurelienFT requested a review from a team August 22, 2024 12:42
@@ -53,10 +50,6 @@ pub struct RelayerArgs {
pub syncing_log_frequency_secs: u64,
}

pub fn parse_h160(input: &str) -> Result<H160, <H160 as FromStr>::Err> {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be nice to see a test that verifies the decoded value

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function on which you added your comment has been removed. Can you clarify what you want to be tested ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to test that parsing of the H160::from_str and Bytes20::from_str returns the same values=)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done :)

netrome
netrome previously approved these changes Aug 22, 2024
Copy link
Contributor

@netrome netrome left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, but I think it would be nice if we could use the ethers_core::Address type alias in the remaining places you reference the H160 type.

crates/services/relayer/src/service/get_logs/test.rs Outdated Show resolved Hide resolved
@AurelienFT AurelienFT self-assigned this Aug 26, 2024
netrome
netrome previously approved these changes Aug 26, 2024
Copy link
Contributor

@netrome netrome left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me, just one more place to change H160 to ethereum_types::Address

tests/tests/relayer.rs Outdated Show resolved Hide resolved
netrome
netrome previously approved these changes Aug 26, 2024
Copy link
Contributor

@netrome netrome left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

CHANGELOG.md Outdated Show resolved Hide resolved
@@ -53,10 +50,6 @@ pub struct RelayerArgs {
pub syncing_log_frequency_secs: u64,
}

pub fn parse_h160(input: &str) -> Result<H160, <H160 as FromStr>::Err> {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to test that parsing of the H160::from_str and Bytes20::from_str returns the same values=)

tests/Cargo.toml Outdated
@@ -25,6 +25,7 @@ aws-config = { version = "1.1.7", features = [
aws-sdk-kms = { version = "1.37.0", optional = true }
clap = { workspace = true }
cynic = { workspace = true }
ethereum-types = "0.14.1"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice if relayer service exported this dependency instead. Maybe behind the test-helpers feature. In this case we don't need to include it here.

Also relayer service could provide the covnert_to_address function, and we could use it instead of the Address type.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, didn't see, seems like you did it :D

@xgreenx xgreenx merged commit 2f1c3b7 into master Aug 27, 2024
34 of 35 checks passed
@xgreenx xgreenx deleted the use_bytes20_relayer branch August 27, 2024 11:04
@xgreenx xgreenx mentioned this pull request Aug 28, 2024
xgreenx added a commit that referenced this pull request Aug 28, 2024
## Version v0.35.0

### Added
- [2122](#2122): Changed the
relayer URI address to be a vector and use a quorum provider. The
`relayer` argument now supports multiple URLs to fetch information from
different sources.
- [2119](#2119): GraphQL query
fields for retrieving information about upgrades.

### Changed
- [2113](#2113): Modify the
way the gas price service and shared algo is initialized to have some
default value based on best guess instead of `None`, and initialize
service before graphql.
- [2112](#2112): Alter the way
the sealed blocks are fetched with a given height.
- [2120](#2120): Added
`submitAndAwaitStatus` subscription endpoint which returns the
`SubmittedStatus` after the transaction is submitted as well as the
`TransactionStatus` subscription.
- [2115](#2115): Add test for
`SignMode` `is_available` method.
- [2124](#2124): Generalize
the way p2p req/res protocol handles requests.

#### Breaking

- [2040](#2040): Added full
`no_std` support state transition related crates. The crates now require
the "alloc" feature to be enabled. Following crates are affected:
  - `fuel-core-types`
  - `fuel-core-storage`
  - `fuel-core-executor`
- [2116](#2116): Replace
`H160` in config and cli options of relayer by `Bytes20` of `fuel-types`

### Fixed
- [2134](#2134): Perform
RecoveryID normalization for AWS KMS -generated signatures.

## What's Changed
* Change TODO clippy to wait for false positive correction by
@AurelienFT in #2110
* Remove option on shared algo, give default algo, reorder service
startup by @MitchTurner in
#2113
* chore(sealed_blocks): optimize fetching of sealed block header at a
given height by @rymnc in
#2112
* chore(p2p_service): remove unnecessary cast to usize by @rymnc in
#2123
* Added a benchmark for the predicate with ed19 verification by @xgreenx
in #2127
* Add test SignMode is_available by @AurelienFT in
#2115
* feat: Add graphql query fields for retreiving information about
upgrades by @netrome in #2119
* Small code optimizations by @MoneyBund in
#2035
* Change relayer URI address to be vector and use quorum provider by
@AurelienFT in #2122
* chore(p2p_service): clean up processing of p2p req/res protocol by
@rymnc in #2124
* feat: add `submitAndAwaitStatus` subscription endpoint by @maschad in
#2120
* Replace H160 in config and cli options of relayer by Bytes20 by
@AurelienFT in #2116
* Secp256k1 RecoveryID correction for KMS-genrated signatures by
@Dentosal in #2134
* Added `no_std` support state transition related crates by @xgreenx in
#2040

## New Contributors
* @MoneyBund made their first contribution in
#2035
* @maschad made their first contribution in
#2120

**Full Changelog**:
v0.34.0...v0.35.0
GoldenPath1109 added a commit to GoldenPath1109/fuel-core that referenced this pull request Sep 7, 2024
## Version v0.35.0

### Added
- [2122](FuelLabs/fuel-core#2122): Changed the
relayer URI address to be a vector and use a quorum provider. The
`relayer` argument now supports multiple URLs to fetch information from
different sources.
- [2119](FuelLabs/fuel-core#2119): GraphQL query
fields for retrieving information about upgrades.

### Changed
- [2113](FuelLabs/fuel-core#2113): Modify the
way the gas price service and shared algo is initialized to have some
default value based on best guess instead of `None`, and initialize
service before graphql.
- [2112](FuelLabs/fuel-core#2112): Alter the way
the sealed blocks are fetched with a given height.
- [2120](FuelLabs/fuel-core#2120): Added
`submitAndAwaitStatus` subscription endpoint which returns the
`SubmittedStatus` after the transaction is submitted as well as the
`TransactionStatus` subscription.
- [2115](FuelLabs/fuel-core#2115): Add test for
`SignMode` `is_available` method.
- [2124](FuelLabs/fuel-core#2124): Generalize
the way p2p req/res protocol handles requests.

#### Breaking

- [2040](FuelLabs/fuel-core#2040): Added full
`no_std` support state transition related crates. The crates now require
the "alloc" feature to be enabled. Following crates are affected:
  - `fuel-core-types`
  - `fuel-core-storage`
  - `fuel-core-executor`
- [2116](FuelLabs/fuel-core#2116): Replace
`H160` in config and cli options of relayer by `Bytes20` of `fuel-types`

### Fixed
- [2134](FuelLabs/fuel-core#2134): Perform
RecoveryID normalization for AWS KMS -generated signatures.

## What's Changed
* Change TODO clippy to wait for false positive correction by
@AurelienFT in FuelLabs/fuel-core#2110
* Remove option on shared algo, give default algo, reorder service
startup by @MitchTurner in
FuelLabs/fuel-core#2113
* chore(sealed_blocks): optimize fetching of sealed block header at a
given height by @rymnc in
FuelLabs/fuel-core#2112
* chore(p2p_service): remove unnecessary cast to usize by @rymnc in
FuelLabs/fuel-core#2123
* Added a benchmark for the predicate with ed19 verification by @xgreenx
in FuelLabs/fuel-core#2127
* Add test SignMode is_available by @AurelienFT in
FuelLabs/fuel-core#2115
* feat: Add graphql query fields for retreiving information about
upgrades by @netrome in FuelLabs/fuel-core#2119
* Small code optimizations by @MoneyBund in
FuelLabs/fuel-core#2035
* Change relayer URI address to be vector and use quorum provider by
@AurelienFT in FuelLabs/fuel-core#2122
* chore(p2p_service): clean up processing of p2p req/res protocol by
@rymnc in FuelLabs/fuel-core#2124
* feat: add `submitAndAwaitStatus` subscription endpoint by @maschad in
FuelLabs/fuel-core#2120
* Replace H160 in config and cli options of relayer by Bytes20 by
@AurelienFT in FuelLabs/fuel-core#2116
* Secp256k1 RecoveryID correction for KMS-genrated signatures by
@Dentosal in FuelLabs/fuel-core#2134
* Added `no_std` support state transition related crates by @xgreenx in
FuelLabs/fuel-core#2040

## New Contributors
* @MoneyBund made their first contribution in
FuelLabs/fuel-core#2035
* @maschad made their first contribution in
FuelLabs/fuel-core#2120

**Full Changelog**:
FuelLabs/fuel-core@v0.34.0...v0.35.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants