Releases: delvtech/hyperdrive-frontend
Releases · delvtech/hyperdrive-frontend
v1.13.0
What's Changed
- Add negative numbers support to fixed-point, update crates. by @ryangoree in #1398
- Add
kind
to appconfig by @DannyDelott in #1399 - Simplifies Loading State, adds APR Label by @jackburrus in #1397
- chore: version packages by @github-actions in #1319
- update EtherFi historicalRatePeriod to 30 days by @MazyGio in #1400
- Add GnosisChain to appconfig by @DannyDelott in #1401
- Cleanup appconfig selectors, delete dead code by @DannyDelott in #1402
- Cleanup
fixed-point-wasm
usage by @ryangoree in #1404 - Rename findBaseToken to findToken by @DannyDelott in #1403
- remove bridge flag by @sentilesdal in #1406
- Move
baseTokenFallback
from YieldSourceConfig to HyperdriveConfig by @DannyDelott in #1407 - Switch to findBaseToken in the frontend by @DannyDelott in #1409
- Adds Multichain appconfig support by @jackburrus in #1410
- Add Gnosis to appconfig by @DannyDelott in #1411
- Show link to All Pools and Bridge pages in navbar by @DannyDelott in #1408
- Add
chainId
to findToken selector by @DannyDelott in #1415 - Adds chainId to wagmi hooks by @jackburrus in #1416
- Add
chainId
to anywhere that hyperdrive addresses are used by @DannyDelott in #1417 - Show variable apy instead of short rate in Yield stats by @DannyDelott in #1418
- Rebuild appconfig for gnosis fork by @DannyDelott in #1419
- Add public gnosis chain support by @DannyDelott in #1420
- Add gnosis script by @DannyDelott in #1421
- Add dailyAverageBlocks to chain in appconfig by @DannyDelott in #1422
- adds chainId to useBalance by @jackburrus in #1423
- Add
earliestBlock
options, bumpevm-client-viem
for more efficientgetEvents
by @ryangoree in #1424 - Fix token fiat prices for Gnosis tokens by @DannyDelott in #1426
- Show
NEW
label if pool is less than 1 day old by @DannyDelott in #1427 - Add missing NEW label by @DannyDelott in #1428
Full Changelog: v1.12.0...v1.13.0
@delvtech/[email protected]
Patch Changes
- 5eaa737: Bump evm-client-viem version to 0.6.3 to fix bug causing event args to not be sent in ethGetLogs
@delvtech/[email protected]
Patch Changes
- 8e77c04: Add
earliestBlock
option toReadModel
and bumpevm-client-viem
version to useeth_getLogs
rather thaneth_getFilterLogs
. - Updated dependencies [8e77c04]
- @delvtech/[email protected]
@delvtech/[email protected]
Patch Changes
- 8e77c04: Add
earliestBlock
option toReadModel
and bumpevm-client-viem
version to useeth_getLogs
rather thaneth_getFilterLogs
. - Updated dependencies [4e841fc]
- @delvtech/[email protected]
@delvtech/[email protected]
Patch Changes
- 4e841fc: Update artifacts to v1.0.18
@delvtech/[email protected]
@delvtech/[email protected]
Major Changes
- b26e00b: 🚨 Breaking Change: Upgraded to Hyperdrive
v1.0.16
. The updated models, e.g.ReadHyperdrive
are no longer compatible for<=1.0.14
contracts. To continue using the SDK with<=1.0.14
contracts, import the corresponding model from the/v1.0.14
import path. E.g.,import { ReadHyperdrive_v1_0_14 } from "@delvtech/hyperdrive-viem/v1.0.14"
.
Patch Changes
- Updated dependencies [19814a4]
- Updated dependencies [b26e00b]
- @delvtech/[email protected]
@delvtech/[email protected]
Major Changes
- b26e00b: 🚨 Breaking Change: Upgraded to Hyperdrive
v1.0.16
. The updated models, e.g.ReadHyperdrive
are no longer compatible for<=1.0.14
contracts. To continue using the SDK with<=1.0.14
contracts, import the corresponding model from the/v1.0.14
import path. E.g.,import { ReadHyperdrive_v1_0_14 } from "@delvtech/hyperdrive-viem/v1.0.14"
.
Minor Changes
- 19814a4: Add getKind to ReadHyperdrive
Patch Changes
- Updated dependencies [c5a369d]
- Updated dependencies [b26e00b]
- Updated dependencies [eefe0fc]
- Updated dependencies [c5a369d]
- @delvtech/[email protected]
- @delvtech/[email protected]
- @delvtech/[email protected]
@delvtech/[email protected]
@delvtech/[email protected]
Patch Changes
- c5a369d:
- Added support for negative numbers.
- Added support for base prefixes in string values, e.g.,
parseFixed("0xFF")
orfixed("0xFFFFFFFFFFFFFFFF")
- Changed the primitive value (the value returned from
.valueOf()
) to be the string representation of the fixed point. Previously, the underlying bigint was returned. This makes type coercion more straight forward and makes it possible to use the+
and-
unary operators with fixed-point instances as a shorthand for.toNumber()
, e.g.,+parseFixed(1.5) === 1.5
.
- c5a369d: Bumped deps