@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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @layerzerolabs/lz-ton-sdk-v2
2
2
 
3
+ ## 3.0.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fa7127: update the counter confirmations for polygon
8
+ - 270f705: endpoints
9
+
3
10
  ## 3.0.24
4
11
 
5
12
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "Dvn",
3
3
  "network": "ton-sandbox-local",
4
- "address": "EQBwwtoupvAJYOuO8WD-SpNo2IT0h9gsGZ6PLMoeprjNEOd8",
4
+ "address": "EQD14EUqrDpleDcXgdyX-Imof_WNDAwCAyBNO_dBuvl_i1-O",
5
5
  "compatibleVersions": [
6
6
  "v2"
7
7
  ],
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "DvnProxy",
3
3
  "network": "ton-sandbox-local",
4
- "address": "EQA4PIID25GnQsKNROA5sbpGEHxIzT37WyHT__KqVjvuwgHY",
4
+ "address": "EQBnhznKY0ufQkns18EIM9E6tFf9_iYhireggHbfWUvwh-Uw",
5
5
  "compatibleVersions": [
6
6
  "v2"
7
7
  ],
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "Dvn",
3
3
  "network": "ton-testnet",
4
- "address": "EQAYSgj9-G7SaibkiFi17lMrTrG0TfShlhfeFC8nAhFmO9Hx",
4
+ "address": "EQAhnv7RSweFt3FwL0E_E09IBbJU33za-OY5nN90ljmc1GOP",
5
5
  "compatibleVersions": [
6
6
  "v2"
7
7
  ],
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "DvnProxy",
3
3
  "network": "ton-testnet",
4
- "address": "EQBCpGP7eyXGDAB6pmIVqf2v5M6GdoL63F_ZhqAXBFJY5rmT",
4
+ "address": "EQCQkM1soj1YlA3MQ-LSBGpB78mCc5Ygtdt8TVRMke0nkugL",
5
5
  "compatibleVersions": [
6
6
  "v2"
7
7
  ],
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.BigInt(256), value) : rawCell.beginParse().loadDictDirect($cjs$_ton_core.Dictionary.Keys.BigInt(256), value);
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
- async function createVerifierDictSet(verifiers, wrapper) {
16485
- const verifierDict = LzDict.empty();
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
- await verifierDict.set(publicKeyToHash(verifier), $cjs$_ton_core.beginCell().endCell(), wrapper);
16487
+ verifierDict.set(publicKeyToHash(verifier), $cjs$_ton_core.beginCell().endCell());
16488
16488
  }
16489
- return verifierDict.asCell();
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