@layerzerolabs/lz-ton-sdk-v2 3.0.24 → 3.0.25
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 +7 -0
- package/deployments/ton-sandbox-local/Dvn.json +1 -1
- package/deployments/ton-sandbox-local/DvnProxy.json +1 -1
- package/deployments/ton-testnet/Dvn.json +1 -1
- package/deployments/ton-testnet/DvnProxy.json +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -10638,7 +10638,7 @@ var decodeClass = (name, cell) => {
|
|
|
10638
10638
|
fieldName,
|
|
10639
10639
|
{
|
|
10640
10640
|
getDict: (value) => {
|
|
10641
|
-
return rawCell.bits.length === 0 ? $cjs$_ton_core.Dictionary.empty($cjs$_ton_core.Dictionary.Keys.
|
|
10641
|
+
return rawCell.bits.length === 0 ? $cjs$_ton_core.Dictionary.empty($cjs$_ton_core.Dictionary.Keys.BigUint(256), value) : rawCell.beginParse().loadDictDirect($cjs$_ton_core.Dictionary.Keys.BigUint(256), value);
|
|
10642
10642
|
},
|
|
10643
10643
|
rawCell
|
|
10644
10644
|
}
|
|
@@ -16481,12 +16481,12 @@ function publicKeyToHash(publicKey) {
|
|
|
16481
16481
|
const publicKeyHash = BigInt("0x" + publicKeyCell.hash().toString("hex"));
|
|
16482
16482
|
return publicKeyHash;
|
|
16483
16483
|
}
|
|
16484
|
-
|
|
16485
|
-
const verifierDict =
|
|
16484
|
+
function createVerifierDictSet(verifiers) {
|
|
16485
|
+
const verifierDict = $cjs$_ton_core.Dictionary.empty($cjs$_ton_core.Dictionary.Keys.BigUint(256), $cjs$_ton_core.Dictionary.Values.Cell());
|
|
16486
16486
|
for (const verifier of verifiers) {
|
|
16487
|
-
|
|
16487
|
+
verifierDict.set(publicKeyToHash(verifier), $cjs$_ton_core.beginCell().endCell());
|
|
16488
16488
|
}
|
|
16489
|
-
return verifierDict.
|
|
16489
|
+
return $cjs$_ton_core.beginCell().storeDictDirect(verifierDict, $cjs$_ton_core.Dictionary.Keys.BigUint(256), $cjs$_ton_core.Dictionary.Values.Cell()).endCell();
|
|
16490
16490
|
}
|
|
16491
16491
|
/*! Bundled license information:
|
|
16492
16492
|
|