Skip to content

Commit e0b715e

Browse files
authored
Merge upstream main ef46219 (sync to ef46219 from 5b6c65d) #197
Merge upstream main ef46219 (sync to ef46219 from 5b6c65d)
2 parents c30c7c6 + 662977c commit e0b715e

File tree

1,000 files changed

+62871
-27210
lines changed

Some content is hidden

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

1,000 files changed

+62871
-27210
lines changed

.changeset/breezy-comics-sniff.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/sdk": minor
3+
---
4+
5+
Add the `EvmTimelockReader` class to get pending/scheduled transaction from a timelock contract. Add the `EvmEventLogsReader` to read logs on a given chain reliably either using the rpc or the block explorer api depending on what is available in the registry

.changeset/proud-cows-lay.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/sdk": patch
3+
---
4+
5+
Updated the HypERC20Checker to use a default anvil address instead of the signer address when asserting if a token is a hyp native

.changeset/six-berries-ask.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tender-spiders-nail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperlane-xyz/sdk": patch
3+
---
4+
5+
Handle etherscan v2 api migration

.codespell/.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[codespell]
2-
skip = .git,node_modules,yarn.lock,Cargo.lock,./typescript/helloworld,./rust/main/config,./rust/sealevel/environments/mainnet3/chain-config.json,package-lock.json,StdStorage.t.sol
2+
skip = .git,node_modules,yarn.lock,Cargo.lock,./typescript/helloworld,./rust/main/config
33
count =
44
quiet-level = 3
55
ignore-words = ./.codespell/ignore.txt

.codespell/ignore.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ ser
66
readded
77
re-use
88
superseed
9+
pris

.github/CODEOWNERS

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,32 @@
11
# File extension owners
22

3-
*.sol @yorhodes @aroralanuk @ltyu
4-
*.ts @yorhodes @ltyu
3+
*.sol @yorhodes @larryob
4+
*.ts @yorhodes @ltyu @xeno097
55
*.rs @tkporter @daniel-savu @ameten
66

77
# Package owners
88

99
## Contracts
10-
solidity/ @yorhodes @tkporter @aroralanuk @ltyu
10+
solidity/ @yorhodes @tkporter @ltyu @larryob
11+
starknet/ @yorhodes @tkporter @troykessler
1112

1213
## Agents
13-
rust/ @tkporter @daniel-savu
14+
rust/ @tkporter @daniel-savu @ameten @kamiyaa
1415

1516
## SDK
16-
typescript/utils @yorhodes @ltyu @paulbalaji
17-
typescript/sdk @yorhodes @ltyu @paulbalaji
18-
typescript/widgets @xaroz @cmcewen
17+
typescript/utils @yorhodes @ltyu @paulbalaji @xaroz @xeno097 @antigremlin
18+
typescript/sdk @yorhodes @ltyu @paulbalaji @xaroz @xeno097 @antigremlin
19+
typescript/widgets @xaroz @cmcewen @antigremlin
1920

2021
## CLI
21-
typescript/cli @yorhodes @ltyu
22+
typescript/cli @yorhodes @ltyu @xeno097 @antigremlin
2223

2324
## Infra
2425
typescript/infra @tkporter @paulbalaji @Mo-Hussain
26+
27+
## Cosmos
28+
typescript/cosmos-sdk @troykessler @yjamin
29+
typescript/cosmos-types @troykessler @yjamin
30+
31+
## CCIP Server
32+
typescript/ccip-server @Mo-Hussain @nambrot

.github/workflows/monorepo-docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- 'docker-entrypoint.sh'
1414
- '.dockerignore'
1515
- '.github/workflows/monorepo-docker.yml'
16+
- 'typescript/ccip-server/**'
1617
workflow_dispatch:
1718
inputs:
1819
include_arm64:

.github/workflows/static-analysis.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,3 @@ jobs:
5757
with:
5858
sarif_file: ${{ steps.slither.outputs.sarif }}
5959
category: 'slither'
60-
61-
- name: Olympix Integrated Security
62-
uses: olympix/integrated-security@main
63-
env:
64-
OLYMPIX_API_TOKEN: ${{ secrets.OLYMPIX_API_TOKEN }}
65-
OLYMPIX_CLI_LOG_LEVEL: 0
66-
with:
67-
args: -p ./solidity/contracts --output-format sarif --output-path ./
68-
69-
- name: Upload result to GitHub Code Scanning
70-
uses: github/codeql-action/upload-sarif@v3
71-
with:
72-
sarif_file: olympix.sarif
73-
category: 'olympix'

.github/workflows/storage-analysis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
paths:
77
- 'solidity/**'
88
workflow_dispatch:
9+
inputs:
10+
base:
11+
description: 'Branch to compare against'
12+
required: true
13+
default: 'main'
914

1015
jobs:
1116
diff-check:
@@ -46,7 +51,7 @@ jobs:
4651
# Checkout the target branch (base)
4752
- name: Checkout target branch (base) contracts
4853
env:
49-
BASE_REF: ${{ github.event.pull_request.base.sha }}
54+
BASE_REF: ${{ github.event.inputs.base || github.event.pull_request.base.sha }}
5055
run: |
5156
git fetch origin $BASE_REF
5257
git checkout $BASE_REF -- solidity/contracts

0 commit comments

Comments
 (0)