Skip to content

v13.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Mar 21:42
· 108 commits to main since this release
4323c57

13.0.0 (2023-03-09)

⚠ BREAKING CHANGES

  • transfers: removes TransferInStatusPreTx, TransferInStatusPostTx,
    and TransferOutStatus. This is not strictly necessary, but to keep them
    we'd need to maintain parallel lists of transfer statuses between them
    and the zod schemas, which could lead to bugs. If one of these enums was
    needed for typing, they could be replaced with z.infer<typeof transferInStatusPostTxSchema>, for example. If one of the enums was
    needed for iterating over, one could use
    transferInStatusPostTxSchema.enum to get an iterable for the set of
    transfer statuses that were in the enum.

Bug Fixes

  • transfers: make transfer status schemas compatible with TransferStatus enum (#136) (4323c57)