@superfluid-finance/sdk-core 0.6.7-dev.fffa179.0 → 0.6.8-dev.952e286.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 +9 -1
- package/LICENSE +1 -1
- package/dist/index.umd.js +4549 -3756
- package/dist/main/BatchCall.d.ts +14 -11
- package/dist/main/BatchCall.d.ts.map +1 -1
- package/dist/main/BatchCall.js +28 -64
- package/dist/main/BatchCall.js.map +1 -1
- package/dist/main/Operation.d.ts +8 -0
- package/dist/main/Operation.d.ts.map +1 -1
- package/dist/main/Operation.js +58 -8
- package/dist/main/Operation.js.map +1 -1
- package/dist/main/interfaces.d.ts +1 -2
- package/dist/main/interfaces.d.ts.map +1 -1
- package/dist/main/multiplyGasLimit.d.ts +3 -0
- package/dist/main/multiplyGasLimit.d.ts.map +1 -0
- package/dist/main/multiplyGasLimit.js +17 -0
- package/dist/main/multiplyGasLimit.js.map +1 -0
- package/dist/module/BatchCall.d.ts +14 -11
- package/dist/module/BatchCall.d.ts.map +1 -1
- package/dist/module/BatchCall.js +27 -65
- package/dist/module/BatchCall.js.map +1 -1
- package/dist/module/Operation.d.ts +8 -0
- package/dist/module/Operation.d.ts.map +1 -1
- package/dist/module/Operation.js +55 -8
- package/dist/module/Operation.js.map +1 -1
- package/dist/module/interfaces.d.ts +1 -2
- package/dist/module/interfaces.d.ts.map +1 -1
- package/dist/module/multiplyGasLimit.d.ts +3 -0
- package/dist/module/multiplyGasLimit.d.ts.map +1 -0
- package/dist/module/multiplyGasLimit.js +14 -0
- package/dist/module/multiplyGasLimit.js.map +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@ All notable changes to the SDK-core will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
## [0.6.7] - 2023-07-13
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `BatchCall.toOperation` function which unifies `BatchCall` to `Operation` type
|
|
11
|
+
- `Operation.toOperationStruct` moved from `BatchCall` to `Operation` class
|
|
12
|
+
|
|
13
|
+
### Updated
|
|
14
|
+
- Bump version to support metadata v1.1.8.
|
|
7
15
|
|
|
8
16
|
## [0.6.6] - 2023-05-17
|
|
9
17
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright ©
|
|
3
|
+
Copyright © 2020-2023 Superfluid Finance Ltd
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|