@oceanprotocol/lib 1.0.0-next.9 → 1.1.1

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 (65) hide show
  1. package/CHANGELOG.md +408 -1
  2. package/CodeExamples.md +929 -0
  3. package/README.md +12 -80
  4. package/dist/lib.js +1 -1
  5. package/dist/lib.js.map +1 -1
  6. package/dist/lib.modern.js +1 -1
  7. package/dist/lib.modern.js.map +1 -1
  8. package/dist/lib.module.js +1 -1
  9. package/dist/lib.module.js.map +1 -1
  10. package/dist/lib.umd.js +1 -1
  11. package/dist/lib.umd.js.map +1 -1
  12. package/dist/src/@types/Asset.d.ts +83 -0
  13. package/dist/src/@types/Compute.d.ts +18 -1
  14. package/dist/src/@types/DDO/DDO.d.ts +43 -0
  15. package/dist/src/@types/DDO/Event.d.ts +20 -0
  16. package/dist/src/@types/DDO/Metadata.d.ts +92 -0
  17. package/dist/src/@types/DDO/Service.d.ts +72 -6
  18. package/dist/src/{interfaces/DispenserInterface.d.ts → @types/Dispenser.d.ts} +0 -0
  19. package/dist/src/@types/Erc20.d.ts +21 -0
  20. package/dist/src/{interfaces/Erc721Interface.d.ts → @types/Erc721.d.ts} +2 -2
  21. package/dist/src/@types/File.d.ts +23 -0
  22. package/dist/src/@types/FileInfo.d.ts +38 -0
  23. package/dist/src/{interfaces/FixedRateInterface.d.ts → @types/FixedPrice.d.ts} +7 -1
  24. package/dist/src/{interfaces/PoolInterface.d.ts → @types/Pool.d.ts} +11 -2
  25. package/dist/src/@types/Provider.d.ts +9 -0
  26. package/dist/src/@types/Router.d.ts +59 -0
  27. package/dist/src/@types/index.d.ts +8 -1
  28. package/dist/src/aquarius/Aquarius.d.ts +23 -1
  29. package/dist/src/factories/NFTFactory.d.ts +222 -14
  30. package/dist/src/index.d.ts +1 -1
  31. package/dist/src/models/Config.d.ts +128 -0
  32. package/dist/src/pools/Router.d.ts +189 -8
  33. package/dist/src/pools/balancer/Pool.d.ts +354 -29
  34. package/dist/src/pools/dispenser/Dispenser.d.ts +109 -2
  35. package/dist/src/pools/fixedRate/FixedRateExchange.d.ts +309 -17
  36. package/dist/src/pools/index.d.ts +2 -0
  37. package/dist/src/pools/ssContracts/SideStaking.d.ts +110 -7
  38. package/dist/src/provider/Provider.d.ts +127 -8
  39. package/dist/src/tokens/Datatoken.d.ts +347 -8
  40. package/dist/src/tokens/NFT.d.ts +297 -5
  41. package/dist/src/utils/ContractUtils.d.ts +13 -4
  42. package/dist/src/utils/DatatokenName.d.ts +4 -0
  43. package/dist/src/utils/General.d.ts +4 -0
  44. package/dist/src/utils/PoolHelpers.d.ts +8 -0
  45. package/dist/src/utils/SignatureUtils.d.ts +0 -2
  46. package/dist/src/utils/TokenUtils.d.ts +82 -3
  47. package/dist/src/utils/index.d.ts +2 -0
  48. package/dist/test/TestContractHandler.d.ts +8 -36
  49. package/dist/test/config.d.ts +5 -0
  50. package/dist/test/{unit/NftFactory.test.d.ts → integration/CodeExamples.test.d.ts} +0 -0
  51. package/dist/test/unit/factories/NftFactory.test.d.ts +1 -0
  52. package/package.json +42 -37
  53. package/dist/src/@types/FileMetadata.d.ts +0 -9
  54. package/dist/src/interfaces/Erc20Interface.d.ts +0 -11
  55. package/dist/src/interfaces/RouterInterface.d.ts +0 -12
  56. package/dist/src/interfaces/index.d.ts +0 -5
  57. package/dist/test/integration/config.d.ts +0 -3
  58. package/dist/test/unit/config.d.ts +0 -3
  59. package/docs/beginners_guide.md +0 -338
  60. package/docs/get-test-OCEAN.md +0 -24
  61. package/docs/overview.md +0 -394
  62. package/docs/quickstart_marketplace.md +0 -423
  63. package/docs/quickstart_simple.md +0 -272
  64. package/docs/services.md +0 -94
  65. package/docs/wallets.md +0 -98
package/CHANGELOG.md CHANGED
@@ -4,9 +4,416 @@ 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.1.1](https://github.com/oceanprotocol/ocean.js/compare/v1.1.0...v1.1.1)
8
+
9
+ - manual bump fix [`a362410`](https://github.com/oceanprotocol/ocean.js/commit/a36241004b1d9578ec5c02d9d6e64d9750c53a7b)
10
+
11
+ #### [v1.1.0](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0...v1.1.0)
12
+
13
+ > 15 June 2022
14
+
15
+ - Issue-#1485: Remove imports of ABIs in the tests and use utility tranfer(), mint(), balance() functions [`#1486`](https://github.com/oceanprotocol/ocean.js/pull/1486)
16
+ - Bump @types/node from 17.0.35 to 17.0.44 [`#1513`](https://github.com/oceanprotocol/ocean.js/pull/1513)
17
+ - Bump eslint-config-oceanprotocol from 1.5.0 to 2.0.1 [`#1466`](https://github.com/oceanprotocol/ocean.js/pull/1466)
18
+ - update to new schema & compute fixes [`#1510`](https://github.com/oceanprotocol/ocean.js/pull/1510)
19
+ - Release 1.1.0 [`112c27e`](https://github.com/oceanprotocol/ocean.js/commit/112c27edab58ef0681ea3e87fb09978411924753)
20
+
21
+ #### [v1.0.0](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.45...v1.0.0)
22
+
23
+ > 8 June 2022
24
+
25
+ - Release 1.0.0 [`04735dd`](https://github.com/oceanprotocol/ocean.js/commit/04735dd8243f4aa292e4550f83f11bf41ba11997)
26
+
27
+ #### [v1.0.0-next.45](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.44...v1.0.0-next.45)
28
+
29
+ > 5 June 2022
30
+
31
+ - contracts_1.0.0 [`#1494`](https://github.com/oceanprotocol/ocean.js/pull/1494)
32
+ - Creating code examples file + updates to readme [`#1438`](https://github.com/oceanprotocol/ocean.js/pull/1438)
33
+ - Issue-#1342: Rewrite publish flow test [`#1460`](https://github.com/oceanprotocol/ocean.js/pull/1460)
34
+ - Issue-#1349 Rewrite Pool test [`#1398`](https://github.com/oceanprotocol/ocean.js/pull/1398)
35
+ - Issue-#1351: Rewrite FixedRateExchange test [`#1393`](https://github.com/oceanprotocol/ocean.js/pull/1393)
36
+ - Issue-#1352: Rewrite SideStaking test [`#1399`](https://github.com/oceanprotocol/ocean.js/pull/1399)
37
+ - Issue-#1346: Rewrite Datatoken test [`#1377`](https://github.com/oceanprotocol/ocean.js/pull/1377)
38
+ - Issue-#1350: Rewrite Dispenser test [`#1412`](https://github.com/oceanprotocol/ocean.js/pull/1412)
39
+ - Issue-#1347: Rewrite Nft test [`#1369`](https://github.com/oceanprotocol/ocean.js/pull/1369)
40
+ - Bump @types/node from 17.0.34 to 17.0.35 [`#1477`](https://github.com/oceanprotocol/ocean.js/pull/1477)
41
+ - Bump ts-node from 10.7.0 to 10.8.0 [`#1478`](https://github.com/oceanprotocol/ocean.js/pull/1478)
42
+ - Fixing all FixedRateExchange gas estimates [`#1467`](https://github.com/oceanprotocol/ocean.js/pull/1467)
43
+ - Creating set publishing market fee function [`#1428`](https://github.com/oceanprotocol/ocean.js/pull/1428)
44
+ - Issue-#1348 rewrite NftFactory test [`#1362`](https://github.com/oceanprotocol/ocean.js/pull/1362)
45
+ - Updating CodeExamples.md [`546e509`](https://github.com/oceanprotocol/ocean.js/commit/546e509820d1d745d608825554c5fdaf3292acc5)
46
+ - use transfer() approve() and balance() functions [`e42e031`](https://github.com/oceanprotocol/ocean.js/commit/e42e031c1e1492a51ec6b88e31c828b702fde083)
47
+ - use balance() and transfer() functions [`b44f1f8`](https://github.com/oceanprotocol/ocean.js/commit/b44f1f802aa63f61f80b7428f1d24750814d9d1d)
48
+
49
+ #### [v1.0.0-next.44](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.43...v1.0.0-next.44)
50
+
51
+ > 17 May 2022
52
+
53
+ - bump to contracts 34 [`#1476`](https://github.com/oceanprotocol/ocean.js/pull/1476)
54
+ - update max out [`#1475`](https://github.com/oceanprotocol/ocean.js/pull/1475)
55
+ - Issue-#1343: Rewrite simple publish consume flow test [`#1454`](https://github.com/oceanprotocol/ocean.js/pull/1454)
56
+ - refactor SimplePublishConsumeFlow.test.ts file [`c97f750`](https://github.com/oceanprotocol/ocean.js/commit/c97f7503133986c4a6165c4ddcb7f54e5afdc2fe)
57
+ - Release 1.0.0-next.44 [`620b5d3`](https://github.com/oceanprotocol/ocean.js/commit/620b5d3a24e3d76a7b9ac1fc78a370add76f549a)
58
+ - don't deploy smart contracts [`a75ca34`](https://github.com/oceanprotocol/ocean.js/commit/a75ca34e9e5245cfdbb670f1c23c91d96c57ec30)
59
+
60
+ #### [v1.0.0-next.43](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.42...v1.0.0-next.43)
61
+
62
+ > 17 May 2022
63
+
64
+ - bump contracts to alpha.33 [`#1472`](https://github.com/oceanprotocol/ocean.js/pull/1472)
65
+ - Bump @types/node from 17.0.32 to 17.0.34 [`#1471`](https://github.com/oceanprotocol/ocean.js/pull/1471)
66
+ - Add transfer() function to TokenUtils [`#1387`](https://github.com/oceanprotocol/ocean.js/pull/1387)
67
+ - Issue-#1391: Add generic estimateGas() function [`#1394`](https://github.com/oceanprotocol/ocean.js/pull/1394)
68
+ - Bump @types/node from 17.0.31 to 17.0.32 [`#1465`](https://github.com/oceanprotocol/ocean.js/pull/1465)
69
+ - use estimateGas() function in NFT [`4cee7bb`](https://github.com/oceanprotocol/ocean.js/commit/4cee7bb08cd11e38ecddbc0c14f6eebf88755c9b)
70
+ - use estimateGas() function in Datatoken [`f9aa47c`](https://github.com/oceanprotocol/ocean.js/commit/f9aa47c4d21f34aa31addd3a37054800f0e8fb6d)
71
+ - use estimateGas() function in NFTFactory [`00fc5d2`](https://github.com/oceanprotocol/ocean.js/commit/00fc5d21e9e819e0ef47254dd5e4721b52c9d2fa)
72
+
73
+ #### [v1.0.0-next.42](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.41...v1.0.0-next.42)
74
+
75
+ > 9 May 2022
76
+
77
+ - bump contracts to alpha.32 [`#1464`](https://github.com/oceanprotocol/ocean.js/pull/1464)
78
+ - simple compute flow [`#1458`](https://github.com/oceanprotocol/ocean.js/pull/1458)
79
+ - add optional decimals parameter at joinswapExternAmountIn() and exitswapPoolAmountIn() [`#1461`](https://github.com/oceanprotocol/ocean.js/pull/1461)
80
+ - Release 1.0.0-next.42 [`56f992e`](https://github.com/oceanprotocol/ocean.js/commit/56f992e760712a88f4c9a236d75d784d6dd1c4b1)
81
+
82
+ #### [v1.0.0-next.41](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.40...v1.0.0-next.41)
83
+
84
+ > 6 May 2022
85
+
86
+ - Lock microbundle to v0.14.2 [`#1457`](https://github.com/oceanprotocol/ocean.js/pull/1457)
87
+ - Issue-#1345: Rewrite Provider test [`#1452`](https://github.com/oceanprotocol/ocean.js/pull/1452)
88
+ - Release 1.0.0-next.41 [`1d327bf`](https://github.com/oceanprotocol/ocean.js/commit/1d327bf1008917b2b04e03ae43840fa577d397d6)
89
+ - test getComputeEnvironments() [`997bbf5`](https://github.com/oceanprotocol/ocean.js/commit/997bbf57b4c05e6077abb3b7799be319815547b2)
90
+ - add assertion [`b40f52d`](https://github.com/oceanprotocol/ocean.js/commit/b40f52d6a68ab86b424839922b819cea08f869d2)
91
+
92
+ #### [v1.0.0-next.40](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.39...v1.0.0-next.40)
93
+
94
+ > 5 May 2022
95
+
96
+ - update default ESM export [`#1456`](https://github.com/oceanprotocol/ocean.js/pull/1456)
97
+ - Release 1.0.0-next.40 [`7782bf4`](https://github.com/oceanprotocol/ocean.js/commit/7782bf49b37cd88bfa000805cdff2bd6de716d5c)
98
+
99
+ #### [v1.0.0-next.39](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.38...v1.0.0-next.39)
100
+
101
+ > 5 May 2022
102
+
103
+ - Issue-#1409: Excessive contract calls [`#1424`](https://github.com/oceanprotocol/ocean.js/pull/1424)
104
+ - Issue-#1425: Use proper config in constructors [`#1430`](https://github.com/oceanprotocol/ocean.js/pull/1430)
105
+ - Bump release-it from 14.14.2 to 15.0.0 [`#1449`](https://github.com/oceanprotocol/ocean.js/pull/1449)
106
+ - Bump mocha from 9.2.2 to 10.0.0 [`#1450`](https://github.com/oceanprotocol/ocean.js/pull/1450)
107
+ - Bump @types/node from 17.0.30 to 17.0.31 [`#1451`](https://github.com/oceanprotocol/ocean.js/pull/1451)
108
+ - use getConfig(network) function to get proper configuration [`b259b16`](https://github.com/oceanprotocol/ocean.js/commit/b259b16d452b90ea05dfefcbcb3a52fe8b009d28)
109
+ - change param order [`2d744c3`](https://github.com/oceanprotocol/ocean.js/commit/2d744c3dd28566f1b2465085ec9b886e7943376f)
110
+ - Release 1.0.0-next.39 [`af5137c`](https://github.com/oceanprotocol/ocean.js/commit/af5137c3702ad03815ab6cb02265ccef45e7841d)
111
+
112
+ #### [v1.0.0-next.38](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.37...v1.0.0-next.38)
113
+
114
+ > 29 April 2022
115
+
116
+ - bump to contracts alpha 31 [`#1448`](https://github.com/oceanprotocol/ocean.js/pull/1448)
117
+ - Bump @truffle/hdwallet-provider from 2.0.7 to 2.0.8 [`#1445`](https://github.com/oceanprotocol/ocean.js/pull/1445)
118
+ - Bump typescript from 4.6.3 to 4.6.4 [`#1446`](https://github.com/oceanprotocol/ocean.js/pull/1446)
119
+ - Bump @types/node from 17.0.29 to 17.0.30 [`#1447`](https://github.com/oceanprotocol/ocean.js/pull/1447)
120
+ - Bump ejs from 3.1.6 to 3.1.7 [`#1444`](https://github.com/oceanprotocol/ocean.js/pull/1444)
121
+ - Bump @types/node from 17.0.25 to 17.0.29 [`#1441`](https://github.com/oceanprotocol/ocean.js/pull/1441)
122
+ - Bump microbundle from 0.14.2 to 0.15.0 [`#1442`](https://github.com/oceanprotocol/ocean.js/pull/1442)
123
+ - Bump @types/mocha from 9.1.0 to 9.1.1 [`#1431`](https://github.com/oceanprotocol/ocean.js/pull/1431)
124
+ - Bump @truffle/hdwallet-provider from 2.0.6 to 2.0.7 [`#1432`](https://github.com/oceanprotocol/ocean.js/pull/1432)
125
+ - Release 1.0.0-next.38 [`f9db9ce`](https://github.com/oceanprotocol/ocean.js/commit/f9db9cea310dc3004438e6a7373fed5f0334d01d)
126
+
127
+ #### [v1.0.0-next.37](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.36...v1.0.0-next.37)
128
+
129
+ > 20 April 2022
130
+
131
+ - test old package lock [`#1429`](https://github.com/oceanprotocol/ocean.js/pull/1429)
132
+ - fix [`#1426`](https://github.com/oceanprotocol/ocean.js/pull/1426)
133
+ - Add reuseOrder method [`#1421`](https://github.com/oceanprotocol/ocean.js/pull/1421)
134
+ - Bump @types/node from 17.0.24 to 17.0.25 [`#1423`](https://github.com/oceanprotocol/ocean.js/pull/1423)
135
+ - Bump @types/node from 17.0.23 to 17.0.24 [`#1422`](https://github.com/oceanprotocol/ocean.js/pull/1422)
136
+ - Release 1.0.0-next.37 [`e72055f`](https://github.com/oceanprotocol/ocean.js/commit/e72055f4c759bd1ae38ca25330e301b6e07ae014)
137
+
138
+ #### [v1.0.0-next.36](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.35...v1.0.0-next.36)
139
+
140
+ > 15 April 2022
141
+
142
+ - Fix get compute results [`#1386`](https://github.com/oceanprotocol/ocean.js/pull/1386)
143
+ - Release 1.0.0-next.36 [`c4a5f9e`](https://github.com/oceanprotocol/ocean.js/commit/c4a5f9e5ad356db6f8733252dfe497507075605c)
144
+
145
+ #### [v1.0.0-next.35](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.34...v1.0.0-next.35)
146
+
147
+ > 14 April 2022
148
+
149
+ - fix mm signature [`#1420`](https://github.com/oceanprotocol/ocean.js/pull/1420)
150
+ - setPaymentCollector apply same checking as contract [`#1396`](https://github.com/oceanprotocol/ocean.js/pull/1396)
151
+ - Release 1.0.0-next.35 [`80bf5cc`](https://github.com/oceanprotocol/ocean.js/commit/80bf5cc33fa7f5e3b4cf47805ce53510c563b29b)
152
+
153
+ #### [v1.0.0-next.34](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.33...v1.0.0-next.34)
154
+
155
+ > 14 April 2022
156
+
157
+ - refactor signatures [`#1395`](https://github.com/oceanprotocol/ocean.js/pull/1395)
158
+ - Bump @types/chai from 4.3.0 to 4.3.1 [`#1417`](https://github.com/oceanprotocol/ocean.js/pull/1417)
159
+ - Bump @truffle/hdwallet-provider from 2.0.5 to 2.0.6 [`#1418`](https://github.com/oceanprotocol/ocean.js/pull/1418)
160
+ - Issue-#1353: Rewrite Router test [`#1382`](https://github.com/oceanprotocol/ocean.js/pull/1382)
161
+ - Issue-#1413: Refactor ZERO_ADDRESS constant [`#1414`](https://github.com/oceanprotocol/ocean.js/pull/1414)
162
+ - Issue-#1410: Export Router and SideStaking classes [`#1411`](https://github.com/oceanprotocol/ocean.js/pull/1411)
163
+ - Bump prettier from 2.6.1 to 2.6.2 [`#1388`](https://github.com/oceanprotocol/ocean.js/pull/1388)
164
+ - Bump release-it from 14.14.1 to 14.14.2 [`#1415`](https://github.com/oceanprotocol/ocean.js/pull/1415)
165
+ - Bump typedoc from 0.22.14 to 0.22.15 [`#1407`](https://github.com/oceanprotocol/ocean.js/pull/1407)
166
+ - Bump @truffle/hdwallet-provider from 2.0.4 to 2.0.5 [`#1408`](https://github.com/oceanprotocol/ocean.js/pull/1408)
167
+ - Bump release-it from 14.14.0 to 14.14.1 [`#1405`](https://github.com/oceanprotocol/ocean.js/pull/1405)
168
+ - Bump typedoc from 0.22.13 to 0.22.14 [`#1402`](https://github.com/oceanprotocol/ocean.js/pull/1402)
169
+ - Bump web3 from 1.7.1 to 1.7.3 [`#1403`](https://github.com/oceanprotocol/ocean.js/pull/1403)
170
+ - refactor constants [`73c4647`](https://github.com/oceanprotocol/ocean.js/commit/73c464778395bceab02e9459c830dd52cdcb23d1)
171
+ - refactor pool and erc creation params [`0ecc973`](https://github.com/oceanprotocol/ocean.js/commit/0ecc973e0884eab5b60af9c12c7c441c0b2cfe77)
172
+ - Use ZERO_ADDRESS constant in src folder files [`ec10f43`](https://github.com/oceanprotocol/ocean.js/commit/ec10f43ac7fdf696191d3894d2e2d3f82b7da3ca)
173
+
174
+ #### [v1.0.0-next.33](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.32...v1.0.0-next.33)
175
+
176
+ > 4 April 2022
177
+
178
+ - Feature/bump contracts to alpha 28 [`#1392`](https://github.com/oceanprotocol/ocean.js/pull/1392)
179
+ - Bump mock-local-storage from 1.1.20 to 1.1.21 [`#1384`](https://github.com/oceanprotocol/ocean.js/pull/1384)
180
+ - Bump release-it from 14.13.1 to 14.14.0 [`#1385`](https://github.com/oceanprotocol/ocean.js/pull/1385)
181
+ - Issue-#1356 rewrite testcontracthandler helper class [`#1357`](https://github.com/oceanprotocol/ocean.js/pull/1357)
182
+ - Bump @oceanprotocol/contracts from 1.0.0-alpha.26 to 1.0.0-alpha.27 [`#1381`](https://github.com/oceanprotocol/ocean.js/pull/1381)
183
+ - upgrade to @oceanprotocol/contracts 1.0.0-alpha.27 [`745647b`](https://github.com/oceanprotocol/ocean.js/commit/745647b65ff9aaf55801078f5e7fd2c4672d9a61)
184
+ - update package-lock file [`a434458`](https://github.com/oceanprotocol/ocean.js/commit/a4344580ed86b4f3aaa10c6345fc9cd8decf5cc4)
185
+ - revert package-lock to v4main version [`5766f87`](https://github.com/oceanprotocol/ocean.js/commit/5766f874270000152df070a152e2ae847f2beb51)
186
+
187
+ #### [v1.0.0-next.32](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.31...v1.0.0-next.32)
188
+
189
+ > 29 March 2022
190
+
191
+ - comment broken tests [`#1379`](https://github.com/oceanprotocol/ocean.js/pull/1379)
192
+ - Release 1.0.0-next.32 [`271e870`](https://github.com/oceanprotocol/ocean.js/commit/271e870b5ea50966f1df063e3c72ffb3524a05e3)
193
+
194
+ #### [v1.0.0-next.31](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.30...v1.0.0-next.31)
195
+
196
+ > 29 March 2022
197
+
198
+ - Release 1.0.0-next.31 [`7662364`](https://github.com/oceanprotocol/ocean.js/commit/76623648d2fa19e6bf760cec04230531c11b80f2)
199
+
200
+ #### [v1.0.0-next.30](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.29...v1.0.0-next.30)
201
+
202
+ > 29 March 2022
203
+
204
+ - default amountToUnits decimals to 18, FRE consumerMarketSwapFee witho… [`#1374`](https://github.com/oceanprotocol/ocean.js/pull/1374)
205
+ - change address[1] to paymentCollector based on smart contract [`#1375`](https://github.com/oceanprotocol/ocean.js/pull/1375)
206
+ - update compute status query and jsdoc [`#1361`](https://github.com/oceanprotocol/ocean.js/pull/1361)
207
+ - Bump prettier from 2.6.0 to 2.6.1 [`#1373`](https://github.com/oceanprotocol/ocean.js/pull/1373)
208
+ - Bump minimist from 1.2.5 to 1.2.6 [`#1370`](https://github.com/oceanprotocol/ocean.js/pull/1370)
209
+ - Issue-#1367: Fix error in `NftFactory.disableTokenTemplate()` and `NftFactory.reactivateTokenTemplate()` [`#1368`](https://github.com/oceanprotocol/ocean.js/pull/1368)
210
+ - fix typedoc [`#1378`](https://github.com/oceanprotocol/ocean.js/pull/1378)
211
+ - Bump typescript from 4.6.2 to 4.6.3 [`#1371`](https://github.com/oceanprotocol/ocean.js/pull/1371)
212
+ - Bump @types/node from 17.0.22 to 17.0.23 [`#1366`](https://github.com/oceanprotocol/ocean.js/pull/1366)
213
+ - Issue-#1246: Use confighelper instead of hardcoded endpoints [`#1355`](https://github.com/oceanprotocol/ocean.js/pull/1355)
214
+ - solve all typing warnings [`#1364`](https://github.com/oceanprotocol/ocean.js/pull/1364)
215
+ - Bump @types/node from 17.0.21 to 17.0.22 [`#1363`](https://github.com/oceanprotocol/ocean.js/pull/1363)
216
+ - Bump release-it from 14.12.5 to 14.13.1 [`#1360`](https://github.com/oceanprotocol/ocean.js/pull/1360)
217
+ - Bump prettier from 2.5.1 to 2.6.0 [`#1340`](https://github.com/oceanprotocol/ocean.js/pull/1340)
218
+ - use configuration file to read variables [`3572223`](https://github.com/oceanprotocol/ocean.js/commit/35722239dfa2d021b074098e76f790e0191aa12a)
219
+ - refactor imports in the tests [`165b4c8`](https://github.com/oceanprotocol/ocean.js/commit/165b4c86809615aada2463f2ece2a3be1d3ee419)
220
+ - read configHelperNetworks values for the tests [`896211b`](https://github.com/oceanprotocol/ocean.js/commit/896211b93f1bfb634ab4677c4c68795884f16fc8)
221
+
222
+ #### [v1.0.0-next.29](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.28...v1.0.0-next.29)
223
+
224
+ > 21 March 2022
225
+
226
+ - Feature/contracts alpha 25 [`#1358`](https://github.com/oceanprotocol/ocean.js/pull/1358)
227
+ - Release 1.0.0-next.29 [`069d21c`](https://github.com/oceanprotocol/ocean.js/commit/069d21c16473a5e568d573834f85d9684bfdfca4)
228
+
229
+ #### [v1.0.0-next.28](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.27...v1.0.0-next.28)
230
+
231
+ > 16 March 2022
232
+
233
+ - Replace toWei/fromWei when base token conversion [`#1318`](https://github.com/oceanprotocol/ocean.js/pull/1318)
234
+ - Make metadataProofs optional in setMetadataAndTokenURI [`#1336`](https://github.com/oceanprotocol/ocean.js/pull/1336)
235
+ - fix moonbase urls [`#1337`](https://github.com/oceanprotocol/ocean.js/pull/1337)
236
+ - Release 1.0.0-next.28 [`6675de4`](https://github.com/oceanprotocol/ocean.js/commit/6675de4e361cb62c8dc45e6e162139c77f6d5a45)
237
+
238
+ #### [v1.0.0-next.27](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.26...v1.0.0-next.27)
239
+
240
+ > 14 March 2022
241
+
242
+ - Feature/contracts alpha 22 [`#1334`](https://github.com/oceanprotocol/ocean.js/pull/1334)
243
+ - Bump mocha from 9.2.1 to 9.2.2 [`#1332`](https://github.com/oceanprotocol/ocean.js/pull/1332)
244
+ - Release 1.0.0-next.27 [`d3fcdd0`](https://github.com/oceanprotocol/ocean.js/commit/d3fcdd0d561f85924a1b8266c564604d554e8148)
245
+
246
+ #### [v1.0.0-next.26](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.25...v1.0.0-next.26)
247
+
248
+ > 11 March 2022
249
+
250
+ - update `ServiceComputeOptions` [`#1330`](https://github.com/oceanprotocol/ocean.js/pull/1330)
251
+ - dispenser creation: transform maxTokens and maxBalance to wei [`#1328`](https://github.com/oceanprotocol/ocean.js/pull/1328)
252
+ - Bump @truffle/hdwallet-provider from 2.0.3 to 2.0.4 [`#1329`](https://github.com/oceanprotocol/ocean.js/pull/1329)
253
+ - Release 1.0.0-next.26 [`e9f32c7`](https://github.com/oceanprotocol/ocean.js/commit/e9f32c729abadc5985add4016d72f7647b8cecf9)
254
+
255
+ #### [v1.0.0-next.25](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.24...v1.0.0-next.25)
256
+
257
+ > 8 March 2022
258
+
259
+ - Bump ts-node from 10.6.0 to 10.7.0 [`#1327`](https://github.com/oceanprotocol/ocean.js/pull/1327)
260
+ - Bump typedoc from 0.22.12 to 0.22.13 [`#1326`](https://github.com/oceanprotocol/ocean.js/pull/1326)
261
+ - fix url [`#1325`](https://github.com/oceanprotocol/ocean.js/pull/1325)
262
+ - Bump web3 from 1.7.0 to 1.7.1 [`#1323`](https://github.com/oceanprotocol/ocean.js/pull/1323)
263
+ - Bump eslint-config-prettier from 8.4.0 to 8.5.0 [`#1324`](https://github.com/oceanprotocol/ocean.js/pull/1324)
264
+ - Bump ts-node from 10.5.0 to 10.6.0 [`#1319`](https://github.com/oceanprotocol/ocean.js/pull/1319)
265
+ - Bump typescript from 4.5.5 to 4.6.2 [`#1317`](https://github.com/oceanprotocol/ocean.js/pull/1317)
266
+ - Bump @types/node from 17.0.19 to 17.0.21 [`#1310`](https://github.com/oceanprotocol/ocean.js/pull/1310)
267
+ - services specific additional information [`#1311`](https://github.com/oceanprotocol/ocean.js/pull/1311)
268
+ - Bump release-it from 14.12.4 to 14.12.5 [`#1308`](https://github.com/oceanprotocol/ocean.js/pull/1308)
269
+ - Update README: harmonize with ocean.py's v4 changes [`81b1849`](https://github.com/oceanprotocol/ocean.js/commit/81b18493ff1a6dee13b23648b5f8a47452aaf3ab)
270
+ - Release 1.0.0-next.25 [`b403130`](https://github.com/oceanprotocol/ocean.js/commit/b403130e2d7e99711d2fb582a12baeac49acbcc7)
271
+ - 2021 -> 2022 [`28a48f5`](https://github.com/oceanprotocol/ocean.js/commit/28a48f5b5a2f792a79dabcd1a4fa9be1b2228311)
272
+
273
+ #### [v1.0.0-next.24](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.23...v1.0.0-next.24)
274
+
275
+ > 23 February 2022
276
+
277
+ - fix export [`#1309`](https://github.com/oceanprotocol/ocean.js/pull/1309)
278
+ - Release 1.0.0-next.24 [`9116852`](https://github.com/oceanprotocol/ocean.js/commit/91168527fca9c0667e686486bd0aae4892b79e2a)
279
+
280
+ #### [v1.0.0-next.23](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.22...v1.0.0-next.23)
281
+
282
+ > 22 February 2022
283
+
284
+ - Calculating max swap/liquidity [`#1306`](https://github.com/oceanprotocol/ocean.js/pull/1306)
285
+ - Bump @types/node from 17.0.18 to 17.0.19 [`#1305`](https://github.com/oceanprotocol/ocean.js/pull/1305)
286
+ - Release 1.0.0-next.23 [`aadd145`](https://github.com/oceanprotocol/ocean.js/commit/aadd1458ba7364a709f6eb94b3f8c123de3c189a)
287
+
288
+ #### [v1.0.0-next.22](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.21...v1.0.0-next.22)
289
+
290
+ > 21 February 2022
291
+
292
+ - fix estGas for setMetadata call [`#1303`](https://github.com/oceanprotocol/ocean.js/pull/1303)
293
+ - Bump eslint-config-prettier from 8.3.0 to 8.4.0 [`#1301`](https://github.com/oceanprotocol/ocean.js/pull/1301)
294
+ - Bump typedoc from 0.22.11 to 0.22.12 [`#1300`](https://github.com/oceanprotocol/ocean.js/pull/1300)
295
+ - Bump mocha from 9.2.0 to 9.2.1 [`#1299`](https://github.com/oceanprotocol/ocean.js/pull/1299)
296
+ - Release 1.0.0-next.22 [`ff0653c`](https://github.com/oceanprotocol/ocean.js/commit/ff0653c8831a10dee36994adde460dbfa5567810)
297
+
298
+ #### [v1.0.0-next.21](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.20...v1.0.0-next.21)
299
+
300
+ > 17 February 2022
301
+
302
+ - Update contracts [`#1297`](https://github.com/oceanprotocol/ocean.js/pull/1297)
303
+ - Release 1.0.0-next.21 [`ce88427`](https://github.com/oceanprotocol/ocean.js/commit/ce8842701aa1e9c82dbc8d6b18d94eeb0ea24540)
304
+
305
+ #### [v1.0.0-next.20](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.19...v1.0.0-next.20)
306
+
307
+ > 16 February 2022
308
+
309
+ - bump to contracts alpha.20 [`#1295`](https://github.com/oceanprotocol/ocean.js/pull/1295)
310
+ - use barge addresses for unit tests [`#1291`](https://github.com/oceanprotocol/ocean.js/pull/1291)
311
+ - Bump @types/node from 17.0.17 to 17.0.18 [`#1290`](https://github.com/oceanprotocol/ocean.js/pull/1290)
312
+ - Bump @types/crypto-js from 4.1.0 to 4.1.1 [`#1289`](https://github.com/oceanprotocol/ocean.js/pull/1289)
313
+ - Release 1.0.0-next.20 [`cb8b52c`](https://github.com/oceanprotocol/ocean.js/commit/cb8b52c6e1a73444b8170a762822e4ba15bf244e)
314
+
315
+ #### [v1.0.0-next.19](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.18...v1.0.0-next.19)
316
+
317
+ > 15 February 2022
318
+
319
+ - update config endpoint [`#1288`](https://github.com/oceanprotocol/ocean.js/pull/1288)
320
+ - Release 1.0.0-next.19 [`9b71c85`](https://github.com/oceanprotocol/ocean.js/commit/9b71c853f7cd1f596b5fbd451f63e9cdb5af3b72)
321
+
322
+ #### [v1.0.0-next.18](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.17...v1.0.0-next.18)
323
+
324
+ > 14 February 2022
325
+
326
+ - update to contracts alpha.19 [`#1286`](https://github.com/oceanprotocol/ocean.js/pull/1286)
327
+ - Update Pool class JSDoc comments [`#1281`](https://github.com/oceanprotocol/ocean.js/pull/1281)
328
+ - updated existing jsdoc comments and add missing ones [`7b2ff71`](https://github.com/oceanprotocol/ocean.js/commit/7b2ff71d0cb148308cc49a0cb267e4b4f4ee83bb)
329
+ - Release 1.0.0-next.18 [`9f9e3dc`](https://github.com/oceanprotocol/ocean.js/commit/9f9e3dce88d5e5e731cc13dbadfefc8a66cd43a5)
330
+
331
+ #### [v1.0.0-next.17](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.16...v1.0.0-next.17)
332
+
333
+ > 14 February 2022
334
+
335
+ - fix fixed order params [`#1287`](https://github.com/oceanprotocol/ocean.js/pull/1287)
336
+ - Release 1.0.0-next.17 [`9c3a12d`](https://github.com/oceanprotocol/ocean.js/commit/9c3a12daa6276aeb3f0cf59d53ff76d2b8df7219)
337
+
338
+ #### [v1.0.0-next.16](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.15...v1.0.0-next.16)
339
+
340
+ > 14 February 2022
341
+
342
+ - Remove redundant get in `calcBaseInGivenOutDT` [`#1283`](https://github.com/oceanprotocol/ocean.js/pull/1283)
343
+ - add aquarius to export list [`#1280`](https://github.com/oceanprotocol/ocean.js/pull/1280)
344
+ - Release 1.0.0-next.16 [`9f8f6aa`](https://github.com/oceanprotocol/ocean.js/commit/9f8f6aae99ab409cd0bdb61f3950b067b0363c2f)
345
+
346
+ #### [v1.0.0-next.15](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.14...v1.0.0-next.15)
347
+
348
+ > 11 February 2022
349
+
350
+ - fix redundancy [`#1278`](https://github.com/oceanprotocol/ocean.js/pull/1278)
351
+ - Bump chai from 4.3.4 to 4.3.6 [`#1277`](https://github.com/oceanprotocol/ocean.js/pull/1277)
352
+ - Bump @types/crypto-js from 4.0.2 to 4.1.0 [`#1276`](https://github.com/oceanprotocol/ocean.js/pull/1276)
353
+ - Bump @types/node from 17.0.16 to 17.0.17 [`#1275`](https://github.com/oceanprotocol/ocean.js/pull/1275)
354
+ - Release 1.0.0-next.15 [`84a022f`](https://github.com/oceanprotocol/ocean.js/commit/84a022f80c30bed5c7ad6ab692252210a71e9ae3)
355
+
356
+ #### [v1.0.0-next.14](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.13...v1.0.0-next.14)
357
+
358
+ > 10 February 2022
359
+
360
+ - fixes [`#1273`](https://github.com/oceanprotocol/ocean.js/pull/1273)
361
+ - Release 1.0.0-next.14 [`6aa1231`](https://github.com/oceanprotocol/ocean.js/commit/6aa1231a0a64d32a148108fc43bef2afca42e873)
362
+
363
+ #### [v1.0.0-next.13](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.12...v1.0.0-next.13)
364
+
365
+ > 10 February 2022
366
+
367
+ - Bump typescript from 4.4.4 to 4.5.5 [`#1270`](https://github.com/oceanprotocol/ocean.js/pull/1270)
368
+ - Bump mocha from 9.1.3 to 9.2.0 [`#1269`](https://github.com/oceanprotocol/ocean.js/pull/1269)
369
+ - Use v4main images [`#1267`](https://github.com/oceanprotocol/ocean.js/pull/1267)
370
+ - Bump ts-node from 10.4.0 to 10.5.0 [`#1268`](https://github.com/oceanprotocol/ocean.js/pull/1268)
371
+ - Bump @truffle/hdwallet-provider from 1.7.0 to 2.0.3 [`#1271`](https://github.com/oceanprotocol/ocean.js/pull/1271)
372
+ - Bump mock-local-storage from 1.1.19 to 1.1.20 [`#1263`](https://github.com/oceanprotocol/ocean.js/pull/1263)
373
+ - Bump cross-fetch from 3.1.4 to 3.1.5 [`#1264`](https://github.com/oceanprotocol/ocean.js/pull/1264)
374
+ - Bump auto-changelog from 2.3.0 to 2.4.0 [`#1265`](https://github.com/oceanprotocol/ocean.js/pull/1265)
375
+ - Bump @types/mocha from 9.0.0 to 9.1.0 [`#1262`](https://github.com/oceanprotocol/ocean.js/pull/1262)
376
+ - Bump follow-redirects from 1.14.6 to 1.14.8 [`#1261`](https://github.com/oceanprotocol/ocean.js/pull/1261)
377
+ - Bump simple-get from 2.8.1 to 2.8.2 [`#1260`](https://github.com/oceanprotocol/ocean.js/pull/1260)
378
+ - Bump @openzeppelin/contracts from 4.4.1 to 4.4.2 [`#1259`](https://github.com/oceanprotocol/ocean.js/pull/1259)
379
+ - Bump @types/node from 17.0.8 to 17.0.16 [`#1255`](https://github.com/oceanprotocol/ocean.js/pull/1255)
380
+ - Bump typedoc from 0.22.10 to 0.22.11 [`#1230`](https://github.com/oceanprotocol/ocean.js/pull/1230)
381
+ - npm audit fix [`92f4eb9`](https://github.com/oceanprotocol/ocean.js/commit/92f4eb96695a1e32e750f6c3c0de7774e992e4f2)
382
+ - Release 1.0.0-next.13 [`5152bc2`](https://github.com/oceanprotocol/ocean.js/commit/5152bc21646a6375799838daf77188a9dd6713f0)
383
+
384
+ #### [v1.0.0-next.12](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.11...v1.0.0-next.12)
385
+
386
+ > 9 February 2022
387
+
388
+ - use compute environments [`#1258`](https://github.com/oceanprotocol/ocean.js/pull/1258)
389
+ - Bump web3 from 1.6.1 to 1.7.0 [`#1224`](https://github.com/oceanprotocol/ocean.js/pull/1224)
390
+ - Barge c2d & latest contracts bump [`#1248`](https://github.com/oceanprotocol/ocean.js/pull/1248)
391
+ - Release 1.0.0-next.12 [`022c8c7`](https://github.com/oceanprotocol/ocean.js/commit/022c8c7454a8e39fe552f68cacb6a5ec75776cdf)
392
+ - fixed version for contracts [`fbcd22e`](https://github.com/oceanprotocol/ocean.js/commit/fbcd22e714d6233d7d71f60d7eabb0cecb2fe963)
393
+ - run push builds against v4main [`9142c35`](https://github.com/oceanprotocol/ocean.js/commit/9142c354f0ba3829a31d71c2814e6bdac406d91e)
394
+
395
+ #### [v1.0.0-next.11](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.10...v1.0.0-next.11)
396
+
397
+ > 7 February 2022
398
+
399
+ - Moved interfaces under types and some small fixes [`#1253`](https://github.com/oceanprotocol/ocean.js/pull/1253)
400
+ - stop removing jsdocs [`#1254`](https://github.com/oceanprotocol/ocean.js/pull/1254)
401
+ - Release 1.0.0-next.11 [`8fc3773`](https://github.com/oceanprotocol/ocean.js/commit/8fc377383434a1c8a3ba68586ab8db85bc922d40)
402
+
403
+ #### [v1.0.0-next.10](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.9...v1.0.0-next.10)
404
+
405
+ > 28 January 2022
406
+
407
+ - remove ammount [`#1241`](https://github.com/oceanprotocol/ocean.js/pull/1241)
408
+ - update contracts [`#1244`](https://github.com/oceanprotocol/ocean.js/pull/1244)
409
+ - Release 1.0.0-next.10 [`3dda9a6`](https://github.com/oceanprotocol/ocean.js/commit/3dda9a67097ac0adc388741b506cd23ef3e2cdb1)
410
+
7
411
  #### [v1.0.0-next.9](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.8...v1.0.0-next.9)
8
412
 
413
+ > 26 January 2022
414
+
9
415
  - fix order, update contracts [`#1240`](https://github.com/oceanprotocol/ocean.js/pull/1240)
416
+ - Release 1.0.0-next.9 [`ef83df7`](https://github.com/oceanprotocol/ocean.js/commit/ef83df7c7248402940a25a3f5d223131c7ece82e)
10
417
 
11
418
  #### [v1.0.0-next.8](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.7...v1.0.0-next.8)
12
419
 
@@ -231,7 +638,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
231
638
  - Bump prettier from 2.4.0 to 2.4.1 [`#1027`](https://github.com/oceanprotocol/ocean.js/pull/1027)
232
639
  - add catenax network config [`#1025`](https://github.com/oceanprotocol/ocean.js/pull/1025)
233
640
  - Bump @oceanprotocol/contracts from 0.6.5 to 0.6.7 [`#1024`](https://github.com/oceanprotocol/ocean.js/pull/1024)
234
- - Bump aqua queries [`3bea2aa`](https://github.com/oceanprotocol/ocean.js/commit/3bea2aaf9082bf1b61219f3d7960c14cec04fa1e)
641
+ - Bump aqua queries [`3bea2aa`](https://github.com/oceanprotocol/ocean.js/commit/3bea2aaf9082bf1b61219f3d7960c14cec04fa1e)
235
642
  - Release 0.17.4 [`2651b72`](https://github.com/oceanprotocol/ocean.js/commit/2651b72a2f02f952eb94e0b83edaf308cbb9e130)
236
643
  - Release 0.17.5 [`f893cb8`](https://github.com/oceanprotocol/ocean.js/commit/f893cb8b09e325df238be243713e07d64a158269)
237
644