@superfluid-finance/sdk-core 0.5.8-dev.b990476.0 → 0.5.8-dev.faaf390.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 +7 -0
- package/README.md +7 -0
- package/dist/index.umd.js +155 -94
- package/dist/main/Framework.d.ts.map +1 -1
- package/dist/main/Framework.js +40 -24
- package/dist/main/Framework.js.map +1 -1
- 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/constants.d.ts +2 -2
- package/dist/main/constants.d.ts.map +1 -1
- package/dist/main/constants.js +4 -9
- package/dist/main/constants.js.map +1 -1
- package/dist/main/interfaces.d.ts +0 -6
- package/dist/main/interfaces.d.ts.map +1 -1
- package/dist/main/types.d.ts +16 -0
- package/dist/main/types.d.ts.map +1 -1
- package/dist/module/Framework.d.ts.map +1 -1
- package/dist/module/Framework.js +41 -25
- package/dist/module/Framework.js.map +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/constants.d.ts +2 -2
- package/dist/module/constants.d.ts.map +1 -1
- package/dist/module/constants.js +4 -9
- package/dist/module/constants.js.map +1 -1
- package/dist/module/interfaces.d.ts +0 -6
- package/dist/module/interfaces.d.ts.map +1 -1
- package/dist/module/types.d.ts +16 -0
- package/dist/module/types.d.ts.map +1 -1
- package/package.json +2 -2
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
|