Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
Merge master into develop
  • Loading branch information
mangrove-automation authored Jan 11, 2024
2 parents 6fea466 + cb61c00 commit 1bc1c12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Next version

# 2.0.1

- feat: Moved MangroveJsDeploy from mangrove-strats to this package. Renamed script to EmptyChainDeployer
- fix: rounding when deducing tick from price for LiquidityProvider
- feat: Add spread to market
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mangrovedao/mangrove.js",
"version": "2.0.0",
"version": "2.0.1",
"author": "Mangrove DAO",
"description": "A Typescript SDK for the Mangrove Protocol.",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/util/trade.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Big from "big.js";
import Big, { BigSource } from "big.js";
import { BigNumber, ContractTransaction, ethers } from "ethers";
import Market from "../market";
import { Bigish } from "../types";
Expand Down Expand Up @@ -811,7 +811,7 @@ class Trade {
market: Market,
ba: Market.BA,
): Promise<{
provision: Big.BigSource;
provision: BigSource;
restingOrderGasreq: number;
gaspriceFactor: number;
restingOrderBa: string;
Expand Down

0 comments on commit 1bc1c12

Please sign in to comment.