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 (#4648) 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@5.5.0 ### Minor Changes - 2afc484a2: Break out BlockExplorerSchema and export separately Migrate RPC + Explorer health tests back to SDK from registry - 3254472e0: Add deployments for chains: immutablezkevm, rari, rootstock, alephzeroevm, chiliz, lumia, and superposition - 6176c9861: Add opstack, polygoncdk, polkadotsubstrate and zksync to ChainTechnicalStack enum ### Patch Changes - fcfe91113: Reuse SDK transaction typings in tx submitters - Updated dependencies [92c86cca6] - Updated dependencies [2afc484a2] - @hyperlane-xyz/core@5.4.1 - @hyperlane-xyz/utils@5.5.0 ## @hyperlane-xyz/utils@5.5.0 ### Minor Changes - 2afc484a2: Migrate fetchWithTimeout from widgets to utils Add objSlice function and improve types for objMerge Add isUrl function ## @hyperlane-xyz/widgets@5.5.0 ### Minor Changes - 2afc484a2: Create ChainSearchMenu and ChainDetailsMenu components Add required icon and button components Add persisted zustand store and hooks Add clipboard utility functions ### Patch Changes - Updated dependencies [2afc484a2] - Updated dependencies [2afc484a2] - Updated dependencies [3254472e0] - Updated dependencies [fcfe91113] - Updated dependencies [6176c9861] - @hyperlane-xyz/sdk@5.5.0 - @hyperlane-xyz/utils@5.5.0 ## @hyperlane-xyz/core@5.4.1 ### Patch Changes - 92c86cca6: Forward value from ICA router to proxy for multicall - Updated dependencies [2afc484a2] - @hyperlane-xyz/utils@5.5.0 ## @hyperlane-xyz/cli@5.5.0 ### Patch Changes - fcfe91113: Reuse SDK transaction typings in tx submitters - Updated dependencies [2afc484a2] - Updated dependencies [2afc484a2] - Updated dependencies [3254472e0] - Updated dependencies [fcfe91113] - Updated dependencies [6176c9861] - @hyperlane-xyz/sdk@5.5.0 - @hyperlane-xyz/utils@5.5.0 ## @hyperlane-xyz/helloworld@5.5.0 ### Patch Changes - Updated dependencies [92c86cca6] - Updated dependencies [2afc484a2] - Updated dependencies [3254472e0] - Updated dependencies [fcfe91113] - Updated dependencies [6176c9861] - @hyperlane-xyz/core@5.4.1 - @hyperlane-xyz/sdk@5.5.0 ## @hyperlane-xyz/infra@5.5.0 ### Patch Changes - Updated dependencies [2afc484a2] - Updated dependencies [2afc484a2] - Updated dependencies [3254472e0] - Updated dependencies [fcfe91113] - Updated dependencies [6176c9861] - @hyperlane-xyz/sdk@5.5.0 - @hyperlane-xyz/utils@5.5.0 - @hyperlane-xyz/helloworld@5.5.0 ## @hyperlane-xyz/ccip-server@5.5.0 ## @hyperlane-xyz/github-proxy@5.5.0 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2 months ago
string public constant PACKAGE_VERSION = "5.4.1";
}