Skip to content

Commit

Permalink
fix: trigger a release (#105)
Browse files Browse the repository at this point in the history
Trigger release

BREAKING CHANGE:
- Trigger breaking change release
  • Loading branch information
neilcampbell authored Jan 23, 2025
1 parent 71714e8 commit dcbf5f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/v3-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ if (subscribedTransaction['tx-type'] === TransactionType.axfer) {
console.log('assetId', subscribedTransaction['asset-transfer-transaction']['asset-id'])
}
// Result:
// assetId: 31566705
// assetId: 31566704

/**** After ****/
if (subscribedTransaction.txType === TransactionType.axfer) {
console.log('assetId', subscribedTransaction.assetTransferTransaction.assetId)
}
// Result:
// assetId: 31566705n <- this is now a bigint
// assetId: 31566704n <- this is now a bigint
```

- A fix was applied to the `intraRoundOffset` field. Previously, the calculation was only performed on the first level of inner transactions, nested inner transactions had the same `intraRoundOffset` as their parent transaction. Now, it's calculated for all levels of inner transactions.
Expand Down

0 comments on commit dcbf5f7

Please sign in to comment.