-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into eddy/typechain-v11
- Loading branch information
Showing
624 changed files
with
30,816 additions
and
14,136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
Support configuring non-EVM IGP destinations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@hyperlane-xyz/infra': patch | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
Removed basegoerli and moonbasealpha testnets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
'@hyperlane-xyz/helloworld': minor | ||
'@hyperlane-xyz/infra': minor | ||
'@hyperlane-xyz/sdk': minor | ||
'@hyperlane-xyz/core': minor | ||
--- | ||
|
||
Enabled verification of contracts as part of the deployment flow. | ||
|
||
- Solidity build artifact is now included as part of the `@hyperlane-xyz/core` package. | ||
- Updated the `HyperlaneDeployer` to perform contract verification immediately after deploying a contract. A default verifier is instantiated using the core build artifact. | ||
- Updated the `HyperlaneIsmFactory` to re-use the `HyperlaneDeployer` for deployment where possible. | ||
- Minor logging improvements throughout deployers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'@hyperlane-xyz/utils': minor | ||
'@hyperlane-xyz/sdk': minor | ||
--- | ||
|
||
Add `WarpCore`, `Token`, and `TokenAmount` classes for interacting with Warp Route instances. | ||
|
||
_Breaking change_: The params to the `IHypTokenAdapter` `populateTransferRemoteTx` method have changed. `txValue` has been replaced with `interchainGas`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@hyperlane-xyz/infra': patch | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
Add logos for plume to SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@hyperlane-xyz/infra': patch | ||
'@hyperlane-xyz/cli': patch | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
TestRecipient as part of core deployer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@hyperlane-xyz/infra': patch | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
Update viction validator set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@hyperlane-xyz/sdk': patch | ||
--- | ||
|
||
Minor fixes for SDK cosmos logos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
## Problem | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
## Solution | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
## Nice to Have | ||
|
||
**Describe non-essential extensions to the solution** | ||
Additional features which should be implemented if they are easy to accommodate but otherwise can be skipped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: cron | ||
|
||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | ||
on: | ||
schedule: | ||
- cron: '45 14 * * *' | ||
workflow_dispatch: | ||
|
||
env: | ||
DEBUG: 'hyperlane:*' | ||
|
||
jobs: | ||
# copied from test.yml | ||
yarn-install: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.sha }} | ||
submodules: recursive | ||
|
||
- name: yarn-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
**/node_modules | ||
.yarn | ||
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | ||
|
||
- name: yarn-install | ||
run: yarn install | ||
|
||
# copied from test.yml | ||
yarn-build: | ||
runs-on: ubuntu-latest | ||
needs: [yarn-install] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.sha }} | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- name: yarn-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
**/node_modules | ||
.yarn | ||
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | ||
|
||
- name: build-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
./* | ||
!./rust | ||
key: ${{ github.sha }} | ||
|
||
- name: build | ||
run: yarn build | ||
|
||
metadata-check: | ||
runs-on: ubuntu-latest | ||
needs: [yarn-build] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.sha }} | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- name: yarn-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
**/node_modules | ||
.yarn | ||
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | ||
|
||
- name: build-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
./* | ||
!./rust | ||
key: ${{ github.sha }} | ||
|
||
- name: Metadata Health Check | ||
run: DEBUG=hyperlane yarn workspace @hyperlane-xyz/sdk run test:metadata | ||
|
||
- name: Post to discord webhook if metadata check fails | ||
if: failure() | ||
run: | | ||
curl -X POST -H 'Content-type: application/json' --data '{"content":"SDK metadata check failed, see ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}' ${{ secrets.DISCORD_WEBHOOK_URL }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.