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