@superfluid-finance/sdk-core 0.6.8-dev.fb7bed2.0 → 0.6.9-dev.0b3c40b.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/dist/index.umd.js +975 -473
  3. package/dist/main/ConstantFlowAgreementV1.d.ts +25 -1
  4. package/dist/main/ConstantFlowAgreementV1.d.ts.map +1 -1
  5. package/dist/main/ConstantFlowAgreementV1.js +58 -0
  6. package/dist/main/ConstantFlowAgreementV1.js.map +1 -1
  7. package/dist/main/Framework.js +1 -1
  8. package/dist/main/Framework.js.map +1 -1
  9. package/dist/main/Host.d.ts +2 -2
  10. package/dist/main/Host.d.ts.map +1 -1
  11. package/dist/main/Host.js.map +1 -1
  12. package/dist/main/SuperToken.d.ts +30 -8
  13. package/dist/main/SuperToken.d.ts.map +1 -1
  14. package/dist/main/SuperToken.js +33 -1
  15. package/dist/main/SuperToken.js.map +1 -1
  16. package/dist/main/events.js +1 -1
  17. package/dist/main/events.js.map +1 -1
  18. package/dist/main/interfaces.d.ts +7 -1
  19. package/dist/main/interfaces.d.ts.map +1 -1
  20. package/dist/main/subgraph/subgraphQueryHandler.d.ts.map +1 -1
  21. package/dist/main/subgraph/subgraphQueryHandler.js.map +1 -1
  22. package/dist/main/utils.d.ts +2 -0
  23. package/dist/main/utils.d.ts.map +1 -1
  24. package/dist/main/utils.js +9 -1
  25. package/dist/main/utils.js.map +1 -1
  26. package/dist/module/ConstantFlowAgreementV1.d.ts +25 -1
  27. package/dist/module/ConstantFlowAgreementV1.d.ts.map +1 -1
  28. package/dist/module/ConstantFlowAgreementV1.js +58 -0
  29. package/dist/module/ConstantFlowAgreementV1.js.map +1 -1
  30. package/dist/module/Framework.js +2 -1
  31. package/dist/module/Framework.js.map +1 -1
  32. package/dist/module/Host.d.ts +2 -2
  33. package/dist/module/Host.d.ts.map +1 -1
  34. package/dist/module/Host.js.map +1 -1
  35. package/dist/module/SuperToken.d.ts +30 -8
  36. package/dist/module/SuperToken.d.ts.map +1 -1
  37. package/dist/module/SuperToken.js +34 -1
  38. package/dist/module/SuperToken.js.map +1 -1
  39. package/dist/module/interfaces.d.ts +7 -1
  40. package/dist/module/interfaces.d.ts.map +1 -1
  41. package/dist/module/subgraph/subgraphQueryHandler.d.ts.map +1 -1
  42. package/dist/module/subgraph/subgraphQueryHandler.js.map +1 -1
  43. package/dist/module/utils.d.ts +2 -0
  44. package/dist/module/utils.d.ts.map +1 -1
  45. package/dist/module/utils.js +6 -0
  46. package/dist/module/utils.js.map +1 -1
  47. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -3,10 +3,23 @@ All notable changes to the SDK-core will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [Unreleased]
7
+
8
+ ### Added
9
+ - Support for new `increaseFlowRateAllowanceWithPermissions` and `decreaseFlowRateAllowanceWithPermissions` functions on `CFAv1` class
10
+
11
+ ### Changed
12
+
13
+ - Node dependency updates.
14
+
15
+ ## [0.6.8] - 2023-07-25
16
+
17
+ ### Updated
18
+ - Metadata changes for recently added networks
6
19
 
7
20
  ## [0.6.7] - 2023-07-13
8
21
 
9
- ### Added
22
+ ### Added
10
23
  - `BatchCall.toOperation` function which unifies `BatchCall` to `Operation` type
11
24
  - `Operation.toOperationStruct` moved from `BatchCall` to `Operation` class
12
25