@superfluid-finance/sdk-core 0.6.12-dev.ffe6790.0 → 0.6.13-dev.2295e0f.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/index.umd.js +564 -116
- package/dist/main/Framework.d.ts.map +1 -1
- package/dist/main/Framework.js +4 -6
- package/dist/main/Framework.js.map +1 -1
- package/dist/main/SuperToken.d.ts.map +1 -1
- package/dist/main/SuperToken.js +24 -2
- package/dist/main/SuperToken.js.map +1 -1
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts +155 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts.map +1 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.js +3 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.js.map +1 -0
- package/dist/main/typechain-types/contracts/mocks/index.d.ts +1 -0
- package/dist/main/typechain-types/contracts/mocks/index.d.ts.map +1 -1
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts +301 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts.map +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js +407 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js.map +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/index.d.ts.map +1 -1
- package/dist/main/typechain-types/factories/contracts/mocks/index.js +3 -1
- package/dist/main/typechain-types/factories/contracts/mocks/index.js.map +1 -1
- package/dist/main/typechain-types/index.d.ts +2 -0
- package/dist/main/typechain-types/index.d.ts.map +1 -1
- package/dist/main/typechain-types/index.js +4 -2
- package/dist/main/typechain-types/index.js.map +1 -1
- package/dist/module/Framework.d.ts.map +1 -1
- package/dist/module/Framework.js +4 -6
- package/dist/module/Framework.js.map +1 -1
- package/dist/module/SuperToken.d.ts.map +1 -1
- package/dist/module/SuperToken.js +24 -2
- package/dist/module/SuperToken.js.map +1 -1
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts +155 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts.map +1 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.js +2 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.js.map +1 -0
- package/dist/module/typechain-types/contracts/mocks/index.d.ts +1 -0
- package/dist/module/typechain-types/contracts/mocks/index.d.ts.map +1 -1
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts +301 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts.map +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js +403 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js.map +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.d.ts.map +1 -1
- package/dist/module/typechain-types/factories/contracts/mocks/index.js +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.js.map +1 -1
- package/dist/module/typechain-types/index.d.ts +2 -0
- package/dist/module/typechain-types/index.d.ts.map +1 -1
- package/dist/module/typechain-types/index.js +1 -0
- package/dist/module/typechain-types/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.6.12] - 2023-10-23
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Support for `CustomSuperToken` contracts without `CONSTANT_OUTFLOW_NFT()` and `CONSTANT_INFLOW_NFT()` function implemented
|
|
12
|
+
|
|
8
13
|
## [0.6.11] - 2023-10-20
|
|
9
14
|
|
|
10
15
|
### Fixed
|