Skip to content

Commit

Permalink
BONK constants (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipzeta authored Dec 28, 2023
1 parent 8bd03bf commit ab43354
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Version changes are pinned to SDK releases.

## Unreleased

## [1.17.2]

- BONK constants ([#337](https://github.com/zetamarkets/sdk/pull/337))

## [1.17.1]

- Example cleanup. ([#336](https://github.com/zetamarkets/sdk/pull/336))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zetamarkets/sdk",
"repository": "https://github.com/zetamarkets/sdk/",
"version": "1.17.1",
"version": "1.17.2",
"description": "Zeta SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ export const ACTIVE_MARKETS = ACTIVE_EXPIRIES * PRODUCTS_PER_EXPIRY + 1; // +1 f
export const TOTAL_EXPIRIES = 5;
export const TOTAL_MARKETS = PRODUCTS_PER_EXPIRY * (TOTAL_EXPIRIES + 1);
export const PERP_INDEX = TOTAL_MARKETS - 1;
export const ACTIVE_PERP_MARKETS = 9;
export const UNUSED_PERP_MARKETS = 16;
export const ACTIVE_PERP_MARKETS = 10;
export const UNUSED_PERP_MARKETS = 15;

export const DEFAULT_EXCHANGE_POLL_INTERVAL = 30;
export const DEFAULT_MARKET_POLL_INTERVAL = 5;
Expand Down

0 comments on commit ab43354

Please sign in to comment.