@superfluid-finance/sdk-core 0.5.8-dev.faaf390.0 → 0.6.1-dev.08816e6.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 +10 -5
- package/dist/index.umd.js +1958 -1322
- package/dist/main/subgraph/entities/stream/stream.d.ts +1 -0
- package/dist/main/subgraph/entities/stream/stream.d.ts.map +1 -1
- package/dist/main/subgraph/entities/stream/stream.js +1 -0
- package/dist/main/subgraph/entities/stream/stream.js.map +1 -1
- package/dist/main/subgraph/entities/stream/streams.generated.d.ts +1 -0
- package/dist/main/subgraph/entities/stream/streams.generated.d.ts.map +1 -1
- package/dist/main/subgraph/entities/stream/streams.generated.js +1 -1
- package/dist/main/subgraph/entities/stream/streams.generated.js.map +1 -1
- package/dist/module/subgraph/entities/stream/stream.d.ts +1 -0
- package/dist/module/subgraph/entities/stream/stream.d.ts.map +1 -1
- package/dist/module/subgraph/entities/stream/stream.js +1 -0
- package/dist/module/subgraph/entities/stream/stream.js.map +1 -1
- package/dist/module/subgraph/entities/stream/streams.generated.d.ts +1 -0
- package/dist/module/subgraph/entities/stream/streams.generated.d.ts.map +1 -1
- package/dist/module/subgraph/entities/stream/streams.generated.js +1 -1
- package/dist/module/subgraph/entities/stream/streams.generated.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +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
|
+
### Added
|
|
8
|
+
- Map `deposit` to Stream when querying from Subgraph
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
## [0.6.0] - 2022-11-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Support for mainnet
|
|
9
14
|
|
|
15
|
+
### Changed
|
|
10
16
|
- Framework initialization for supported networks utilizes `@superfluid-finance/metadata`, but still uses the resolver for unsupported/local testing environments
|
|
11
17
|
- > NOTE: This will not create any changes when doing `Framework.create` and is just a minor optimization.
|
|
12
18
|
- All transactions executed via SDK-Core have a default multiplier (1.2x) applied to the provider estimated gas limit **unless** an ethers `Overrides` object is passed during creation of the `Operation`.
|
|
@@ -14,13 +20,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
14
20
|
|
|
15
21
|
## [0.5.7] - 2022-10-13
|
|
16
22
|
### Breaking
|
|
17
|
-
|
|
18
23
|
- `CFAv1Forwarder` integrated into SDK-Core and will be the default way of calling CFA agreements and `sender` is now a required property.
|
|
19
24
|
- Migration: pass sender into the affected CFAv1 callAgreement functions - `create/update/deleteFlow`.
|
|
20
25
|
> NOTE: You must pass `shouldUseCallAgreement` explicitly as a property if you want to execute these calls via the Host.
|
|
21
26
|
|
|
22
27
|
### Added
|
|
23
|
-
|
|
24
28
|
- typechain files consumed from `@superfluid-finance/ethereum-contracts` and exported from SDK-Core
|
|
25
29
|
|
|
26
30
|
## [0.5.6] - 2022-09-07
|
|
@@ -242,8 +246,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
242
246
|
- New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
|
|
243
247
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
244
248
|
|
|
245
|
-
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.
|
|
246
|
-
[0.
|
|
249
|
+
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.6.0...HEAD
|
|
250
|
+
[0.6.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.7...sdk-core%40v0.6.0
|
|
251
|
+
[0.5.7]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.6...sdk-core%40v0.5.7
|
|
247
252
|
[0.5.6]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.5...sdk-core%40v0.5.6
|
|
248
253
|
[0.5.5]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.4...sdk-core%40v0.5.5
|
|
249
254
|
[0.5.4]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.5.3...sdk-core%40v0.5.4
|