@superfluid-finance/sdk-core 0.5.7 → 0.5.8-dev.1790309.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 +3 -1
- package/dist/index.umd.js +125 -64
- package/dist/main/Operation.d.ts +3 -2
- package/dist/main/Operation.d.ts.map +1 -1
- package/dist/main/Operation.js +19 -4
- package/dist/main/Operation.js.map +1 -1
- package/dist/main/defaultSubgraphReleaseTag.json +1 -1
- package/dist/module/Operation.d.ts +3 -2
- package/dist/module/Operation.d.ts.map +1 -1
- package/dist/module/Operation.js +19 -4
- package/dist/module/Operation.js.map +1 -1
- package/dist/module/defaultSubgraphReleaseTag.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
26
26
|
## [0.5.5] - 2022-08-31
|
|
27
27
|
### Added
|
|
28
28
|
- Support for: `optimism-goerli` and `arbitrum-goerli` added
|
|
29
|
+
|
|
29
30
|
### Breaking
|
|
30
31
|
- Support for: `rinkeby`, `ropsten`, `kovan`, `optimism-kovan` and `arbitrum-rinkeby` removed
|
|
31
32
|
- Don't throw `SFError` when executing `Operation` or `BatchCall`; let the original error bubble up
|
|
@@ -33,6 +34,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
33
34
|
### Fixes
|
|
34
35
|
- Serialize a much smaller version of the cause in `SFError` (only `name`, `message`, `code`)
|
|
35
36
|
- Change `SFError.name` from "Error" to "SFError"
|
|
37
|
+
|
|
36
38
|
# [0.5.4] - 2022-08-19
|
|
37
39
|
|
|
38
40
|
### Fixes
|
|
@@ -234,7 +236,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
234
236
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
235
237
|
|
|
236
238
|
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.7...HEAD
|
|
237
|
-
[0.5.
|
|
239
|
+
[0.5.6]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.6...sdk-core%40v0.5.7
|
|
238
240
|
[0.5.6]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.5...sdk-core%40v0.5.6
|
|
239
241
|
[0.5.5]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.4...sdk-core%40v0.5.5
|
|
240
242
|
[0.5.4]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.3...sdk-core%40v0.5.4
|