Skip to content

Commit

Permalink
Merge branch 'hyperlane-xyz:main' into feat/fuel-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Mantas-M authored Oct 17, 2024
2 parents eb0acba + 1606f85 commit 4cf4f35
Show file tree
Hide file tree
Showing 253 changed files with 11,316 additions and 1,381 deletions.
5 changes: 5 additions & 0 deletions .changeset/dirty-clocks-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/utils': patch
---

Fix objMerge implementation
5 changes: 5 additions & 0 deletions .changeset/dirty-months-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---

Deploy to odysseytestnet
5 changes: 5 additions & 0 deletions .changeset/fluffy-ducks-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---

Add override to some transactions to fix warp apply
5 changes: 5 additions & 0 deletions .changeset/long-swans-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/cli': minor
---

Add prompt in `warp init` command to choose if a trusted relayer should be used instead of making the choice by default for the user and enable the `--yes` flag to default to a trusted ISM
6 changes: 6 additions & 0 deletions .changeset/plenty-chicken-clean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@hyperlane-xyz/cli': minor
'@hyperlane-xyz/sdk': minor
---

Add rebasing yield route support into CLI/SDK
7 changes: 7 additions & 0 deletions .changeset/poor-coins-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@hyperlane-xyz/helloworld': patch
'@hyperlane-xyz/widgets': patch
'@hyperlane-xyz/cli': patch
---

Update registry to v4.7.0
5 changes: 0 additions & 5 deletions .changeset/silent-crabs-visit.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/silver-dancers-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/infra': minor
---

Updates the warpIds for Renzo's latest deployment to Sei and Taiko to be used by the Checker
5 changes: 5 additions & 0 deletions .changeset/tender-spiders-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/cli': minor
---

Update `warp apply` such that it updates in place AND extends in a single call
5 changes: 5 additions & 0 deletions .changeset/tidy-hornets-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---

Add deployments for mainnets: flow, metall2, polynomial
5 changes: 5 additions & 0 deletions .changeset/wise-camels-repair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': patch
---

Set transaction overrides and add 10% gas limit buffer when sending message through HyperlaneCore.
12 changes: 5 additions & 7 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,13 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@v4

- name: pip cache
uses: buildjet/cache@v4
- name: Setup python
uses: actions/setup-python@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip-
python-version: '3.x'

- name: Install prerequisites
run: sudo pip install -r ./.codespell/requirements.txt
- name: Install codespell requirements
run: pip install -r ./.codespell/requirements.txt

- name: Spell check
run: codespell --config=./.codespell/.codespellrc
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
submodules: recursive
fetch-depth: 0

- name: foundry-install
uses: foundry-rs/foundry-toolchain@v1
Expand Down Expand Up @@ -212,6 +213,16 @@ jobs:
env:
RUST_BACKTRACE: 'full'

- name: Check for Rust file changes
id: check-rust-changes
run: |
if [[ -n "$(git diff ${{ github.event.pull_request.head.sha || github.sha }} ${{ github.event.pull_request.base.sha }} -- ./rust)" ]]; then
echo "rust_changes=true" >> $GITHUB_OUTPUT
echo "$(git diff ${{ github.event.pull_request.head.sha || github.sha }} ${{ github.event.pull_request.base.sha }} -- ./rust)"
else
echo "rust_changes=false" >> $GITHUB_OUTPUT
fi
- name: agent tests (EVM and Sealevel)
run: cargo run --release --bin run-locally --features test-utils
if: matrix.e2e-type == 'non-cosmwasm'
Expand All @@ -221,6 +232,7 @@ jobs:
E2E_CI_TIMEOUT_SEC: '600'
E2E_KATHY_MESSAGES: '20'
RUST_BACKTRACE: 'full'
SEALEVEL_ENABLED: ${{ steps.check-rust-changes.outputs.rust_changes }}

cli-advanced-e2e:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .registryrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a87a555d19834d6d3dada72ccdcb3661ba9ff003
8583d0841615313c8c880e765eba760378e061cd
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"packageManager": "[email protected]",
"private": true,
"scripts": {
"agent-configs": "yarn --cwd typescript/infra/ update-agent-config:mainnet3 && yarn --cwd typescript/infra/ update-agent-config:testnet4 && yarn prettier",
"build": "yarn workspaces foreach --all --parallel --topological run build",
"clean": "yarn workspaces foreach --all --parallel run clean",
"prettier": "yarn workspaces foreach --since --parallel run prettier",
Expand Down
Loading

0 comments on commit 4cf4f35

Please sign in to comment.