@superfluid-finance/sdk-core 0.6.3-dev.8f55aa5.0 → 0.6.3-dev.985b687.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 +6 -1
- package/dist/index.umd.js +611 -58
- 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/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/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/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/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,15 @@ 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
|
-
|
|
7
|
+
|
|
8
|
+
## Added
|
|
9
|
+
- `increaseAllowance` and `decreaseAllowance` functions to SuperToken class
|
|
10
|
+
- Batch call support for `increaseAllowance` and `decreaseAllowance`
|
|
11
|
+
- `increaseFlowRateAllowance` and `decreaseFlowRateAllowance` functions to CFAv1 class
|
|
8
12
|
- Add support for `activeOutgoingStreamCount`, `activeIncomingStreamCount`, `inactiveOutgoingStreamCount`, `inactiveIncomingStreamCount` properties in query for `AccountTokenSnapshot` entity
|
|
9
13
|
- Add support for `rewardAddress`, `liquidationPeriod`, `patricianPeriod`, and `minimumDeposit` properties in query for `Token` entity
|
|
10
14
|
- Add support for `userData` property in query for `Stream` entity
|
|
15
|
+
- Add `index` (the Subgraph entity ID) field to Index events when querying from Subgraph
|
|
11
16
|
|
|
12
17
|
### Changed
|
|
13
18
|
- `.exec` or `.execForward` will throw an error if the operations array is empty
|