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 (#4848) 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/cli@7.1.0 ### Minor Changes - 5db46bd31: Implements persistent relayer for use in CLI ### Patch Changes - Updated dependencies [6f2d50fbd] - Updated dependencies [1159e0f4b] - Updated dependencies [0e285a443] - Updated dependencies [ff2b4e2fb] - Updated dependencies [0e285a443] - Updated dependencies [5db46bd31] - Updated dependencies [0cd65c571] - @hyperlane-xyz/sdk@7.1.0 - @hyperlane-xyz/utils@7.1.0 ## @hyperlane-xyz/sdk@7.1.0 ### Minor Changes - 6f2d50fbd: Updated Fraxtal set to include Superlane validators, updated Flow set - 1159e0f4b: Enroll new validators for alephzeroevmmainnet, chilizmainnet, flowmainnet, immutablezkevmmainnet, metal, polynomialfi, rarichain, rootstockmainnet, superpositionmainnet, flame, prom, inevm. - ff2b4e2fb: Added helpers to Token and token adapters to get bridged supply of tokens" - 0e285a443: Add a validateZodResult util function - 5db46bd31: Implements persistent relayer for use in CLI - 0cd65c571: Add chainMetadataToCosmosChain function ### Patch Changes - Updated dependencies [0e285a443] - @hyperlane-xyz/utils@7.1.0 - @hyperlane-xyz/core@5.8.1 ## @hyperlane-xyz/utils@7.1.0 ### Minor Changes - 0e285a443: Add an isRelativeUrl function ## @hyperlane-xyz/widgets@7.1.0 ### Minor Changes - 0cd65c571: Add multi-protocol wallet integration hooks and types - 186663505: New Icons Updated modal with new props Updated storybook for modal and icon list - 0e285a443: Add various utility hooks: useIsSsr, useTimeout, useDebounce, useInterval - 92b5fe777: Props and style update: IconButton and Tooltip New Icons: XCircleIcon and SwapIcon ### Patch Changes - 794501ba6: Prevent propagation of form submissions from ChainSearchMenu - Updated dependencies [6f2d50fbd] - Updated dependencies [1159e0f4b] - Updated dependencies [0e285a443] - Updated dependencies [ff2b4e2fb] - Updated dependencies [0e285a443] - Updated dependencies [5db46bd31] - Updated dependencies [0cd65c571] - @hyperlane-xyz/sdk@7.1.0 - @hyperlane-xyz/utils@7.1.0 ## @hyperlane-xyz/core@5.8.1 ### Patch Changes - Updated dependencies [0e285a443] - @hyperlane-xyz/utils@7.1.0 ## @hyperlane-xyz/helloworld@7.1.0 ### Patch Changes - Updated dependencies [6f2d50fbd] - Updated dependencies [1159e0f4b] - Updated dependencies [ff2b4e2fb] - Updated dependencies [0e285a443] - Updated dependencies [5db46bd31] - Updated dependencies [0cd65c571] - @hyperlane-xyz/sdk@7.1.0 - @hyperlane-xyz/core@5.8.1 ## @hyperlane-xyz/infra@7.1.0 ### Minor Changes - 5db46bd31: Implements persistent relayer for use in CLI ### Patch Changes - Updated dependencies [6f2d50fbd] - Updated dependencies [1159e0f4b] - Updated dependencies [0e285a443] - Updated dependencies [ff2b4e2fb] - Updated dependencies [0e285a443] - Updated dependencies [5db46bd31] - Updated dependencies [0cd65c571] - @hyperlane-xyz/sdk@7.1.0 - @hyperlane-xyz/utils@7.1.0 - @hyperlane-xyz/helloworld@7.1.0 ## @hyperlane-xyz/ccip-server@7.1.0 ## @hyperlane-xyz/github-proxy@7.1.0 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 week ago
string public constant PACKAGE_VERSION = "5.8.1";
}