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 (#4816) 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@6.0.0 ### Major Changes - e3b97c455: Detangle assumption that chainId == domainId for EVM chains. Domain IDs and Chain Names are still unique, but chainId is no longer guaranteed to be a unique identifier. Domain ID is no longer an optional field and is now required for all chain metadata. ### Patch Changes - Updated dependencies [7b3b07900] - Updated dependencies [30d92c319] - Updated dependencies [e3b97c455] - @hyperlane-xyz/sdk@6.0.0 - @hyperlane-xyz/utils@6.0.0 ## @hyperlane-xyz/sdk@6.0.0 ### Major Changes - e3b97c455: Detangle assumption that chainId == domainId for EVM chains. Domain IDs and Chain Names are still unique, but chainId is no longer guaranteed to be a unique identifier. Domain ID is no longer an optional field and is now required for all chain metadata. ### Minor Changes - 7b3b07900: Support using apiKey for CoinGeckoTokenPriceGetter - 30d92c319: Add `collateralChainName` to Warp Reader. Partial refactor of fetchTokenConfig(). ### Patch Changes - Updated dependencies [e3b97c455] - @hyperlane-xyz/utils@6.0.0 - @hyperlane-xyz/core@5.7.1 ## @hyperlane-xyz/utils@6.0.0 ### Major Changes - e3b97c455: Detangle assumption that chainId == domainId for EVM chains. Domain IDs and Chain Names are still unique, but chainId is no longer guaranteed to be a unique identifier. Domain ID is no longer an optional field and is now required for all chain metadata. ## @hyperlane-xyz/widgets@6.0.0 ### Major Changes - e3b97c455: Detangle assumption that chainId == domainId for EVM chains. Domain IDs and Chain Names are still unique, but chainId is no longer guaranteed to be a unique identifier. Domain ID is no longer an optional field and is now required for all chain metadata. ### Patch Changes - Updated dependencies [7b3b07900] - Updated dependencies [30d92c319] - Updated dependencies [e3b97c455] - @hyperlane-xyz/sdk@6.0.0 - @hyperlane-xyz/utils@6.0.0 ## @hyperlane-xyz/core@5.7.1 ### Patch Changes - Updated dependencies [e3b97c455] - @hyperlane-xyz/utils@6.0.0 ## @hyperlane-xyz/helloworld@6.0.0 ### Patch Changes - Updated dependencies [7b3b07900] - Updated dependencies [30d92c319] - Updated dependencies [e3b97c455] - @hyperlane-xyz/sdk@6.0.0 - @hyperlane-xyz/core@5.7.1 ## @hyperlane-xyz/infra@6.0.0 ### Patch Changes - Updated dependencies [7b3b07900] - Updated dependencies [30d92c319] - Updated dependencies [e3b97c455] - @hyperlane-xyz/sdk@6.0.0 - @hyperlane-xyz/utils@6.0.0 - @hyperlane-xyz/helloworld@6.0.0 ## @hyperlane-xyz/ccip-server@6.0.0 ## @hyperlane-xyz/github-proxy@6.0.0 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
3 weeks ago
string public constant PACKAGE_VERSION = "5.7.1";
}