Skip to content

Commit

Permalink
allow startClaimFeeTimestamp null to start claim immediately (#174)
Browse files Browse the repository at this point in the history
* allow startClaimFeeTimestamp null to start claim immediately

* pump version
  • Loading branch information
dongnguyen9186 authored Nov 8, 2024
1 parent 8ffda75 commit 21c16e5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## @mercurial-finance/dynamic-amm-sdk [1.1.10] - PR[#174](https://github.com/mercurial-finance/mercurial-dynamic-amm-sdk/pull/174)

### Changed

- Allow `startClaimFeeTimestamp` to be set as null to start the claim immediately.

## @mercurial-finance/dynamic-amm-sdk [1.1.9] - PR[#173](https://github.com/mercurial-finance/mercurial-dynamic-amm-sdk/pull/168)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion ts-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mercurial-finance/dynamic-amm-sdk",
"version": "1.1.9",
"version": "1.1.10",
"description": "Mercurial Vaults SDK is a typescript library that allows you to interact with Mercurial v2's AMM.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
4 changes: 2 additions & 2 deletions ts-client/src/amm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,8 @@ export default class AmmImpl implements AmmImplementation {
feeVault?: {
secondsToFullUnlock: BN;
topListLength: number;
startClaimFeeTimestamp: BN;
unstakeLockDuration: BN
startClaimFeeTimestamp: BN | null;
unstakeLockDuration: BN;
};
},
) {
Expand Down

0 comments on commit 21c16e5

Please sign in to comment.