@stellar-expert/tx-meta-effects-parser 7.0.0-rc.17 → 7.0.0-rc.18

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": "7.0.0-rc.17",
3
+ "version": "7.0.0-rc.18",
4
4
  "description": "Low-level effects parser for Stellar transaction results and meta XDR",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -242,7 +242,7 @@ function parseOfferEntry(value) {
242
242
  asset: [xdrParseAsset(offerEntryXdr.selling()), xdrParseAsset(offerEntryXdr.buying())],
243
243
  amount: offerEntryXdr.amount().toString(),
244
244
  price: xdrParsePrice(rprice),
245
- rprice,
245
+ rprice: rprice._attributes,
246
246
  flags: offerEntryXdr.flags()
247
247
  }
248
248
  return data