@oceanprotocol/lib 1.0.0-next.5 → 1.0.0-next.9

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 (40) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/lib.js +1 -1
  3. package/dist/lib.js.map +1 -1
  4. package/dist/lib.modern.js +1 -1
  5. package/dist/lib.modern.js.map +1 -1
  6. package/dist/lib.module.js +1 -1
  7. package/dist/lib.module.js.map +1 -1
  8. package/dist/lib.umd.js +1 -1
  9. package/dist/lib.umd.js.map +1 -1
  10. package/dist/src/@types/DownloadResponse.d.ts +4 -0
  11. package/dist/src/@types/FileMetadata.d.ts +1 -0
  12. package/dist/src/@types/Provider.d.ts +3 -2
  13. package/dist/src/aquarius/Aquarius.d.ts +3 -3
  14. package/dist/src/factories/NFTFactory.d.ts +6 -9
  15. package/dist/src/interfaces/Erc721Interface.d.ts +12 -0
  16. package/dist/src/interfaces/FixedRateInterface.d.ts +1 -1
  17. package/dist/src/interfaces/PoolInterface.d.ts +4 -4
  18. package/dist/src/models/Config.d.ts +4 -0
  19. package/dist/src/pools/Router.d.ts +7 -6
  20. package/dist/src/pools/balancer/Pool.d.ts +8 -11
  21. package/dist/src/pools/dispenser/Dispenser.d.ts +4 -3
  22. package/dist/src/pools/fixedRate/FixedRateExchange.d.ts +14 -13
  23. package/dist/src/pools/ssContracts/SideStaking.d.ts +7 -5
  24. package/dist/src/provider/Provider.d.ts +15 -11
  25. package/dist/src/tokens/Datatoken.d.ts +9 -12
  26. package/dist/src/tokens/NFT.d.ts +8 -3
  27. package/dist/src/utils/ConfigHelper.d.ts +1 -1
  28. package/dist/src/utils/Constants.d.ts +1 -0
  29. package/dist/src/utils/ContractUtils.d.ts +11 -0
  30. package/dist/src/utils/FetchHelper.d.ts +3 -2
  31. package/dist/src/utils/TokenUtils.d.ts +7 -0
  32. package/dist/src/utils/index.d.ts +2 -2
  33. package/dist/src/utils/minAbi.d.ts +2 -0
  34. package/docs/beginners_guide.md +4 -4
  35. package/docs/overview.md +100 -9
  36. package/docs/quickstart_marketplace.md +34 -33
  37. package/docs/quickstart_simple.md +18 -16
  38. package/package.json +5 -4
  39. package/dist/src/utils/ContractParams.d.ts +0 -4
  40. package/dist/src/utils/GasUtils.d.ts +0 -2
package/CHANGELOG.md CHANGED
@@ -4,9 +4,44 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v1.0.0-next.9](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.8...v1.0.0-next.9)
8
+
9
+ - fix order, update contracts [`#1240`](https://github.com/oceanprotocol/ocean.js/pull/1240)
10
+
11
+ #### [v1.0.0-next.8](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.7...v1.0.0-next.8)
12
+
13
+ > 25 January 2022
14
+
15
+ - heleper+ remove old ibs [`#1238`](https://github.com/oceanprotocol/ocean.js/pull/1238)
16
+ - Add setMetaDataAndTokenURI method [`#1234`](https://github.com/oceanprotocol/ocean.js/pull/1234)
17
+ - remove optional fetch method, add abort signal [`#1235`](https://github.com/oceanprotocol/ocean.js/pull/1235)
18
+ - Release 1.0.0-next.8 [`1b0fb28`](https://github.com/oceanprotocol/ocean.js/commit/1b0fb28e7676737f2086f5032dd9dfca85431b0b)
19
+
20
+ #### [v1.0.0-next.7](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.6...v1.0.0-next.7)
21
+
22
+ > 20 January 2022
23
+
24
+ - replaced local artifacts with the published ones [`#1232`](https://github.com/oceanprotocol/ocean.js/pull/1232)
25
+ - Allow users/market to set own gas contract options & configurable web3 contract params [`#1214`](https://github.com/oceanprotocol/ocean.js/pull/1214)
26
+ - Add default http function and fixes provider class [`#1212`](https://github.com/oceanprotocol/ocean.js/pull/1212)
27
+ - Feature/ split orders&fees and uniformize datatoken naming [`#1223`](https://github.com/oceanprotocol/ocean.js/pull/1223)
28
+ - added default contract options and gas in config [`4d60a16`](https://github.com/oceanprotocol/ocean.js/commit/4d60a16f6e79a89ed636b99592167c2c8f8c50ed)
29
+ - update artifacts after latest contract changes [`b4e102e`](https://github.com/oceanprotocol/ocean.js/commit/b4e102e6a6fa597fc9540d169428030db52efcad)
30
+ - update artifacts [`c5b5835`](https://github.com/oceanprotocol/ocean.js/commit/c5b583554eea28bab8a0c3af252dc70a707cdb51)
31
+
32
+ #### [v1.0.0-next.6](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.5...v1.0.0-next.6)
33
+
34
+ > 14 January 2022
35
+
36
+ - up [`#1219`](https://github.com/oceanprotocol/ocean.js/pull/1219)
37
+ - Release 1.0.0-next.6 [`1879315`](https://github.com/oceanprotocol/ocean.js/commit/187931531021b89bd9c735f90c7426aea65dd57b)
38
+
7
39
  #### [v1.0.0-next.5](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.4...v1.0.0-next.5)
8
40
 
41
+ > 13 January 2022
42
+
9
43
  - update abi/address [`#1218`](https://github.com/oceanprotocol/ocean.js/pull/1218)
44
+ - Release 1.0.0-next.5 [`672e2b1`](https://github.com/oceanprotocol/ocean.js/commit/672e2b1f4abcc16b4a747b66fa609ea4ca9b5994)
10
45
 
11
46
  #### [v1.0.0-next.4](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.3...v1.0.0-next.4)
12
47