Skip to content

Releases: cryptechdev/neptune-api-v2-python

v0.6.0

17 Apr 22:51
0992ca8

Choose a tag to compare

0.6.0 (2026-04-17)

Full Changelog: v0.5.0...v0.6.0

Resource updates

  • markets.getTvl() replaced with markets.getSupply()
  • Extended TVL/Supply fields
  • Each market group now has dedicated supply info accessible where market lists occur
  • Market lists are now nested under an Overview object for each respective group (lend, borrow collaterals, borrow debts)
  • Renamed market state fields

Upgrade path

  • Replace markets.getTvl() calls with markets.getSupply(). Adjust existing tvl/supply fields as follows:
    • collateral_value -> borrow_collateral.non_receipt.balance
    • lend_value -> lend.principal
    • total_value -> tvl.tvl
  • Rename lending market state fields
    • principal_sum -> principal
  • Rename borrow collateral market state fields
    • collateral_sum -> shares
  • Rename borrow debt market state fields
    • balance_sum -> balance
    • principal_sum -> shares
  • Rename user borrow collateral fields
    • amount -> principal
  • Update fn calls for accessing market arrays, adding an addition level for contents, e.g:
    • markets.getOverview()
      • From
        markets.getOverview().data.lend
        // or
        markets.getOverview().data.borrow.collaterals
        // or
        markets.getOverview().data.borrow.debts
        To
        markets.getOverview().data.lend.contents
        // or
        markets.getOverview().data.borrow.collaterals.contents
        // or
        markets.getOverview().data.borrow.debts.contents
    • markets.lend.list().data
      • From
        markets.lend.list().data
        To
        markets.lend.list().data.contents
    • markets.borrow.collaterals.list()
      • From
        markets.borrow.collaterals.list().data
        To
        markets.borrow.collaterals.list().data.contents
    • markets.borrow.debts.list().data
      • From
        markets.borrow.debts.list().data
        To
        markets.borrow.debts.list().data.contents

v0.5.0

17 Apr 03:29
3b7e379

Choose a tag to compare

0.5.0 (2026-04-17)

Full Changelog: v0.4.0...v0.5.0

Features

  • api: add TVL, missing balance variants (10486d5)

Bug Fixes

  • ensure file data are only sent as 1 parameter (1581f6d)

Chores

  • ci: remove release-doctor workflow (39b2df7)

v0.4.0

10 Apr 00:09
7812ed7

Choose a tag to compare

0.4.0 (2026-04-09)

Full Changelog: v0.3.0...v0.4.0

Features

Bug Fixes

  • client: preserve hardcoded query params when merging with user params (f3dc171)

v0.3.0

04 Apr 21:29
7b21e9c

Choose a tag to compare

0.3.0 (2026-04-04)

Full Changelog: v0.2.0...v0.3.0

Features

  • api: api update (bf139f9)
  • api: remove bantr integration endpoint (5271ab6)

v0.2.0

03 Apr 02:01
4cf6d32

Choose a tag to compare

0.2.0 (2026-04-03)

Full Changelog: v0.1.0...v0.2.0

Features

  • api: add missing models, pagination impls (1aa9a59)
  • api: add python publishing config (72173a4)
  • api: api update (ebee3a7)
  • api: api update (a2daaa3)
  • api: api update (64bfdf0)
  • api: disable series pagn, update example requests (9d71f0b)
  • api: Fix readme title, fix inverted example params (c90715f)
  • api: manual updates (3424a81)
  • api: manual updates (f1f5aae)

Chores

v0.1.0

30 Mar 05:07
02f42dd

Choose a tag to compare

0.1.0 (2026-03-30)

Full Changelog: v0.0.1...v0.1.0

Features

Bug Fixes

  • deps: bump minimum typing-extensions version (c53e89a)
  • pydantic: do not pass by_alias unless set (fc8fe1a)
  • sanitize endpoint path params (44c0c8b)

Chores

  • ci: bump uv version (2eb8bd0)
  • ci: skip lint on metadata-only changes (05a360f)
  • ci: skip uploading artifacts on stainless-internal branches (18daf63)
  • configure new SDK language (46f828a)
  • configure new SDK language (e5f08fa)
  • internal: add request options to SSE classes (580d4ce)
  • internal: make test_proxy_environment_variables more resilient (29b6d23)
  • internal: make test_proxy_environment_variables more resilient to env (75f44ea)
  • internal: refactor authentication internals (3261db6)
  • internal: tweak CI branches (73115dc)
  • internal: update gitignore (234d18a)
  • update SDK settings (a258db0)
  • update SDK settings (658ca27)