Skip to content

Commit

Permalink
Use new ethers-rs version that should work with BSC (#3000)
Browse files Browse the repository at this point in the history
### Description

Uses a version of our ethers fork with
hyperlane-xyz/ethers-rs#10, which adds back a
change that I had reverted from
hyperlane-xyz/ethers-rs#8

This is required to fix bsc / bsctestnet txs, where the base fee is 0
and we want to estimate the priority fee

### Drive-by changes

n/a

### Related issues

n/a

### Backward compatibility

ye

### Testing
deployed and saw successful bsc / bsctestnet msgs
  • Loading branch information
tkporter authored Nov 29, 2023
1 parent 6bb5be1 commit ffd4de4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,27 +183,27 @@ cosmwasm-schema = "1.2.7"
[workspace.dependencies.ethers]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2023-11-29-01"
tag = "2023-11-29-02"

[workspace.dependencies.ethers-contract]
features = ["legacy"]
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2023-11-29-01"
tag = "2023-11-29-02"

[workspace.dependencies.ethers-core]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2023-11-29-01"
tag = "2023-11-29-02"

[workspace.dependencies.ethers-providers]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2023-11-29-01"
tag = "2023-11-29-02"

[workspace.dependencies.ethers-signers]
features = ["aws"]
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2023-11-29-01"
tag = "2023-11-29-02"

[patch.crates-io.curve25519-dalek]
branch = "v3.2.2-relax-zeroize"
Expand Down

0 comments on commit ffd4de4

Please sign in to comment.