@layerzerolabs/lz-definitions 3.0.116 → 3.0.118
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 +13 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @layerzerolabs/lz-definitions
|
|
2
2
|
|
|
3
|
+
## 3.0.118
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c28a672: Upload Aptos V1 Executor V2 Deployments
|
|
8
|
+
- 2fba4c6: fix(solana-sdk): handle BlockedMessageLib program ID correctly in endpoint sdk. Prevent undefined program IDs by adding special case handling for BlockedMessageLib since it doesn't initialize its PDA
|
|
9
|
+
|
|
10
|
+
## 3.0.117
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- fd54ee9: fix bugs that caused TypeScript SDK to behave differently from Rust contracts.
|
|
15
|
+
|
|
3
16
|
## 3.0.116
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -3122,7 +3122,7 @@ function isSolanaChain(chain) {
|
|
|
3122
3122
|
function isInitiaChain(chain) {
|
|
3123
3123
|
return chainToChainType(chain) === "initia" /* INITIA */;
|
|
3124
3124
|
}
|
|
3125
|
-
function
|
|
3125
|
+
function isPlaceholderChain(chain) {
|
|
3126
3126
|
return chainToChainType(chain) === "placeholder" /* PLACEHOLDER */;
|
|
3127
3127
|
}
|
|
3128
3128
|
function isChain(value) {
|
|
@@ -3253,8 +3253,8 @@ exports.isChain = isChain;
|
|
|
3253
3253
|
exports.isEvmChain = isEvmChain;
|
|
3254
3254
|
exports.isInitiaChain = isInitiaChain;
|
|
3255
3255
|
exports.isNetworkEndpointIdSupported = isNetworkEndpointIdSupported;
|
|
3256
|
+
exports.isPlaceholderChain = isPlaceholderChain;
|
|
3256
3257
|
exports.isSolanaChain = isSolanaChain;
|
|
3257
|
-
exports.isSuiChain = isSuiChain;
|
|
3258
3258
|
exports.isTronChain = isTronChain;
|
|
3259
3259
|
exports.isZKSyncBasedChain = isZKSyncBasedChain;
|
|
3260
3260
|
exports.networkToChain = networkToChain;
|