The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/solidity/contracts/PackageVersioned.sol

12 lines
286 B

// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
/**
* @title PackageVersioned
* @notice Package version getter for contracts
**/
abstract contract PackageVersioned {
// GENERATED CODE - DO NOT EDIT
Version Packages (#4830) This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @hyperlane-xyz/sdk@7.0.0 ### Major Changes - f48cf8766: Upgrade Viem to 2.2 and Solana Web3 to 1.9 Rename `chainMetadataToWagmiChain` to `chainMetadataToViemChain` - 5f41b1134: Remove getCoingeckoTokenPrices (use CoinGeckoTokenPriceGetter instead) ### Minor Changes - bbb970a44: Redeploy to alephzeroevmmainnet, chilizmainnet, flowmainnet, immutablezkevmmainnet, metal, polynomialfi, rarichain, rootstockmainnet, superpositionmainnet. Deploy to flame, prom. - fa424826c: Add support for updating the mailbox proxy admin owner - 40d59a2f4: Deploy to abstracttestnet and treasuretopaz - 0264f709e: Deploy to alephzeroevmtestnet, update deployment for arcadiatestnet2. - 836060240: Add storage based multisig ISM types - f24835438: Added coinGeckoId as an optional property of the TokenConfigSchema ### Patch Changes - ba0122279: feat: use message context in hook reader IGP derivation - Updated dependencies [f48cf8766] - Updated dependencies [836060240] - Updated dependencies [e6f9d5c4f] - @hyperlane-xyz/utils@7.0.0 - @hyperlane-xyz/core@5.8.0 ## @hyperlane-xyz/utils@7.0.0 ### Major Changes - f48cf8766: Upgrade Viem to 2.2 and Solana Web3 to 1.9 Rename `chainMetadataToWagmiChain` to `chainMetadataToViemChain` ### Patch Changes - e6f9d5c4f: Added a mustGet helper ## @hyperlane-xyz/core@5.8.0 ### Minor Changes - 836060240: Add storage based multisig ISM types ### Patch Changes - Updated dependencies [f48cf8766] - Updated dependencies [e6f9d5c4f] - @hyperlane-xyz/utils@7.0.0 ## @hyperlane-xyz/cli@7.0.0 ### Minor Changes - fa424826c: Add support for updating the mailbox proxy admin owner - 836060240: Add storage based multisig ISM types ### Patch Changes - Updated dependencies [bbb970a44] - Updated dependencies [fa424826c] - Updated dependencies [f48cf8766] - Updated dependencies [40d59a2f4] - Updated dependencies [0264f709e] - Updated dependencies [836060240] - Updated dependencies [ba0122279] - Updated dependencies [e6f9d5c4f] - Updated dependencies [f24835438] - Updated dependencies [5f41b1134] - @hyperlane-xyz/sdk@7.0.0 - @hyperlane-xyz/utils@7.0.0 ## @hyperlane-xyz/helloworld@7.0.0 ### Patch Changes - Updated dependencies [bbb970a44] - Updated dependencies [fa424826c] - Updated dependencies [f48cf8766] - Updated dependencies [40d59a2f4] - Updated dependencies [0264f709e] - Updated dependencies [836060240] - Updated dependencies [ba0122279] - Updated dependencies [f24835438] - Updated dependencies [5f41b1134] - @hyperlane-xyz/sdk@7.0.0 - @hyperlane-xyz/core@5.8.0 ## @hyperlane-xyz/widgets@7.0.0 ### Patch Changes - Updated dependencies [bbb970a44] - Updated dependencies [fa424826c] - Updated dependencies [f48cf8766] - Updated dependencies [40d59a2f4] - Updated dependencies [0264f709e] - Updated dependencies [836060240] - Updated dependencies [ba0122279] - Updated dependencies [e6f9d5c4f] - Updated dependencies [f24835438] - Updated dependencies [5f41b1134] - @hyperlane-xyz/sdk@7.0.0 - @hyperlane-xyz/utils@7.0.0 ## @hyperlane-xyz/infra@7.0.0 ### Minor Changes - fa424826c: Add support for updating the mailbox proxy admin owner ### Patch Changes - Updated dependencies [bbb970a44] - Updated dependencies [fa424826c] - Updated dependencies [f48cf8766] - Updated dependencies [40d59a2f4] - Updated dependencies [0264f709e] - Updated dependencies [836060240] - Updated dependencies [ba0122279] - Updated dependencies [e6f9d5c4f] - Updated dependencies [f24835438] - Updated dependencies [5f41b1134] - @hyperlane-xyz/sdk@7.0.0 - @hyperlane-xyz/utils@7.0.0 - @hyperlane-xyz/helloworld@7.0.0 ## @hyperlane-xyz/ccip-server@7.0.0 ## @hyperlane-xyz/github-proxy@7.0.0 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
3 weeks ago
string public constant PACKAGE_VERSION = "5.8.0";
}