Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions deployments/warp_routes/USDC/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
tokens:
- chainName: arbitrum
standard: EvmHypCollateralAdapter
decimals: 6

Check failure on line 4 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'decimals' should be before 'standard'
symbol: USDC
name: USD Coin

Check failure on line 6 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'name' should be before 'symbol'
addressOrDenom: "0x94C62e7958738B65737a0Db8A5077def3AED84AA"

Check failure on line 7 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'addressOrDenom' should be before 'name'
collateralAddressOrDenom: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
connections: []
- chainName: base
standard: EvmHypCollateralAdapter
decimals: 6

Check failure on line 12 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'decimals' should be before 'standard'
symbol: USDC
name: USD Coin

Check failure on line 14 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'name' should be before 'symbol'
addressOrDenom: "0x73Ef899fDa87213e26501707ab585028BFB297c8"

Check failure on line 15 in deployments/warp_routes/USDC/stableswap-config.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'addressOrDenom' should be before 'name'
collateralAddressOrDenom: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
connections: []
Comment on lines +1 to +17
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Sort token mapping keys alphabetically to fix lint.

Right now the key order trips the YAML sort-keys check. Reordering the keys inside each token entry will clear the lint failure.

✅ Suggested reorder
 tokens:
-  - chainName: arbitrum
-    standard: EvmHypCollateralAdapter
-    decimals: 6
-    symbol: USDC
-    name: USD Coin
-    addressOrDenom: "0x94C62e7958738B65737a0Db8A5077def3AED84AA"
-    collateralAddressOrDenom: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
-    connections: []
+  - addressOrDenom: "0x94C62e7958738B65737a0Db8A5077def3AED84AA"
+    chainName: arbitrum
+    collateralAddressOrDenom: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
+    connections: []
+    decimals: 6
+    name: USD Coin
+    standard: EvmHypCollateralAdapter
+    symbol: USDC
   - chainName: base
-    standard: EvmHypCollateralAdapter
-    decimals: 6
-    symbol: USDC
-    name: USD Coin
-    addressOrDenom: "0x73Ef899fDa87213e26501707ab585028BFB297c8"
-    collateralAddressOrDenom: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
-    connections: []
+  - addressOrDenom: "0x73Ef899fDa87213e26501707ab585028BFB297c8"
+    chainName: base
+    collateralAddressOrDenom: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
+    connections: []
+    decimals: 6
+    name: USD Coin
+    standard: EvmHypCollateralAdapter
+    symbol: USDC

As per coding guidelines: **/*.yaml: YAML files must have keys sorted alphabetically.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
tokens:
- chainName: arbitrum
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDC
name: USD Coin
addressOrDenom: "0x94C62e7958738B65737a0Db8A5077def3AED84AA"
collateralAddressOrDenom: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
connections: []
- chainName: base
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDC
name: USD Coin
addressOrDenom: "0x73Ef899fDa87213e26501707ab585028BFB297c8"
collateralAddressOrDenom: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
connections: []
tokens:
- addressOrDenom: "0x94C62e7958738B65737a0Db8A5077def3AED84AA"
chainName: arbitrum
collateralAddressOrDenom: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
connections: []
decimals: 6
name: USD Coin
standard: EvmHypCollateralAdapter
symbol: USDC
- addressOrDenom: "0x73Ef899fDa87213e26501707ab585028BFB297c8"
chainName: base
collateralAddressOrDenom: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
connections: []
decimals: 6
name: USD Coin
standard: EvmHypCollateralAdapter
symbol: USDC
🧰 Tools
🪛 GitHub Actions: ci

[error] 4-4: ESLint: YAML sort-keys. Expected mapping keys to be in ascending order. 'decimals' should be before 'standard'.

🪛 GitHub Check: lint

[failure] 15-15:
Expected mapping keys to be in ascending order. 'addressOrDenom' should be before 'name'


[failure] 14-14:
Expected mapping keys to be in ascending order. 'name' should be before 'symbol'


[failure] 12-12:
Expected mapping keys to be in ascending order. 'decimals' should be before 'standard'


[failure] 7-7:
Expected mapping keys to be in ascending order. 'addressOrDenom' should be before 'name'


[failure] 6-6:
Expected mapping keys to be in ascending order. 'name' should be before 'symbol'


[failure] 4-4:
Expected mapping keys to be in ascending order. 'decimals' should be before 'standard'

🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDC/stableswap-config.yaml` around lines 1 - 17, The
YAML token mappings have keys out of alphabetical order causing the linter to
fail; for each entry under the tokens list (the two mappings with chainName:
arbitrum and chainName: base) reorder the mapping keys alphabetically so each
token object uses the key order: addressOrDenom, chainName,
collateralAddressOrDenom, connections, decimals, name, standard, symbol; update
both token entries accordingly to satisfy the sort-keys rule.

14 changes: 14 additions & 0 deletions deployments/warp_routes/USDC/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Imputed deploy config for USDC CollateralAdapters on Arbitrum and Base
arbitrum:
type: collateralAdapter
token: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"

Check failure on line 4 in deployments/warp_routes/USDC/stableswap-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'token' should be before 'type'
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"

Check failure on line 5 in deployments/warp_routes/USDC/stableswap-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'sUSD' should be before 'token'
mailbox: "0x979Ca5202784112f4738403dBec5D0F3B9daabB9"

Check failure on line 6 in deployments/warp_routes/USDC/stableswap-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'mailbox' should be before 'sUSD'
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"

base:
type: collateralAdapter
token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"

Check failure on line 11 in deployments/warp_routes/USDC/stableswap-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint

Expected mapping keys to be in ascending order. 'token' should be before 'type'
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
Comment on lines +2 to +14
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Alphabetize keys inside each chain mapping.

Let’s keep it tidy so the YAML lint stops grumbling.

✅ Suggested reorder
 arbitrum:
-  type: collateralAdapter
-  token: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
-  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
-  mailbox: "0x979Ca5202784112f4738403dBec5D0F3B9daabB9"
-  owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  mailbox: "0x979Ca5202784112f4738403dBec5D0F3B9daabB9"
+  owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
+  token: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
+  type: collateralAdapter

 base:
-  type: collateralAdapter
-  token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
-  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
-  mailbox: "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
-  owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  mailbox: "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
+  owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
+  token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
+  type: collateralAdapter

As per coding guidelines: **/*.yaml: YAML files must have keys sorted alphabetically.

🧰 Tools
🪛 GitHub Check: lint

[failure] 11-11:
Expected mapping keys to be in ascending order. 'token' should be before 'type'


[failure] 6-6:
Expected mapping keys to be in ascending order. 'mailbox' should be before 'sUSD'


[failure] 5-5:
Expected mapping keys to be in ascending order. 'sUSD' should be before 'token'


[failure] 4-4:
Expected mapping keys to be in ascending order. 'token' should be before 'type'

🪛 Gitleaks (8.30.0)

[high] 4-4: Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

(generic-api-key)


[high] 11-11: Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

(generic-api-key)

🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDC/stableswap-deploy.yaml` around lines 2 - 14,
Reorder the keys inside each chain mapping (e.g., the arbitrum and base blocks)
so they are alphabetized: mailbox, owner, sUSD, token, type; update both the
arbitrum and base mappings to that order while preserving the existing values
and quoting.

9 changes: 9 additions & 0 deletions deployments/warp_routes/USDH/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
tokens:
- chainName: hyperevm
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDH
name: USD Hyperliquid
addressOrDenom: "0xc7d07C8acFC66852BAad9Afb49E8A3AA7F6D3575"
collateralAddressOrDenom: "0x111111a1a0667d36bd57c0a9f569b98057111111"
connections: []
Comment on lines +2 to +9
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Sort token keys alphabetically.

Key order isn’t alphabetical; please reorder for consistency.
As per coding guidelines: **/*.yaml: YAML files must have keys sorted alphabetically.

💡 Suggested reorder
   - chainName: hyperevm
-    standard: EvmHypCollateralAdapter
-    decimals: 6
-    symbol: USDH
-    name: USD Hyperliquid
     addressOrDenom: "0xc7d07C8acFC66852BAad9Afb49E8A3AA7F6D3575"
+    chainName: hyperevm
     collateralAddressOrDenom: "0x111111a1a0667d36bd57c0a9f569b98057111111"
     connections: []
+    decimals: 6
+    name: USD Hyperliquid
+    standard: EvmHypCollateralAdapter
+    symbol: USDH
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- chainName: hyperevm
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDH
name: USD Hyperliquid
addressOrDenom: "0xc7d07C8acFC66852BAad9Afb49E8A3AA7F6D3575"
collateralAddressOrDenom: "0x111111a1a0667d36bd57c0a9f569b98057111111"
connections: []
- addressOrDenom: "0xc7d07C8acFC66852BAad9Afb49E8A3AA7F6D3575"
chainName: hyperevm
collateralAddressOrDenom: "0x111111a1a0667d36bd57c0a9f569b98057111111"
connections: []
decimals: 6
name: USD Hyperliquid
standard: EvmHypCollateralAdapter
symbol: USDH
🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDH/stableswap-config.yaml` around lines 2 - 9, The
YAML object for the USDH token has keys out of alphabetical order; reorder the
keys (addressOrDenom, chainName, collateralAddressOrDenom, connections,
decimals, name, standard, symbol) into alphabetical order so the keys are
consistently sorted for the USDH entry (look for the USDH token block and its
keys such as chainName, standard, decimals, symbol, name, addressOrDenom,
collateralAddressOrDenom, connections and rearrange them alphabetically).

6 changes: 6 additions & 0 deletions deployments/warp_routes/USDH/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
hyperevm:
type: collateralAdapter
token: "0x111111a1a0667d36bd57c0a9f569b98057111111"
sUSD: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
Comment on lines +1 to +6
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Sort deployment keys alphabetically.

Key order isn’t alphabetical; please reorder for consistency.
As per coding guidelines: **/*.yaml: YAML files must have keys sorted alphabetically.

💡 Suggested reorder
 hyperevm:
-  type: collateralAdapter
-  token: "0x111111a1a0667d36bd57c0a9f569b98057111111"
-  sUSD: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
   mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
   owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  sUSD: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
+  token: "0x111111a1a0667d36bd57c0a9f569b98057111111"
+  type: collateralAdapter
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
hyperevm:
type: collateralAdapter
token: "0x111111a1a0667d36bd57c0a9f569b98057111111"
sUSD: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
hyperevm:
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
sUSD: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
token: "0x111111a1a0667d36bd57c0a9f569b98057111111"
type: collateralAdapter
🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDH/stableswap-deploy.yaml` around lines 1 - 6, The
YAML mapping under the hyperevm deployment must have its keys sorted
alphabetically; reorder the keys (for the mapping that includes type, token,
sUSD, mailbox, owner) so they follow alphabetical order (mailbox, owner, sUSD,
token, type) to comply with the `**/*.yaml` key-sorting guideline.

9 changes: 9 additions & 0 deletions deployments/warp_routes/USDSC/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
tokens:
- chainName: soneium
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDSC
name: Startale USD
addressOrDenom: "0x867D428B8FbE196EA4e997e7980623E75ED219a7"
collateralAddressOrDenom: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
connections: []
Comment on lines +1 to +9
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Sort YAML keys alphabetically in the token entry.

Right now the keys inside the token map aren’t in alpha order. Please reorder them to match the YAML guideline so it stays consistent with the rest of the registry.
As per coding guidelines, YAML files must have keys sorted alphabetically.

Proposed fix
 tokens:
-  - chainName: soneium
-    standard: EvmHypCollateralAdapter
-    decimals: 6
-    symbol: USDSC
-    name: Startale USD
-    addressOrDenom: "0x867D428B8FbE196EA4e997e7980623E75ED219a7"
-    collateralAddressOrDenom: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
-    connections: []
+  - addressOrDenom: "0x867D428B8FbE196EA4e997e7980623E75ED219a7"
+    chainName: soneium
+    collateralAddressOrDenom: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
+    connections: []
+    decimals: 6
+    name: Startale USD
+    standard: EvmHypCollateralAdapter
+    symbol: USDSC
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
tokens:
- chainName: soneium
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDSC
name: Startale USD
addressOrDenom: "0x867D428B8FbE196EA4e997e7980623E75ED219a7"
collateralAddressOrDenom: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
connections: []
tokens:
- addressOrDenom: "0x867D428B8FbE196EA4e997e7980623E75ED219a7"
chainName: soneium
collateralAddressOrDenom: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
connections: []
decimals: 6
name: Startale USD
standard: EvmHypCollateralAdapter
symbol: USDSC
🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDSC/stableswap-config.yaml` around lines 1 - 9, The
token mapping under the tokens array is not alphabetically ordered; reorder the
keys inside the token object (chainName, standard, decimals, symbol, name,
addressOrDenom, collateralAddressOrDenom, connections) into strict alphabetical
order (addressOrDenom, chainName, collateralAddressOrDenom, connections,
decimals, name, standard, symbol) so the entry for the USDSC token matches the
repository YAML key-sorting guideline; update the existing token object (the map
containing these keys) accordingly without changing values.

7 changes: 7 additions & 0 deletions deployments/warp_routes/USDSC/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Imputed deploy config for USDSC (Startale USD) CollateralAdapter on Soneium
soneium:
type: collateralAdapter
token: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
Comment on lines +2 to +7
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Alphabetize the keys under soneium.

The nested fields aren’t in alpha order. Let’s sort them so the YAML stays tidy and consistent.
As per coding guidelines, YAML files must have keys sorted alphabetically.

Proposed fix
 soneium:
-  type: collateralAdapter
-  token: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
-  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
   mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
   owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
+  sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
+  token: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
+  type: collateralAdapter
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
soneium:
type: collateralAdapter
token: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
soneium:
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
token: "0x3f99231dD03a9F0E7e3421c92B7b90fbe012985a"
type: collateralAdapter
🤖 Prompt for AI Agents
In `@deployments/warp_routes/USDSC/stableswap-deploy.yaml` around lines 2 - 7, The
keys under the soneium mapping are not alphabetized; reorder the properties
within the soneium block (the mapping that contains type, token, sUSD, mailbox,
owner) into alphabetical order by key name (mailbox, owner, sUSD, token, type)
so the YAML follows the project's sorted-keys guideline and remains consistent.

17 changes: 17 additions & 0 deletions deployments/warp_routes/USDT/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
tokens:
- chainName: arbitrum
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDT
name: Tether USD
addressOrDenom: "0x6BEC839292A36372882Cb850E93FB5aC2A9BA4Af"
collateralAddressOrDenom: "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
connections: []
- chainName: base
standard: EvmHypCollateralAdapter
decimals: 6
symbol: USDT
name: Tether USD
addressOrDenom: "0x23c51024b19303F1315DbFFA055666aE9B7A0B2c"
collateralAddressOrDenom: "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
connections: []
14 changes: 14 additions & 0 deletions deployments/warp_routes/USDT/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Imputed deploy config for USDT CollateralAdapters on Arbitrum and Base
arbitrum:
type: collateralAdapter
token: "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0x979Ca5202784112f4738403dBec5D0F3B9daabB9"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"

base:
type: collateralAdapter
token: "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
9 changes: 9 additions & 0 deletions deployments/warp_routes/mUSD/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
tokens:
- chainName: linea
standard: EvmHypCollateralAdapter
decimals: 6
symbol: mUSD
name: MetaMask USD
addressOrDenom: "0xb9Fc2748D7f4d81cfc2ca78a52f52b4ADf1C4895"
collateralAddressOrDenom: "0xaca92e438df0b2401ff60da7e4337b687a2435da"
connections: []
6 changes: 6 additions & 0 deletions deployments/warp_routes/mUSD/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
linea:
type: collateralAdapter
token: "0xaca92e438df0b2401ff60da7e4337b687a2435da"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0x02d16BC51af6BfD153d67CA61754cF912E82C4d9"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
9 changes: 9 additions & 0 deletions deployments/warp_routes/mantraUSD/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
tokens:
- chainName: mantra
standard: EvmHypCollateralAdapter
decimals: 6
symbol: mantraUSD
name: MANTRA USD
addressOrDenom: "0xb9Fc2748D7f4d81cfc2ca78a52f52b4ADf1C4895"
collateralAddressOrDenom: "0xd2b95283011E47257917770D28Bb3EE44c849f6F"
connections: []
6 changes: 6 additions & 0 deletions deployments/warp_routes/mantraUSD/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mantra:
type: collateralAdapter
token: "0xd2b95283011E47257917770D28Bb3EE44c849f6F"
sUSD: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
73 changes: 73 additions & 0 deletions deployments/warp_routes/sUSD/stableswap-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
tokens:
- chainName: arbitrum
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
connections:
- token: ethereum|base|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|soneium|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|mantra|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|linea|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|hyperevm|0x0a089A151228Fd8CdfB1082a12b030D4C064F497
- chainName: base
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
connections:
- token: ethereum|arbitrum|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|soneium|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|mantra|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|linea|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|hyperevm|0x0a089A151228Fd8CdfB1082a12b030D4C064F497
- chainName: soneium
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
connections:
- token: ethereum|arbitrum|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|base|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|mantra|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|linea|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|hyperevm|0x0a089A151228Fd8CdfB1082a12b030D4C064F497
- chainName: mantra
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
connections:
- token: ethereum|arbitrum|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|base|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|soneium|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|linea|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|hyperevm|0x0a089A151228Fd8CdfB1082a12b030D4C064F497
- chainName: linea
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6"
connections:
- token: ethereum|arbitrum|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|base|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|soneium|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|mantra|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|hyperevm|0x0a089A151228Fd8CdfB1082a12b030D4C064F497
- chainName: hyperevm
standard: EvmHypSyntheticWithMinters
decimals: 6
symbol: sUSD
name: StableSwap USD
addressOrDenom: "0x0a089A151228Fd8CdfB1082a12b030D4C064F497"
connections:
- token: ethereum|arbitrum|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|base|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|soneium|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|mantra|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
- token: ethereum|linea|0x38E8720EBE02e7c5254F9De9F81440C7a770a9c6
53 changes: 53 additions & 0 deletions deployments/warp_routes/sUSD/stableswap-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
arbitrum:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0x979Ca5202784112f4738403dBec5D0F3B9daabB9"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []

base:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []

soneium:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []

mantra:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []

linea:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0x02d16BC51af6BfD153d67CA61754cF912E82C4d9"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []

hyperevm:
type: syntheticWithMinters
name: "StableSwap USD"
symbol: "sUSD"
decimals: 6
mailbox: "0x3a464f746D23Ab22155710f44dB16dcA53e0775E"
owner: "0xEA2117b24F7947647Bec60527B68f4244AE40c01"
authorizedMinters: []
Loading
Loading