@superfluid-finance/sdk-core 0.5.4-dev.a55899d.0 → 0.5.6-dev.fc916ff.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 +13 -1
- package/dist/index.umd.js +618 -463
- package/dist/main/SFError.js +2 -2
- package/dist/main/SFError.js.map +1 -1
- package/dist/main/constants.d.ts +0 -30
- package/dist/main/constants.d.ts.map +1 -1
- package/dist/main/constants.js +21 -191
- package/dist/main/constants.js.map +1 -1
- package/dist/module/SFError.js +2 -2
- package/dist/module/SFError.js.map +1 -1
- package/dist/module/constants.d.ts +0 -30
- package/dist/module/constants.d.ts.map +1 -1
- package/dist/module/constants.js +20 -190
- package/dist/module/constants.js.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.5.5] - 2022-08-31
|
|
9
|
+
### Added
|
|
10
|
+
- Support for: `optimism-goerli` and `arbitrum-goerli` added
|
|
11
|
+
### Breaking
|
|
12
|
+
- Support for: `rinkeby`, `ropsten`, `kovan`, `optimism-kovan` and `arbitrum-rinkeby` removed
|
|
13
|
+
# [0.5.4] - 2022-08-19
|
|
14
|
+
|
|
15
|
+
### Fixes
|
|
16
|
+
- Properly console the cause, not the caught serialization error
|
|
17
|
+
|
|
8
18
|
## [0.5.3] - 2022-08-15
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -200,7 +210,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
200
210
|
- New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
|
|
201
211
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
202
212
|
|
|
203
|
-
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.
|
|
213
|
+
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.5...HEAD
|
|
214
|
+
[0.5.5]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.4...sdk-core%40v0.5.5
|
|
215
|
+
[0.5.4]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.3...sdk-core%40v0.5.4
|
|
204
216
|
[0.5.3]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.2...sdk-core%40v0.5.3
|
|
205
217
|
[0.5.2]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.1...sdk-core%40v0.5.2
|
|
206
218
|
[0.5.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.0...sdk-core%40v0.5.1
|