diff --git a/.changeset/chatty-seals-flash.md b/.changeset/chatty-seals-flash.md deleted file mode 100644 index d1885fa32a..0000000000 --- a/.changeset/chatty-seals-flash.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/sdk': minor ---- - -**New Feature**: Add transaction fee estimators to the SDK -**Breaking change**: Token Adapter `quoteGasPayment` method renamed to `quoteTransferRemoteGas` for clarity. diff --git a/.changeset/cuddly-fishes-repair.md b/.changeset/cuddly-fishes-repair.md deleted file mode 100644 index 196871cf5a..0000000000 --- a/.changeset/cuddly-fishes-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hyperlane-xyz/sdk': patch ---- - -Support configuring non-EVM IGP destinations diff --git a/.changeset/eleven-books-train.md b/.changeset/eleven-books-train.md deleted file mode 100644 index 01e4bc5a0f..0000000000 --- a/.changeset/eleven-books-train.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@hyperlane-xyz/infra': minor -'@hyperlane-xyz/sdk': minor -'@hyperlane-xyz/core': minor ---- - -Remove support for goerli networks (including optimismgoerli, arbitrumgoerli, lineagoerli and polygonzkevmtestnet) diff --git a/.changeset/funny-pans-return.md b/.changeset/funny-pans-return.md deleted file mode 100644 index d6aa05e5f3..0000000000 --- a/.changeset/funny-pans-return.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/infra': patch -'@hyperlane-xyz/sdk': patch ---- - -Removed basegoerli and moonbasealpha testnets diff --git a/.changeset/green-pans-unite.md b/.changeset/green-pans-unite.md deleted file mode 100644 index 71791ee776..0000000000 --- a/.changeset/green-pans-unite.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@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. diff --git a/.changeset/lazy-guests-enjoy.md b/.changeset/lazy-guests-enjoy.md deleted file mode 100644 index 2632f04385..0000000000 --- a/.changeset/lazy-guests-enjoy.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@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`. diff --git a/.changeset/modern-adults-sell.md b/.changeset/modern-adults-sell.md deleted file mode 100644 index b498a83f9c..0000000000 --- a/.changeset/modern-adults-sell.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/infra': patch -'@hyperlane-xyz/sdk': patch ---- - -Add logos for plume to SDK diff --git a/.changeset/modern-dryers-jump.md b/.changeset/modern-dryers-jump.md deleted file mode 100644 index 0d2ba2e495..0000000000 --- a/.changeset/modern-dryers-jump.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@hyperlane-xyz/infra': patch -'@hyperlane-xyz/cli': patch -'@hyperlane-xyz/sdk': patch ---- - -TestRecipient as part of core deployer diff --git a/.changeset/olive-starfishes-exercise.md b/.changeset/olive-starfishes-exercise.md deleted file mode 100644 index f28e22c811..0000000000 --- a/.changeset/olive-starfishes-exercise.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/infra': patch -'@hyperlane-xyz/sdk': patch ---- - -Update viction validator set diff --git a/.changeset/orange-kangaroos-allow.md b/.changeset/orange-kangaroos-allow.md deleted file mode 100644 index 636a000e94..0000000000 --- a/.changeset/orange-kangaroos-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hyperlane-xyz/sdk': patch ---- - -Minor fixes for SDK cosmos logos diff --git a/.changeset/short-boats-suffer.md b/.changeset/short-boats-suffer.md deleted file mode 100644 index 6d9e8470d9..0000000000 --- a/.changeset/short-boats-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hyperlane-xyz/cli': patch ---- - -Update CLI Warp route deployment output shape to new WarpCore config diff --git a/.changeset/tasty-eyes-grin.md b/.changeset/tasty-eyes-grin.md deleted file mode 100644 index 7268abad75..0000000000 --- a/.changeset/tasty-eyes-grin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@hyperlane-xyz/sdk': patch ---- - -Implement message id extraction for CosmWasmCoreAdapter diff --git a/.changeset/wild-horses-burn.md b/.changeset/wild-horses-burn.md deleted file mode 100644 index 44922d2880..0000000000 --- a/.changeset/wild-horses-burn.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@hyperlane-xyz/infra': patch -'@hyperlane-xyz/sdk': patch ---- - -Patch transfer ownership in hook deployer diff --git a/solidity/CHANGELOG.md b/solidity/CHANGELOG.md index d0461163e6..cc9557b3d7 100644 --- a/solidity/CHANGELOG.md +++ b/solidity/CHANGELOG.md @@ -1,5 +1,22 @@ # @hyperlane-xyz/core +## 3.8.0 + +### Minor Changes + +- 9681df08d: Remove support for goerli networks (including optimismgoerli, arbitrumgoerli, lineagoerli and polygonzkevmtestnet) +- 9681df08d: 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. + +### Patch Changes + +- Updated dependencies [9681df08d] + - @hyperlane-xyz/utils@3.8.0 + ## 3.7.0 ### Patch Changes diff --git a/solidity/package.json b/solidity/package.json index 8ce4441368..08d6f3d1bc 100644 --- a/solidity/package.json +++ b/solidity/package.json @@ -1,10 +1,10 @@ { "name": "@hyperlane-xyz/core", "description": "Core solidity contracts for Hyperlane", - "version": "3.7.0", + "version": "3.8.0", "dependencies": { "@eth-optimism/contracts": "^0.6.0", - "@hyperlane-xyz/utils": "3.7.0", + "@hyperlane-xyz/utils": "3.8.0", "@openzeppelin/contracts": "^4.9.3", "@openzeppelin/contracts-upgradeable": "^v4.9.3" }, diff --git a/typescript/ccip-server/CHANGELOG.md b/typescript/ccip-server/CHANGELOG.md new file mode 100644 index 0000000000..af4cc393a8 --- /dev/null +++ b/typescript/ccip-server/CHANGELOG.md @@ -0,0 +1,3 @@ +# @hyperlane-xyz/ccip-server + +## 3.8.0 diff --git a/typescript/ccip-server/package.json b/typescript/ccip-server/package.json index 46a4a4ebb1..d604bd65b0 100644 --- a/typescript/ccip-server/package.json +++ b/typescript/ccip-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperlane-xyz/ccip-server", - "version": "0.0.0", + "version": "3.8.0", "description": "CCIP server", "typings": "dist/index.d.ts", "typedocMain": "src/index.ts", diff --git a/typescript/cli/CHANGELOG.md b/typescript/cli/CHANGELOG.md index a1b271d0fd..a55e2caaf5 100644 --- a/typescript/cli/CHANGELOG.md +++ b/typescript/cli/CHANGELOG.md @@ -1,5 +1,26 @@ # @hyperlane-xyz/cli +## 3.8.0 + +### Patch Changes + +- 9681df08d: TestRecipient as part of core deployer +- 9681df08d: Update CLI Warp route deployment output shape to new WarpCore config +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] + - @hyperlane-xyz/sdk@3.8.0 + - @hyperlane-xyz/utils@3.8.0 + ## 3.7.0 ### Minor Changes diff --git a/typescript/cli/package.json b/typescript/cli/package.json index be454f3f3d..8e26bad268 100644 --- a/typescript/cli/package.json +++ b/typescript/cli/package.json @@ -1,10 +1,10 @@ { "name": "@hyperlane-xyz/cli", - "version": "3.7.0", + "version": "3.8.0", "description": "A command-line utility for common Hyperlane operations", "dependencies": { - "@hyperlane-xyz/sdk": "3.7.0", - "@hyperlane-xyz/utils": "3.7.0", + "@hyperlane-xyz/sdk": "3.8.0", + "@hyperlane-xyz/utils": "3.8.0", "@inquirer/prompts": "^3.0.0", "bignumber.js": "^9.1.1", "chalk": "^5.3.0", diff --git a/typescript/cli/src/version.ts b/typescript/cli/src/version.ts index 457dafcc43..9083009fb7 100644 --- a/typescript/cli/src/version.ts +++ b/typescript/cli/src/version.ts @@ -1 +1 @@ -export const VERSION = '3.7.0'; +export const VERSION = '3.8.0'; diff --git a/typescript/helloworld/CHANGELOG.md b/typescript/helloworld/CHANGELOG.md index 1b8a4b9fcb..0cddcd68f5 100644 --- a/typescript/helloworld/CHANGELOG.md +++ b/typescript/helloworld/CHANGELOG.md @@ -1,5 +1,33 @@ # @hyperlane-xyz/helloworld +## 3.8.0 + +### Minor Changes + +- 9681df08d: 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. + +### Patch Changes + +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] + - @hyperlane-xyz/sdk@3.8.0 + - @hyperlane-xyz/core@3.8.0 + ## 3.7.0 ### Patch Changes diff --git a/typescript/helloworld/package.json b/typescript/helloworld/package.json index fa855622c1..cd3b08312e 100644 --- a/typescript/helloworld/package.json +++ b/typescript/helloworld/package.json @@ -1,10 +1,10 @@ { "name": "@hyperlane-xyz/helloworld", "description": "A basic skeleton of an Hyperlane app", - "version": "3.7.0", + "version": "3.8.0", "dependencies": { - "@hyperlane-xyz/core": "3.7.0", - "@hyperlane-xyz/sdk": "3.7.0", + "@hyperlane-xyz/core": "3.8.0", + "@hyperlane-xyz/sdk": "3.8.0", "@openzeppelin/contracts-upgradeable": "^4.9.3", "ethers": "^5.7.2" }, diff --git a/typescript/infra/CHANGELOG.md b/typescript/infra/CHANGELOG.md index 23c8734dc8..3cf7094b89 100644 --- a/typescript/infra/CHANGELOG.md +++ b/typescript/infra/CHANGELOG.md @@ -1,5 +1,40 @@ # @hyperlane-xyz/infra +## 3.8.0 + +### Minor Changes + +- 9681df08d: Remove support for goerli networks (including optimismgoerli, arbitrumgoerli, lineagoerli and polygonzkevmtestnet) +- 9681df08d: 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. + +### Patch Changes + +- 9681df08d: Removed basegoerli and moonbasealpha testnets +- 9681df08d: Add logos for plume to SDK +- 9681df08d: TestRecipient as part of core deployer +- 9681df08d: Update viction validator set +- 9681df08d: Patch transfer ownership in hook deployer +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] + - @hyperlane-xyz/sdk@3.8.0 + - @hyperlane-xyz/helloworld@3.8.0 + - @hyperlane-xyz/utils@3.8.0 + ## 3.7.0 ### Minor Changes diff --git a/typescript/infra/package.json b/typescript/infra/package.json index cd81257e2f..98b814d8ff 100644 --- a/typescript/infra/package.json +++ b/typescript/infra/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/infra", "description": "Infrastructure utilities for the Hyperlane Network", - "version": "3.7.0", + "version": "3.8.0", "dependencies": { "@arbitrum/sdk": "^3.0.0", "@aws-sdk/client-iam": "^3.74.0", @@ -12,9 +12,9 @@ "@ethersproject/experimental": "^5.7.0", "@ethersproject/hardware-wallets": "^5.7.0", "@ethersproject/providers": "^5.7.2", - "@hyperlane-xyz/helloworld": "3.7.0", - "@hyperlane-xyz/sdk": "3.7.0", - "@hyperlane-xyz/utils": "3.7.0", + "@hyperlane-xyz/helloworld": "3.8.0", + "@hyperlane-xyz/sdk": "3.8.0", + "@hyperlane-xyz/utils": "3.8.0", "@nomiclabs/hardhat-etherscan": "^3.0.3", "@safe-global/api-kit": "^1.3.0", "@safe-global/protocol-kit": "^1.2.0", diff --git a/typescript/sdk/CHANGELOG.md b/typescript/sdk/CHANGELOG.md index 3fcc771222..5df94f24e0 100644 --- a/typescript/sdk/CHANGELOG.md +++ b/typescript/sdk/CHANGELOG.md @@ -1,5 +1,39 @@ # @hyperlane-xyz/sdk +## 3.8.0 + +### Minor Changes + +- 9681df08d: **New Feature**: Add transaction fee estimators to the SDK + **Breaking change**: Token Adapter `quoteGasPayment` method renamed to `quoteTransferRemoteGas` for clarity. +- 9681df08d: Remove support for goerli networks (including optimismgoerli, arbitrumgoerli, lineagoerli and polygonzkevmtestnet) +- 9681df08d: 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. + +- 9681df08d: 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`. + +### Patch Changes + +- 9681df08d: Support configuring non-EVM IGP destinations +- 9681df08d: Removed basegoerli and moonbasealpha testnets +- 9681df08d: Add logos for plume to SDK +- 9681df08d: TestRecipient as part of core deployer +- 9681df08d: Update viction validator set +- 9681df08d: Minor fixes for SDK cosmos logos +- 9681df08d: Implement message id extraction for CosmWasmCoreAdapter +- 9681df08d: Patch transfer ownership in hook deployer +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] +- Updated dependencies [9681df08d] + - @hyperlane-xyz/core@3.8.0 + - @hyperlane-xyz/utils@3.8.0 + ## 3.7.0 ### Minor Changes diff --git a/typescript/sdk/package.json b/typescript/sdk/package.json index 35a16d961a..6f20bd10d3 100644 --- a/typescript/sdk/package.json +++ b/typescript/sdk/package.json @@ -1,12 +1,12 @@ { "name": "@hyperlane-xyz/sdk", "description": "The official SDK for the Hyperlane Network", - "version": "3.7.0", + "version": "3.8.0", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.31.3", "@cosmjs/stargate": "^0.31.3", - "@hyperlane-xyz/core": "3.7.0", - "@hyperlane-xyz/utils": "3.7.0", + "@hyperlane-xyz/core": "3.8.0", + "@hyperlane-xyz/utils": "3.8.0", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.0", "@types/coingecko-api": "^1.0.10", diff --git a/typescript/utils/CHANGELOG.md b/typescript/utils/CHANGELOG.md index 781d871fff..1609e95789 100644 --- a/typescript/utils/CHANGELOG.md +++ b/typescript/utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @hyperlane-xyz/utils +## 3.8.0 + +### Minor Changes + +- 9681df08d: 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`. + ## 3.7.0 ## 3.6.2 diff --git a/typescript/utils/package.json b/typescript/utils/package.json index 8e73026953..56ad3ed850 100644 --- a/typescript/utils/package.json +++ b/typescript/utils/package.json @@ -1,7 +1,7 @@ { "name": "@hyperlane-xyz/utils", "description": "General utilities and types for the Hyperlane network", - "version": "3.7.0", + "version": "3.8.0", "dependencies": { "@cosmjs/encoding": "^0.31.3", "@solana/web3.js": "^1.78.0", diff --git a/yarn.lock b/yarn.lock index e7f51888e5..4c242d4937 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4714,8 +4714,8 @@ __metadata: version: 0.0.0-use.local resolution: "@hyperlane-xyz/cli@workspace:typescript/cli" dependencies: - "@hyperlane-xyz/sdk": "npm:3.7.0" - "@hyperlane-xyz/utils": "npm:3.7.0" + "@hyperlane-xyz/sdk": "npm:3.8.0" + "@hyperlane-xyz/utils": "npm:3.8.0" "@inquirer/prompts": "npm:^3.0.0" "@types/mocha": "npm:^10.0.1" "@types/node": "npm:^18.14.5" @@ -4741,12 +4741,28 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/core@npm:3.7.0, @hyperlane-xyz/core@workspace:solidity": +"@hyperlane-xyz/core@npm:3.7.0": + version: 3.7.0 + resolution: "@hyperlane-xyz/core@npm:3.7.0" + dependencies: + "@eth-optimism/contracts": "npm:^0.6.0" + "@hyperlane-xyz/utils": "npm:3.7.0" + "@openzeppelin/contracts": "npm:^4.9.3" + "@openzeppelin/contracts-upgradeable": "npm:^v4.9.3" + peerDependencies: + "@ethersproject/abi": "*" + "@ethersproject/providers": "*" + "@types/sinon-chai": "*" + checksum: efa01d943dd5b67830bb7244291c8ba9849472e804dff589463de76d3c03e56bc8d62454b575a6621aa1b8b53cc0d1d3b752a83d34f4b328ecd85e1ff23230d5 + languageName: node + linkType: hard + +"@hyperlane-xyz/core@npm:3.8.0, @hyperlane-xyz/core@workspace:solidity": version: 0.0.0-use.local resolution: "@hyperlane-xyz/core@workspace:solidity" dependencies: "@eth-optimism/contracts": "npm:^0.6.0" - "@hyperlane-xyz/utils": "npm:3.7.0" + "@hyperlane-xyz/utils": "npm:3.8.0" "@nomiclabs/hardhat-ethers": "npm:^2.2.1" "@nomiclabs/hardhat-waffle": "npm:^2.0.6" "@openzeppelin/contracts": "npm:^4.9.3" @@ -4773,12 +4789,12 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/helloworld@npm:3.7.0, @hyperlane-xyz/helloworld@workspace:typescript/helloworld": +"@hyperlane-xyz/helloworld@npm:3.8.0, @hyperlane-xyz/helloworld@workspace:typescript/helloworld": version: 0.0.0-use.local resolution: "@hyperlane-xyz/helloworld@workspace:typescript/helloworld" dependencies: - "@hyperlane-xyz/core": "npm:3.7.0" - "@hyperlane-xyz/sdk": "npm:3.7.0" + "@hyperlane-xyz/core": "npm:3.8.0" + "@hyperlane-xyz/sdk": "npm:3.8.0" "@nomiclabs/hardhat-ethers": "npm:^2.2.1" "@nomiclabs/hardhat-waffle": "npm:^2.0.6" "@openzeppelin/contracts-upgradeable": "npm:^4.9.3" @@ -4823,9 +4839,9 @@ __metadata: "@ethersproject/experimental": "npm:^5.7.0" "@ethersproject/hardware-wallets": "npm:^5.7.0" "@ethersproject/providers": "npm:^5.7.2" - "@hyperlane-xyz/helloworld": "npm:3.7.0" - "@hyperlane-xyz/sdk": "npm:3.7.0" - "@hyperlane-xyz/utils": "npm:3.7.0" + "@hyperlane-xyz/helloworld": "npm:3.8.0" + "@hyperlane-xyz/sdk": "npm:3.8.0" + "@hyperlane-xyz/utils": "npm:3.8.0" "@nomiclabs/hardhat-ethers": "npm:^2.2.1" "@nomiclabs/hardhat-etherscan": "npm:^3.0.3" "@nomiclabs/hardhat-waffle": "npm:^2.0.6" @@ -4875,14 +4891,42 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/sdk@npm:3.7.0, @hyperlane-xyz/sdk@workspace:typescript/sdk": - version: 0.0.0-use.local - resolution: "@hyperlane-xyz/sdk@workspace:typescript/sdk" +"@hyperlane-xyz/sdk@npm:3.7.0": + version: 3.7.0 + resolution: "@hyperlane-xyz/sdk@npm:3.7.0" dependencies: "@cosmjs/cosmwasm-stargate": "npm:^0.31.3" "@cosmjs/stargate": "npm:^0.31.3" "@hyperlane-xyz/core": "npm:3.7.0" "@hyperlane-xyz/utils": "npm:3.7.0" + "@solana/spl-token": "npm:^0.3.8" + "@solana/web3.js": "npm:^1.78.0" + "@types/coingecko-api": "npm:^1.0.10" + "@types/debug": "npm:^4.1.7" + "@wagmi/chains": "npm:^1.8.0" + bignumber.js: "npm:^9.1.1" + coingecko-api: "npm:^1.0.10" + cosmjs-types: "npm:^0.9.0" + cross-fetch: "npm:^3.1.5" + debug: "npm:^4.3.4" + ethers: "npm:^5.7.2" + viem: "npm:^1.20.0" + zod: "npm:^3.21.2" + peerDependencies: + "@ethersproject/abi": "*" + "@ethersproject/providers": "*" + checksum: b124a42f34502c4dad4127723d345158f592056d7e60e17d87c84bf81664ead20232ffaff66e6c21968dfd5693ba5122910fbcaa6b7db5b05fdd5d2051592835 + languageName: node + linkType: hard + +"@hyperlane-xyz/sdk@npm:3.8.0, @hyperlane-xyz/sdk@workspace:typescript/sdk": + version: 0.0.0-use.local + resolution: "@hyperlane-xyz/sdk@workspace:typescript/sdk" + dependencies: + "@cosmjs/cosmwasm-stargate": "npm:^0.31.3" + "@cosmjs/stargate": "npm:^0.31.3" + "@hyperlane-xyz/core": "npm:3.8.0" + "@hyperlane-xyz/utils": "npm:3.8.0" "@nomiclabs/hardhat-ethers": "npm:^2.2.1" "@nomiclabs/hardhat-waffle": "npm:^2.0.6" "@solana/spl-token": "npm:^0.3.8" @@ -4920,7 +4964,19 @@ __metadata: languageName: unknown linkType: soft -"@hyperlane-xyz/utils@npm:3.7.0, @hyperlane-xyz/utils@workspace:typescript/utils": +"@hyperlane-xyz/utils@npm:3.7.0": + version: 3.7.0 + resolution: "@hyperlane-xyz/utils@npm:3.7.0" + dependencies: + "@cosmjs/encoding": "npm:^0.31.3" + "@solana/web3.js": "npm:^1.78.0" + bignumber.js: "npm:^9.1.1" + ethers: "npm:^5.7.2" + checksum: c76f36913c572702b9dfe22fd868db6fed01c0da9485319e33e8d00a6b8a1bfdcecb5f61c8a3fd8ccbef0b36809e8055db62d75d0c6759d5e079ee330586bcd1 + languageName: node + linkType: hard + +"@hyperlane-xyz/utils@npm:3.8.0, @hyperlane-xyz/utils@workspace:typescript/utils": version: 0.0.0-use.local resolution: "@hyperlane-xyz/utils@workspace:typescript/utils" dependencies: