@stellar-expert/tx-meta-effects-parser 5.0.0-beta12 → 5.0.0-beta13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-expert/tx-meta-effects-parser",
3
- "version": "5.0.0-beta12",
3
+ "version": "5.0.0-beta13",
4
4
  "description": "Low-level effects parser for Stellar transaction results and meta XDR",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -119,7 +119,7 @@ class EventsAnalyzer {
119
119
  const amount = processEventBodyValue(body.data())
120
120
  if (!this.matchInvocationEffect(e =>
121
121
  (e.function === 'transfer' && matchArrays([from, to, amount], e.args)) ||
122
- (e.function === 'transferFrom' && matchArrays([undefined, from, to, amount], e.args))
122
+ (e.function === 'transfer_from' && matchArrays([undefined, from, to, amount], e.args))
123
123
  ))
124
124
  return
125
125
  const isSorobanAsset = isContractAddress(asset)