@superfluid-finance/sdk-core 0.5.8-dev.60d67eb.0 → 0.5.8-dev.b1dcd9c.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 CHANGED
@@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ### Changed
9
+
10
+ - Framework initialization for supported networks utilizes `@superfluid-finance/metadata`, but still uses the resolver for unsupported/local testing environments
11
+ - > NOTE: This will not create any changes when doing `Framework.create` and is just a minor optimization.
12
+ - 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`.
13
+ - There is also the option to pass in an explicit multiplier when executing transactions: `Operation.exec(signer, 1.32)`.
14
+
8
15
  ## [0.5.7] - 2022-10-13
9
16
  ### Breaking
10
17
 
package/README.md CHANGED
@@ -50,6 +50,13 @@ SDK-Core is in early active development and can have breaking releases without w
50
50
 
51
51
  # Prerequisites
52
52
 
53
+ > NOTE: You need to have graphql and ethers installed as a dependency in order to use SDK-Core:
54
+
55
+ ```bash
56
+ yarn install graphql ethers
57
+ ```
58
+
59
+
53
60
  To get the package up and running you'll need to install the necessary dependencies and build the project:
54
61
 
55
62
  ```bash