Skip to content

Commit d11ae97

Browse files
committed
Merge branch 'main' into jeff/configmap-2
2 parents 7e55ecf + e42a0e8 commit d11ae97

142 files changed

Lines changed: 8316 additions & 4149 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/famous-llamas-look.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@hyperlane-xyz/cosmos-sdk": minor
3+
"@hyperlane-xyz/widgets": minor
4+
"@hyperlane-xyz/utils": minor
5+
---
6+
7+
chore: updated AltVM interface

.changeset/long-adults-repeat.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@hyperlane-xyz/cli": patch
3+
"@hyperlane-xyz/sdk": patch
4+
---
5+
6+
Restore foreignDeployment field behaviour to allow enrollment of unsupported chains during deployment

.changeset/lucky-feet-begin.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@hyperlane-xyz/radix-sdk": major
3+
"@hyperlane-xyz/cli": major
4+
"@hyperlane-xyz/sdk": major
5+
---
6+
7+
feat: radix support for the cli

.changeset/pink-ladybugs-arrive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/cosmos-sdk": major
3+
---
4+
5+
feat: implement cosmos-sdk for new AltVM interface

.changeset/rich-glasses-dress.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/utils": major
3+
---
4+
5+
feat: add AltVM interface

.changeset/soft-seals-sell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/widgets": major
3+
---
4+
5+
feat: use new AltVM providers

.changeset/twenty-lemons-double.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/cli": major
3+
---
4+
5+
feat: register AltVM signer & provider factories

.changeset/wet-rabbits-stare.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/sdk": major
3+
---
4+
5+
feat: implement new AltVM modules and readers

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
RUST_BACKTRACE: full
21-
MIN_LANDERCOVERAGE_PERCENTAGE: 18
21+
MIN_LANDERCOVERAGE_PERCENTAGE: 19
2222
RUSTC_WRAPPER: sccache
2323

2424
jobs:

.github/workflows/test.yml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,43 @@ jobs:
393393
env:
394394
CLI_E2E_TEST: ${{ matrix.test }}
395395

396+
cli-cross-chain-e2e-matrix:
397+
runs-on: depot-ubuntu-latest
398+
needs: [rust-only]
399+
if: needs.rust-only.outputs.only_rust == 'false'
400+
strategy:
401+
fail-fast: false
402+
matrix:
403+
test:
404+
# Warp Commands
405+
- warp-apply
406+
- warp-deploy
407+
steps:
408+
- uses: actions/checkout@v4
409+
with:
410+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
411+
submodules: recursive
412+
fetch-depth: 0
413+
414+
- name: install-hyperlane-cli
415+
id: install-hyperlane-cli
416+
uses: ./.github/actions/install-cli
417+
with:
418+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
419+
cache-provider: github
420+
421+
- name: Checkout registry
422+
uses: ./.github/actions/checkout-registry
423+
424+
- name: CLI cross chain e2e tests (${{ matrix.test }})
425+
run: yarn --cwd typescript/cli test:cross-chain:e2e
426+
env:
427+
CLI_E2E_TEST: ${{ matrix.test }}
428+
396429
cli-e2e:
397430
runs-on: ubuntu-latest
398-
needs: [cli-evm-e2e-matrix, cli-cosmos-e2e-matrix]
431+
needs:
432+
[cli-evm-e2e-matrix, cli-cosmos-e2e-matrix, cli-cross-chain-e2e-matrix]
399433
if: always()
400434
steps:
401435
- uses: actions/checkout@v4
@@ -409,6 +443,11 @@ jobs:
409443
with:
410444
job_name: 'CLI CosmosNative E2E'
411445
result: ${{ needs.cli-cosmos-e2e-matrix.result }}
446+
- name: Check CLI Cross Chain E2E status
447+
uses: ./.github/actions/check-job-status
448+
with:
449+
job_name: 'CLI Cross Chain E2E'
450+
result: ${{ needs.cli-cross-chain-e2e-matrix.result }}
412451

413452
cosmos-sdk-e2e-run:
414453
runs-on: depot-ubuntu-latest

0 commit comments

Comments
 (0)