@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 +6 -0
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +61 -4
- package/dist/index.d.ts +61 -4
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -16694,9 +16694,9 @@ var BaseEventHandler = class {
|
|
|
16694
16694
|
eventObjects: []
|
|
16695
16695
|
};
|
|
16696
16696
|
}
|
|
16697
|
-
async postProcessSuccess(
|
|
16697
|
+
async postProcessSuccess(_event, _tx) {
|
|
16698
16698
|
}
|
|
16699
|
-
async postProcessFailure(
|
|
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,
|
|
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
|
}
|