@superfluid-finance/sdk-core 0.6.3-dev.dec8607.0 → 0.6.3
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 +9 -1
- package/dist/index.umd.js +22000 -16791
- package/dist/main/BatchCall.d.ts.map +1 -1
- package/dist/main/BatchCall.js +2 -0
- package/dist/main/BatchCall.js.map +1 -1
- package/dist/main/ConstantFlowAgreementV1.d.ts +19 -1
- package/dist/main/ConstantFlowAgreementV1.d.ts.map +1 -1
- package/dist/main/ConstantFlowAgreementV1.js +38 -0
- package/dist/main/ConstantFlowAgreementV1.js.map +1 -1
- package/dist/main/Operation.d.ts +1 -1
- package/dist/main/Operation.d.ts.map +1 -1
- package/dist/main/Operation.js.map +1 -1
- package/dist/main/SuperToken.d.ts +32 -1
- package/dist/main/SuperToken.d.ts.map +1 -1
- package/dist/main/SuperToken.js +49 -0
- package/dist/main/SuperToken.js.map +1 -1
- package/dist/main/defaultSubgraphReleaseTag.json +1 -1
- package/dist/main/events.d.ts +6 -0
- package/dist/main/events.d.ts.map +1 -1
- package/dist/main/interfaces.d.ts +13 -0
- package/dist/main/interfaces.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/main/mapGetAllEventsQueryEvents.js +6 -0
- package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/main/subgraph/schema.generated.d.ts +850 -28
- package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/module/BatchCall.d.ts.map +1 -1
- package/dist/module/BatchCall.js +2 -0
- package/dist/module/BatchCall.js.map +1 -1
- package/dist/module/ConstantFlowAgreementV1.d.ts +19 -1
- package/dist/module/ConstantFlowAgreementV1.d.ts.map +1 -1
- package/dist/module/ConstantFlowAgreementV1.js +38 -0
- package/dist/module/ConstantFlowAgreementV1.js.map +1 -1
- package/dist/module/Operation.d.ts +1 -1
- package/dist/module/Operation.d.ts.map +1 -1
- package/dist/module/Operation.js.map +1 -1
- package/dist/module/SuperToken.d.ts +32 -1
- package/dist/module/SuperToken.d.ts.map +1 -1
- package/dist/module/SuperToken.js +49 -0
- package/dist/module/SuperToken.js.map +1 -1
- package/dist/module/defaultSubgraphReleaseTag.json +1 -1
- package/dist/module/events.d.ts +6 -0
- package/dist/module/events.d.ts.map +1 -1
- package/dist/module/interfaces.d.ts +13 -0
- package/dist/module/interfaces.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
- package/dist/module/mapGetAllEventsQueryEvents.js +6 -0
- package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
- package/dist/module/subgraph/schema.generated.d.ts +850 -28
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,17 @@ All notable changes to the SDK-core will be documented in this file.
|
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
6
|
## Unreleased
|
|
7
|
+
|
|
8
|
+
## [0.6.3] - 2023-03-14
|
|
9
|
+
|
|
7
10
|
### Added
|
|
11
|
+
- `increaseAllowance` and `decreaseAllowance` functions to SuperToken class
|
|
12
|
+
- Batch call support for `increaseAllowance` and `decreaseAllowance`
|
|
13
|
+
- `increaseFlowRateAllowance` and `decreaseFlowRateAllowance` functions to CFAv1 class
|
|
8
14
|
- Add support for `activeOutgoingStreamCount`, `activeIncomingStreamCount`, `inactiveOutgoingStreamCount`, `inactiveIncomingStreamCount` properties in query for `AccountTokenSnapshot` entity
|
|
9
15
|
- Add support for `rewardAddress`, `liquidationPeriod`, `patricianPeriod`, and `minimumDeposit` properties in query for `Token` entity
|
|
10
16
|
- Add support for `userData` property in query for `Stream` entity
|
|
17
|
+
- Add `index` (the Subgraph entity ID) field to Index events when querying from Subgraph
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
13
20
|
- `.exec` or `.execForward` will throw an error if the operations array is empty
|
|
@@ -280,7 +287,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
280
287
|
- New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
|
|
281
288
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
282
289
|
|
|
283
|
-
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.
|
|
290
|
+
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.3...HEAD
|
|
291
|
+
[0.6.3]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.2...sdk-core%40v0.6.3
|
|
284
292
|
[0.6.2]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.1...sdk-core%40v0.6.2
|
|
285
293
|
[0.6.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.0...sdk-core%40v0.6.1
|
|
286
294
|
[0.6.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.9...sdk-core%40v0.6.0
|