-
Notifications
You must be signed in to change notification settings - Fork 211
Codex/ctusd preview build #1025
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
aafa1b9
c558025
97c7b08
a3706f7
8177c83
3617cf9
5375743
3655389
b3bb3e0
0fbd21c
c33757f
a37dd6b
3ba4e3a
2709481
8cb439f
eac14cb
b92c2df
cd43415
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,12 +5,17 @@ import { | |
| import { WarpCoreConfig } from '@hyperlane-xyz/sdk'; | ||
| import { objKeys } from '@hyperlane-xyz/utils'; | ||
| import { assert, test } from 'vitest'; | ||
| import { config } from './config'; | ||
| import { warpRouteWhitelist } from './warpRouteWhitelist'; | ||
|
|
||
| test('warpRouteWhitelist', async () => { | ||
| if (!warpRouteWhitelist) return; | ||
|
|
||
| const registry = new GithubRegistry(); | ||
| const registry = new GithubRegistry({ | ||
| uri: config.registryUrl, | ||
| branch: config.registryBranch, | ||
| proxyUrl: config.registryProxyUrl, | ||
| }); | ||
|
Comment on lines
+14
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test still misses the new per-route recovery path.
Also applies to: 21-29 🤖 Prompt for AI Agents |
||
| let warpRouteConfigs: Record<string, WarpCoreConfig>; | ||
|
|
||
| try { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,3 @@ | ||
| # A list of Warp Route token configs | ||
| # These configs will be merged with the warp routes in the configured registry | ||
| # The input here is typically the output of the Hyperlane CLI warp deploy command | ||
| --- | ||
| # yaml-language-server: $schema=../schema.json | ||
| tokens: [] | ||
| options: {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doc drift in this registry section.
src/consts/config.tsnow pinscodex/nambrot-cross-collateral-deployand disablesNEXT_PUBLIC_REGISTRY_*overrides, but this paragraph still points folks atnambrot/multi-collateral-deployandNEXT_PUBLIC_REGISTRY_URL. That’ll send customizers up the wrong hill.📝 Suggested doc fix
🤖 Prompt for AI Agents