Releases: osmosis-labs/osmojs
Releases · osmosis-labs/osmojs
apply connectComet for auto choose tm34 or tm37
uses connectComet
for auto choose tm34 or tm37
v16 and migrate to `BigInt`
BigInt
and inline protobuf reader/writer
This is a HUGE update! Now using the open standard BigInt
instead of Long
Additionally, we wrote our own proto reader/writer, well-tested, and purpose-built for Cosmos SDK protos and Telescope. We've inlined it to make it super efficient.
Breaking Changes
- You'll need to stop using
Long.fromString('1')
and instead using the nativeBigInt('1')
— use open standards instead of a 3rd party library! Anywhere you usedLong
you need to remove it and replace withBigInt
.
What's Changed
- removes need to depend on the
Long
type fromlong
library in any generated code - removes need to depend on the
protobuf/minimal
library in any generated code - use
BigInt
, upgrade to telescope 0.99 by @pyramation in #57
Full Changelog: https://github.com/osmosis-labs/osmojs/commits/[email protected]
v16 compiled by `tsc`
This is a minor bump because we changed the babel
build system to use the Typescript tsc
compiler instead.
What's Changed
- use
tsc
by @pyramation in #56
Full Changelog: https://github.com/osmosis-labs/osmojs/commits/[email protected]
Upgrades to Osmosis v16
upgrades the protos to v16
We upgraded the protos: #50
Breaking Changes
- In order to fix this bug, we've enabled
prototypes.typingsFormat.customTypes.useCosmosSDKDec
— please be aware for anyDec
types that you don't need to manage the 18 exponent issue for RPC responses now :)
What's Changed
- math lib by @marslavish in #31
- update doc for pulling submodules by @Zetazzz in #38
- e2e testing with Starship by @Anmol1696 in #36
- amino w concentrated liquidity upgrade by @pyramation in #43
- V16 by @pyramation in #52
New Contributors
- @marslavish made their first contribution in #31
- @Zetazzz made their first contribution in #38
Full Changelog: https://github.com/osmosis-labs/osmojs/commits/[email protected]