Skip to content

Commit

Permalink
bump version + update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdavinchee committed Oct 23, 2023
1 parent 17f1744 commit c14df27
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/sdk-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.6.12] - 2023-10-23

### Fixed
- Support for `CustomSuperToken` contracts without `CONSTANT_OUTFLOW_NFT()` and `CONSTANT_INFLOW_NFT()` function implemented

## [0.6.11] - 2023-10-20

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superfluid-finance/sdk-core",
"version": "0.6.11",
"version": "0.6.12",
"description": "SDK Core for building with Superfluid Protocol",
"homepage": "https://github.com/superfluid-finance/protocol-monorepo/tree/dev/packages/sdk-core#readme",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-core/src/SuperToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default abstract class SuperToken extends ERC20Token {
);
}
if (constantInflowNFTProxy === ethers.constants.AddressZero) {
constantOutflowNFTProxy = await tryGet(
constantInflowNFTProxy = await tryGet(
goodDollarSpecificToken.constantInflowNFT(),
ethers.constants.AddressZero
);
Expand Down

0 comments on commit c14df27

Please sign in to comment.