@layerzerolabs/lz-ton-sdk-v2 3.0.95 → 3.0.96

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-ton-sdk-v2
2
2
 
3
+ ## 3.0.96
4
+
5
+ ### Patch Changes
6
+
7
+ - 91d573e: ton sdk cleanup
8
+
3
9
  ## 3.0.95
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -16694,9 +16694,9 @@ var BaseEventHandler = class {
16694
16694
  eventObjects: []
16695
16695
  };
16696
16696
  }
16697
- async postProcessSuccess(event, tx) {
16697
+ async postProcessSuccess(_event, _tx) {
16698
16698
  }
16699
- async postProcessFailure(event, tx) {
16699
+ async postProcessFailure(_event, _tx) {
16700
16700
  }
16701
16701
  async addCurrentEventsToAllEvents(results, contract) {
16702
16702
  for (let i = 0; i < results.transactions.length; i++) {
@@ -16737,7 +16737,7 @@ var LzEventHandler = class extends BaseEventHandler {
16737
16737
  packetsSent: []
16738
16738
  };
16739
16739
  }
16740
- async postProcessSuccess(event, tx) {
16740
+ async postProcessSuccess(event, _tx) {
16741
16741
  if (event.topic === "Channel::event::PACKET_SENT" && this.isMdPacketSent(event.body)) {
16742
16742
  this.allVictories.packetsSent.push(event.body);
16743
16743
  }