@superfluid-finance/sdk-core 0.2.2-dev.d336964.0 → 0.3.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 +15 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.3.0] - 2022-02-02
|
|
9
|
+
### Added
|
|
10
|
+
- New query handlers to cover full spectrum of Subgraph querying capabilities
|
|
11
|
+
- Used by the new release of SDK-redux
|
|
12
|
+
- Lacks an easy-to-use API for average SDK-core user
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- `_ethers` is not exported for UMD build anymore. Use `window._ethers` instead.
|
|
16
|
+
- `SFError` and `ErrorType` are now exported
|
|
17
|
+
- Generated Subgraph types are now exported (`*_Filter` and `*_OrderBy` types)
|
|
18
|
+
- There are a lot of Subgraph types, so it does make the namespace crowded. We'll alleviate it in a later release.
|
|
19
|
+
|
|
8
20
|
## [0.2.1] - 2022-01-31
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -48,7 +60,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
48
60
|
- New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
|
|
49
61
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
50
62
|
|
|
51
|
-
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.
|
|
63
|
+
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.3.0...HEAD
|
|
64
|
+
[0.3.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.2.1...sdk-core%40v0.3.0
|
|
52
65
|
[0.2.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.2.0...sdk-core%40v0.2.1
|
|
53
66
|
[0.2.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.1.0...sdk-core%40v0.2.0
|
|
54
67
|
[0.1.0]: https://github.com/superfluid-finance/protocol-monorepo/releases/tag/sdk-core%40v0.1.0
|
|
@@ -68,4 +81,4 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
68
81
|
[#549]: https://github.com/superfluid-finance/protocol-monorepo/pull/549
|
|
69
82
|
[#550]: https://github.com/superfluid-finance/protocol-monorepo/pull/550
|
|
70
83
|
[#556]: https://github.com/superfluid-finance/protocol-monorepo/pull/556
|
|
71
|
-
[#588]: https://github.com/superfluid-finance/protocol-monorepo/pull/588
|
|
84
|
+
[#588]: https://github.com/superfluid-finance/protocol-monorepo/pull/588
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superfluid-finance/sdk-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "SDK Core for building with Superfluid Protocol",
|
|
5
5
|
"homepage": "https://github.com/superfluid-finance/protocol-monorepo/tree/dev/packages/sdk-core#readme",
|
|
6
6
|
"repository": "github:superfluid-finance/protocol-monorepo",
|