@layerzerolabs/lz-definitions 3.0.109 → 3.0.111-snapshots.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @layerzerolabs/lz-definitions
2
2
 
3
+ ## 3.0.110
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d22700: lzREAD libs on hyperliquid, ink, sonic and a few additional mainnets, also monad testnet"
8
+
3
9
  ## 3.0.109
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -3077,6 +3077,9 @@ function isSolanaChain(chain) {
3077
3077
  function isInitiaChain(chain) {
3078
3078
  return chainToChainType(chain) === "initia" /* INITIA */;
3079
3079
  }
3080
+ function isSuiChain(chain) {
3081
+ return chainToChainType(chain) === "placeholder" /* PLACEHOLDER */;
3082
+ }
3080
3083
  function isChain(value) {
3081
3084
  return Object.values(Chain).includes(value);
3082
3085
  }
@@ -3115,6 +3118,12 @@ var chainSpecConfig = {
3115
3118
  addressSizeInBytes: 32,
3116
3119
  decimals: 9
3117
3120
  }
3121
+ },
3122
+ ["placeholder" /* PLACEHOLDER */]: {
3123
+ default: {
3124
+ addressSizeInBytes: 32,
3125
+ decimals: 9
3126
+ }
3118
3127
  }
3119
3128
  };
3120
3129
  var ChainSpecs = class {
@@ -3200,6 +3209,7 @@ exports.isEvmChain = isEvmChain;
3200
3209
  exports.isInitiaChain = isInitiaChain;
3201
3210
  exports.isNetworkEndpointIdSupported = isNetworkEndpointIdSupported;
3202
3211
  exports.isSolanaChain = isSolanaChain;
3212
+ exports.isSuiChain = isSuiChain;
3203
3213
  exports.isTronChain = isTronChain;
3204
3214
  exports.isZKSyncBasedChain = isZKSyncBasedChain;
3205
3215
  exports.networkToChain = networkToChain;