{"id":20844313,"url":"https://github.com/bootnodedev/hyperlane-wrid","last_synced_at":"2026-04-22T15:35:45.719Z","repository":{"id":257915372,"uuid":"867854178","full_name":"BootNodeDev/hyperlane-wrid","owner":"BootNodeDev","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-05T11:44:49.000Z","size":3782,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-26T05:04:22.922Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BootNodeDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-04T21:22:45.000Z","updated_at":"2024-11-05T11:44:50.000Z","dependencies_parsed_at":"2025-12-24T16:00:05.532Z","dependency_job_id":null,"html_url":"https://github.com/BootNodeDev/hyperlane-wrid","commit_stats":null,"previous_names":["bootnodedev/hyperlane-wrid"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BootNodeDev/hyperlane-wrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fhyperlane-wrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fhyperlane-wrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fhyperlane-wrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fhyperlane-wrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BootNodeDev","download_url":"https://codeload.github.com/BootNodeDev/hyperlane-wrid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BootNodeDev%2Fhyperlane-wrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32143657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T15:33:03.595Z","status":"ssl_error","status_checked_at":"2026-04-22T15:30:42.712Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-18T02:09:16.436Z","updated_at":"2026-04-22T15:35:45.701Z","avatar_url":"https://github.com/BootNodeDev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Warp Routes Interchain Deployer\n\nThis repo contains a Hardhat script that can be used for deploying a set of Hyperlane Warp Routes executing a single\ntransaction in only one chain by reading the resulting `warp-route-deployment.yaml` file generated with Hyperlane CLI\n`hyperlane warp init` command. It was created as a POC for solving\nhttps://github.com/hyperlane-xyz/hyperlane-monorepo/issues/3498\n\nThe solution makes use of Hyperlane `InterchainAccountRouter` for sending the routes creation tx's to the destination\nchains and `CreateX` for precomputing resulting addresses and deploying.\n\nThey say a picture is worth a thousand words, so I'll try to explain the whole process with the following:\n\n![the process](/imgs/interchain-warp-deploy.png)\n\n## How to use it\n\n1.  Install dependencies\n\n```bash\nnpm install\n```\n\n2.  Set required Hardhat configuration variables\n\n`PK` deployer's private key\n\n```bash\nnpx hardhat vars set PK\n```\n\n`ALCHEMY_API_KEY` your Alchemy API KEY\n\n```bash\nnpx hardhat vars set ALCHEMY_API_KEY\n```\n\n3.  Run the script\n\nAfter running Hyperlane CLI `hyperlane warp init` command copy the resulting `warp-route-deployment.yaml` file into the\n`configs` folder.\n\n```bash\nnpm run warpDeploy -- --network NETWORK_NAME --routersalt SOME_SALT_FOR_ROUTER_IMPL --proxyadminsalt SOME_SALT_FOR_PROXY_ADMIN --proxysalt SOME_SALT_FOR_ROUTER_PROXY\n```\n\nThere are some required params you need:\n\n-   `NETWORK_NAME` Name of the network from which the task is going to run.\n\n-   `SOME_SALT_FOR_ROUTER_IMPL` A single use salt for deploying the router implementation. Max 11 characters address.\n\n-   `SOME_SALT_FOR_PROXY_ADMIN` A single use salt for deploying the ProxyAdmin which will be set as the\n    `TransparentUpgradeableProxy` admin. Ownership of the ProxyRouter is assigned to user ICA. Max 11 characters\n\n-   `SOME_SALT_FOR_ROUTER_PROXY` A single use salt for deploying the router proxy. Max 11 characters\n\n## Supported Networks\n\nFor running the task on a given network it is required the presence of 3 smart contracts, Hyperlane\n[`InterchainAccountRouter`](https://docs.hyperlane.xyz/docs/reference/applications/interchain-account),\n`MulticallFactory` and [`CreateX`](https://github.com/pcaversaccio/createx).\n\nThis repository already supports the following networks:\n\n-   Base Sepolia\n-   Optimism Sepolia\n-   Arbitrum Sepolia\n-   Sepolia\n\nI you need to run this from a different chain you would need to make sure that [`InterchainAccountRouter`](https://github.com/hyperlane-xyz/hyperlane-registry/tree/main/chains) and [`CreateX`](https://github.com/pcaversaccio/createx/blob/main/deployments/deployments.json)\ndeployed and deploy a new `MulticallFactory` by following the next steps:\n\n1. Add the network configs on the [`hardhat.config.ts`](hardhat.config.ts) file\n\n2. Run\n\n```bash\nnpm run multicallFactory -- --network YOUR_NETWORK\n```\n\n3. Add the resulting address into the [`registry.json`](configs/registry.json) file,\n   like\n\n```json\n{\n    ... OTHER NETWORKS,\n    \"YOR NETWORK ID\": {\n        \"multicallFactory\": \"RESULTING ADDRESS\"\n    }\n}\n```\n\n## Limitations\n\nThis solution is a POC so it contains several limitation:\n\n### Warp Routes Types\n\nIt only supports `Synthetix` and `Collateral` warp routes.\n\n### Gas payment\n\nGas payment is calculated using a 2456224 as gas limit.\n\n### Audits\n\nThe solution make use of some smart contracts that were not audited.\n\n### Verification\n\nIt does not provide a way to verify the created smart contracts. Using\n`npx hardhat verify --network NETWORK_NAME CONTRACT_ADDRESS CONSTRUCTOR_PARAMS` should work.\n\n### Status checking\n\nIt does no check the status of the messages. But at the end it prints some useful information, like `messageId` of all\n`InterchainAccountRouter` calls that you can use on https://explorer.hyperlane.xyz\n\n### Config file results\n\nIt does not write results to the configuration files.\n\n### Technical debts\n\nLike every good piece of software it contains technical debts.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootnodedev%2Fhyperlane-wrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbootnodedev%2Fhyperlane-wrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootnodedev%2Fhyperlane-wrid/lists"}