@superfluid-finance/sdk-core 0.4.1-dev.db8e1dc.0 → 0.4.2-dev.b0d8dd0.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/LICENSE +1 -1
  3. package/README.md +3 -2
  4. package/dist/index.umd.js +215 -107
  5. package/dist/main/constants.d.ts +29 -11
  6. package/dist/main/constants.d.ts.map +1 -1
  7. package/dist/main/constants.js +99 -69
  8. package/dist/main/constants.js.map +1 -1
  9. package/dist/main/events.d.ts +2 -0
  10. package/dist/main/events.d.ts.map +1 -1
  11. package/dist/main/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  12. package/dist/main/mapGetAllEventsQueryEvents.js +78 -0
  13. package/dist/main/mapGetAllEventsQueryEvents.js.map +1 -1
  14. package/dist/main/subgraph/events/events.generated.d.ts +148 -0
  15. package/dist/main/subgraph/events/events.generated.d.ts.map +1 -1
  16. package/dist/main/subgraph/events/events.generated.js +37 -37
  17. package/dist/main/subgraph/events/events.generated.js.map +1 -1
  18. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +76 -0
  19. package/dist/main/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  20. package/dist/main/subgraph/queries/getAllEvents.generated.js +1 -1
  21. package/dist/main/subgraph/queries/getAllEvents.generated.js.map +1 -1
  22. package/dist/main/subgraph/schema.generated.d.ts +663 -39
  23. package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
  24. package/dist/module/constants.d.ts +29 -11
  25. package/dist/module/constants.d.ts.map +1 -1
  26. package/dist/module/constants.js +98 -68
  27. package/dist/module/constants.js.map +1 -1
  28. package/dist/module/events.d.ts +2 -0
  29. package/dist/module/events.d.ts.map +1 -1
  30. package/dist/module/mapGetAllEventsQueryEvents.d.ts.map +1 -1
  31. package/dist/module/mapGetAllEventsQueryEvents.js +78 -0
  32. package/dist/module/mapGetAllEventsQueryEvents.js.map +1 -1
  33. package/dist/module/subgraph/events/events.generated.d.ts +148 -0
  34. package/dist/module/subgraph/events/events.generated.d.ts.map +1 -1
  35. package/dist/module/subgraph/events/events.generated.js +37 -37
  36. package/dist/module/subgraph/events/events.generated.js.map +1 -1
  37. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +76 -0
  38. package/dist/module/subgraph/queries/getAllEvents.generated.d.ts.map +1 -1
  39. package/dist/module/subgraph/queries/getAllEvents.generated.js +1 -1
  40. package/dist/module/subgraph/queries/getAllEvents.generated.js.map +1 -1
  41. package/dist/module/subgraph/schema.generated.d.ts +663 -39
  42. package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
  43. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.4.1] - 2022-05-14
9
+
10
+ ### Added
11
+ - Avalanche Network Support
12
+
13
+ ### Changed
14
+ - Network constants consistent with canonical Superfluid name
15
+
8
16
  ## [0.4.0] - 2022-05-06
9
17
 
10
18
  ### Added
@@ -116,7 +124,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
116
124
  - New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
117
125
  - New `BatchCall` class for creating and executing batch calls with supported `Operation's`
118
126
 
119
- [Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.3.2...HEAD
127
+ [Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.1...HEAD
128
+ [0.4.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.0...sdk-core%40v0.4.1
129
+ [0.4.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.3.2...sdk-core%40v0.4.0
120
130
  [0.3.2]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.3.1...sdk-core%40v0.3.2
121
131
  [0.3.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.3.0...sdk-core%40v0.3.1
122
132
  [0.3.0]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.2.1...sdk-core%40v0.3.0
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright © 2021 Superfluid Finance Ltd
3
+ Copyright © 2021-2022 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
 
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
- <h1 align="center">sdk-core</h1>
1
+ <h1 align="center">Welcome to @superfluid-finance/sdk-core 👋
2
+ </h1>
2
3
  <div align="center">
3
- <img width="300" padding="0 0 10px" alt="Superfluid logo" src="./sf-logo.png" />
4
+ <img width="300" padding="0 0 10px" alt="Superfluid logo" src="https://github.com/superfluid-finance/protocol-monorepo/raw/dev/sf-logo.png" />
4
5
  <p>
5
6
  <a href="https://www.npmjs.com/package/@superfluid-finance/sdk-core" target="_blank">
6
7
  <img alt="Version" src="https://img.shields.io/npm/v/@superfluid-finance/sdk-core.svg">