@oceanprotocol/lib 1.0.0-next.4 → 1.0.0-next.40
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 +362 -1
- package/README.md +11 -31
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +1 -1
- package/dist/lib.modern.mjs +2 -0
- package/dist/lib.modern.mjs.map +1 -0
- 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/DownloadResponse.d.ts +4 -0
- package/dist/src/{interfaces/Erc20Interface.d.ts → @types/Erc20.d.ts} +6 -1
- package/dist/src/@types/Erc721.d.ts +12 -0
- package/dist/src/@types/FileMetadata.d.ts +30 -0
- package/dist/src/{interfaces/FixedRateInterface.d.ts → @types/FixedPrice.d.ts} +8 -2
- package/dist/src/{interfaces/PoolInterface.d.ts → @types/Pool.d.ts} +15 -6
- package/dist/src/@types/Provider.d.ts +3 -2
- package/dist/src/@types/Router.d.ts +59 -0
- package/dist/src/@types/index.d.ts +6 -0
- package/dist/src/aquarius/Aquarius.d.ts +26 -4
- package/dist/src/factories/NFTFactory.d.ts +224 -18
- package/dist/src/index.d.ts +1 -1
- package/dist/src/models/Config.d.ts +132 -0
- package/dist/src/pools/Router.d.ts +195 -12
- package/dist/src/pools/balancer/Pool.d.ts +364 -37
- package/dist/src/pools/dispenser/Dispenser.d.ts +112 -3
- package/dist/src/pools/fixedRate/FixedRateExchange.d.ts +314 -19
- package/dist/src/pools/index.d.ts +2 -0
- package/dist/src/pools/ssContracts/SideStaking.d.ts +116 -10
- package/dist/src/provider/Provider.d.ts +126 -14
- package/dist/src/tokens/Datatoken.d.ts +320 -13
- package/dist/src/tokens/NFT.d.ts +303 -5
- package/dist/src/utils/ConfigHelper.d.ts +1 -1
- package/dist/src/utils/Constants.d.ts +1 -0
- package/dist/src/utils/ContractUtils.d.ts +12 -0
- package/dist/src/utils/DatatokenName.d.ts +4 -0
- package/dist/src/utils/FetchHelper.d.ts +3 -2
- 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 +42 -0
- package/dist/src/utils/index.d.ts +4 -2
- package/dist/src/utils/minAbi.d.ts +2 -0
- package/dist/test/TestContractHandler.d.ts +8 -36
- package/dist/test/config.d.ts +5 -0
- package/docs/beginners_guide.md +4 -4
- package/docs/overview.md +100 -9
- package/docs/quickstart_marketplace.md +34 -33
- package/docs/quickstart_simple.md +18 -16
- package/package.json +30 -28
- package/dist/lib.modern.js +0 -2
- package/dist/lib.modern.js.map +0 -1
- package/dist/src/interfaces/RouterInterface.d.ts +0 -12
- package/dist/src/interfaces/index.d.ts +0 -5
- package/dist/src/utils/ContractParams.d.ts +0 -4
- package/dist/src/utils/GasUtils.d.ts +0 -2
- package/dist/test/integration/config.d.ts +0 -3
- package/dist/test/unit/config.d.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,370 @@ 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.40](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.39...v1.0.0-next.40)
|
|
8
|
+
|
|
9
|
+
- update default ESM export [`#1456`](https://github.com/oceanprotocol/ocean.js/pull/1456)
|
|
10
|
+
|
|
11
|
+
#### [v1.0.0-next.39](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.38...v1.0.0-next.39)
|
|
12
|
+
|
|
13
|
+
> 5 May 2022
|
|
14
|
+
|
|
15
|
+
- Issue-#1409: Excessive contract calls [`#1424`](https://github.com/oceanprotocol/ocean.js/pull/1424)
|
|
16
|
+
- Issue-#1425: Use proper config in constructors [`#1430`](https://github.com/oceanprotocol/ocean.js/pull/1430)
|
|
17
|
+
- Bump release-it from 14.14.2 to 15.0.0 [`#1449`](https://github.com/oceanprotocol/ocean.js/pull/1449)
|
|
18
|
+
- Bump mocha from 9.2.2 to 10.0.0 [`#1450`](https://github.com/oceanprotocol/ocean.js/pull/1450)
|
|
19
|
+
- Bump @types/node from 17.0.30 to 17.0.31 [`#1451`](https://github.com/oceanprotocol/ocean.js/pull/1451)
|
|
20
|
+
- use getConfig(network) function to get proper configuration [`b259b16`](https://github.com/oceanprotocol/ocean.js/commit/b259b16d452b90ea05dfefcbcb3a52fe8b009d28)
|
|
21
|
+
- change param order [`2d744c3`](https://github.com/oceanprotocol/ocean.js/commit/2d744c3dd28566f1b2465085ec9b886e7943376f)
|
|
22
|
+
- Release 1.0.0-next.39 [`af5137c`](https://github.com/oceanprotocol/ocean.js/commit/af5137c3702ad03815ab6cb02265ccef45e7841d)
|
|
23
|
+
|
|
24
|
+
#### [v1.0.0-next.38](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.37...v1.0.0-next.38)
|
|
25
|
+
|
|
26
|
+
> 29 April 2022
|
|
27
|
+
|
|
28
|
+
- bump to contracts alpha 31 [`#1448`](https://github.com/oceanprotocol/ocean.js/pull/1448)
|
|
29
|
+
- Bump @truffle/hdwallet-provider from 2.0.7 to 2.0.8 [`#1445`](https://github.com/oceanprotocol/ocean.js/pull/1445)
|
|
30
|
+
- Bump typescript from 4.6.3 to 4.6.4 [`#1446`](https://github.com/oceanprotocol/ocean.js/pull/1446)
|
|
31
|
+
- Bump @types/node from 17.0.29 to 17.0.30 [`#1447`](https://github.com/oceanprotocol/ocean.js/pull/1447)
|
|
32
|
+
- Bump ejs from 3.1.6 to 3.1.7 [`#1444`](https://github.com/oceanprotocol/ocean.js/pull/1444)
|
|
33
|
+
- Bump @types/node from 17.0.25 to 17.0.29 [`#1441`](https://github.com/oceanprotocol/ocean.js/pull/1441)
|
|
34
|
+
- Bump microbundle from 0.14.2 to 0.15.0 [`#1442`](https://github.com/oceanprotocol/ocean.js/pull/1442)
|
|
35
|
+
- Bump @types/mocha from 9.1.0 to 9.1.1 [`#1431`](https://github.com/oceanprotocol/ocean.js/pull/1431)
|
|
36
|
+
- Bump @truffle/hdwallet-provider from 2.0.6 to 2.0.7 [`#1432`](https://github.com/oceanprotocol/ocean.js/pull/1432)
|
|
37
|
+
- Release 1.0.0-next.38 [`f9db9ce`](https://github.com/oceanprotocol/ocean.js/commit/f9db9cea310dc3004438e6a7373fed5f0334d01d)
|
|
38
|
+
|
|
39
|
+
#### [v1.0.0-next.37](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.36...v1.0.0-next.37)
|
|
40
|
+
|
|
41
|
+
> 20 April 2022
|
|
42
|
+
|
|
43
|
+
- test old package lock [`#1429`](https://github.com/oceanprotocol/ocean.js/pull/1429)
|
|
44
|
+
- fix [`#1426`](https://github.com/oceanprotocol/ocean.js/pull/1426)
|
|
45
|
+
- Add reuseOrder method [`#1421`](https://github.com/oceanprotocol/ocean.js/pull/1421)
|
|
46
|
+
- Bump @types/node from 17.0.24 to 17.0.25 [`#1423`](https://github.com/oceanprotocol/ocean.js/pull/1423)
|
|
47
|
+
- Bump @types/node from 17.0.23 to 17.0.24 [`#1422`](https://github.com/oceanprotocol/ocean.js/pull/1422)
|
|
48
|
+
- Release 1.0.0-next.37 [`e72055f`](https://github.com/oceanprotocol/ocean.js/commit/e72055f4c759bd1ae38ca25330e301b6e07ae014)
|
|
49
|
+
|
|
50
|
+
#### [v1.0.0-next.36](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.35...v1.0.0-next.36)
|
|
51
|
+
|
|
52
|
+
> 15 April 2022
|
|
53
|
+
|
|
54
|
+
- Fix get compute results [`#1386`](https://github.com/oceanprotocol/ocean.js/pull/1386)
|
|
55
|
+
- Release 1.0.0-next.36 [`c4a5f9e`](https://github.com/oceanprotocol/ocean.js/commit/c4a5f9e5ad356db6f8733252dfe497507075605c)
|
|
56
|
+
|
|
57
|
+
#### [v1.0.0-next.35](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.34...v1.0.0-next.35)
|
|
58
|
+
|
|
59
|
+
> 14 April 2022
|
|
60
|
+
|
|
61
|
+
- fix mm signature [`#1420`](https://github.com/oceanprotocol/ocean.js/pull/1420)
|
|
62
|
+
- setPaymentCollector apply same checking as contract [`#1396`](https://github.com/oceanprotocol/ocean.js/pull/1396)
|
|
63
|
+
- Release 1.0.0-next.35 [`80bf5cc`](https://github.com/oceanprotocol/ocean.js/commit/80bf5cc33fa7f5e3b4cf47805ce53510c563b29b)
|
|
64
|
+
|
|
65
|
+
#### [v1.0.0-next.34](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.33...v1.0.0-next.34)
|
|
66
|
+
|
|
67
|
+
> 14 April 2022
|
|
68
|
+
|
|
69
|
+
- refactor signatures [`#1395`](https://github.com/oceanprotocol/ocean.js/pull/1395)
|
|
70
|
+
- Bump @types/chai from 4.3.0 to 4.3.1 [`#1417`](https://github.com/oceanprotocol/ocean.js/pull/1417)
|
|
71
|
+
- Bump @truffle/hdwallet-provider from 2.0.5 to 2.0.6 [`#1418`](https://github.com/oceanprotocol/ocean.js/pull/1418)
|
|
72
|
+
- Issue-#1353: Rewrite Router test [`#1382`](https://github.com/oceanprotocol/ocean.js/pull/1382)
|
|
73
|
+
- Issue-#1413: Refactor ZERO_ADDRESS constant [`#1414`](https://github.com/oceanprotocol/ocean.js/pull/1414)
|
|
74
|
+
- Issue-#1410: Export Router and SideStaking classes [`#1411`](https://github.com/oceanprotocol/ocean.js/pull/1411)
|
|
75
|
+
- Bump prettier from 2.6.1 to 2.6.2 [`#1388`](https://github.com/oceanprotocol/ocean.js/pull/1388)
|
|
76
|
+
- Bump release-it from 14.14.1 to 14.14.2 [`#1415`](https://github.com/oceanprotocol/ocean.js/pull/1415)
|
|
77
|
+
- Bump typedoc from 0.22.14 to 0.22.15 [`#1407`](https://github.com/oceanprotocol/ocean.js/pull/1407)
|
|
78
|
+
- Bump @truffle/hdwallet-provider from 2.0.4 to 2.0.5 [`#1408`](https://github.com/oceanprotocol/ocean.js/pull/1408)
|
|
79
|
+
- Bump release-it from 14.14.0 to 14.14.1 [`#1405`](https://github.com/oceanprotocol/ocean.js/pull/1405)
|
|
80
|
+
- Bump typedoc from 0.22.13 to 0.22.14 [`#1402`](https://github.com/oceanprotocol/ocean.js/pull/1402)
|
|
81
|
+
- Bump web3 from 1.7.1 to 1.7.3 [`#1403`](https://github.com/oceanprotocol/ocean.js/pull/1403)
|
|
82
|
+
- refactor constants [`73c4647`](https://github.com/oceanprotocol/ocean.js/commit/73c464778395bceab02e9459c830dd52cdcb23d1)
|
|
83
|
+
- refactor pool and erc creation params [`0ecc973`](https://github.com/oceanprotocol/ocean.js/commit/0ecc973e0884eab5b60af9c12c7c441c0b2cfe77)
|
|
84
|
+
- Use ZERO_ADDRESS constant in src folder files [`ec10f43`](https://github.com/oceanprotocol/ocean.js/commit/ec10f43ac7fdf696191d3894d2e2d3f82b7da3ca)
|
|
85
|
+
|
|
86
|
+
#### [v1.0.0-next.33](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.32...v1.0.0-next.33)
|
|
87
|
+
|
|
88
|
+
> 4 April 2022
|
|
89
|
+
|
|
90
|
+
- Feature/bump contracts to alpha 28 [`#1392`](https://github.com/oceanprotocol/ocean.js/pull/1392)
|
|
91
|
+
- Bump mock-local-storage from 1.1.20 to 1.1.21 [`#1384`](https://github.com/oceanprotocol/ocean.js/pull/1384)
|
|
92
|
+
- Bump release-it from 14.13.1 to 14.14.0 [`#1385`](https://github.com/oceanprotocol/ocean.js/pull/1385)
|
|
93
|
+
- Issue-#1356 rewrite testcontracthandler helper class [`#1357`](https://github.com/oceanprotocol/ocean.js/pull/1357)
|
|
94
|
+
- Bump @oceanprotocol/contracts from 1.0.0-alpha.26 to 1.0.0-alpha.27 [`#1381`](https://github.com/oceanprotocol/ocean.js/pull/1381)
|
|
95
|
+
- upgrade to @oceanprotocol/contracts 1.0.0-alpha.27 [`745647b`](https://github.com/oceanprotocol/ocean.js/commit/745647b65ff9aaf55801078f5e7fd2c4672d9a61)
|
|
96
|
+
- update package-lock file [`a434458`](https://github.com/oceanprotocol/ocean.js/commit/a4344580ed86b4f3aaa10c6345fc9cd8decf5cc4)
|
|
97
|
+
- revert package-lock to v4main version [`5766f87`](https://github.com/oceanprotocol/ocean.js/commit/5766f874270000152df070a152e2ae847f2beb51)
|
|
98
|
+
|
|
99
|
+
#### [v1.0.0-next.32](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.31...v1.0.0-next.32)
|
|
100
|
+
|
|
101
|
+
> 29 March 2022
|
|
102
|
+
|
|
103
|
+
- comment broken tests [`#1379`](https://github.com/oceanprotocol/ocean.js/pull/1379)
|
|
104
|
+
- Release 1.0.0-next.32 [`271e870`](https://github.com/oceanprotocol/ocean.js/commit/271e870b5ea50966f1df063e3c72ffb3524a05e3)
|
|
105
|
+
|
|
106
|
+
#### [v1.0.0-next.31](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.30...v1.0.0-next.31)
|
|
107
|
+
|
|
108
|
+
> 29 March 2022
|
|
109
|
+
|
|
110
|
+
- Release 1.0.0-next.31 [`7662364`](https://github.com/oceanprotocol/ocean.js/commit/76623648d2fa19e6bf760cec04230531c11b80f2)
|
|
111
|
+
|
|
112
|
+
#### [v1.0.0-next.30](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.29...v1.0.0-next.30)
|
|
113
|
+
|
|
114
|
+
> 29 March 2022
|
|
115
|
+
|
|
116
|
+
- default amountToUnits decimals to 18, FRE consumerMarketSwapFee witho… [`#1374`](https://github.com/oceanprotocol/ocean.js/pull/1374)
|
|
117
|
+
- change address[1] to paymentCollector based on smart contract [`#1375`](https://github.com/oceanprotocol/ocean.js/pull/1375)
|
|
118
|
+
- update compute status query and jsdoc [`#1361`](https://github.com/oceanprotocol/ocean.js/pull/1361)
|
|
119
|
+
- Bump prettier from 2.6.0 to 2.6.1 [`#1373`](https://github.com/oceanprotocol/ocean.js/pull/1373)
|
|
120
|
+
- Bump minimist from 1.2.5 to 1.2.6 [`#1370`](https://github.com/oceanprotocol/ocean.js/pull/1370)
|
|
121
|
+
- Issue-#1367: Fix error in `NftFactory.disableTokenTemplate()` and `NftFactory.reactivateTokenTemplate()` [`#1368`](https://github.com/oceanprotocol/ocean.js/pull/1368)
|
|
122
|
+
- fix typedoc [`#1378`](https://github.com/oceanprotocol/ocean.js/pull/1378)
|
|
123
|
+
- Bump typescript from 4.6.2 to 4.6.3 [`#1371`](https://github.com/oceanprotocol/ocean.js/pull/1371)
|
|
124
|
+
- Bump @types/node from 17.0.22 to 17.0.23 [`#1366`](https://github.com/oceanprotocol/ocean.js/pull/1366)
|
|
125
|
+
- Issue-#1246: Use confighelper instead of hardcoded endpoints [`#1355`](https://github.com/oceanprotocol/ocean.js/pull/1355)
|
|
126
|
+
- solve all typing warnings [`#1364`](https://github.com/oceanprotocol/ocean.js/pull/1364)
|
|
127
|
+
- Bump @types/node from 17.0.21 to 17.0.22 [`#1363`](https://github.com/oceanprotocol/ocean.js/pull/1363)
|
|
128
|
+
- Bump release-it from 14.12.5 to 14.13.1 [`#1360`](https://github.com/oceanprotocol/ocean.js/pull/1360)
|
|
129
|
+
- Bump prettier from 2.5.1 to 2.6.0 [`#1340`](https://github.com/oceanprotocol/ocean.js/pull/1340)
|
|
130
|
+
- use configuration file to read variables [`3572223`](https://github.com/oceanprotocol/ocean.js/commit/35722239dfa2d021b074098e76f790e0191aa12a)
|
|
131
|
+
- refactor imports in the tests [`165b4c8`](https://github.com/oceanprotocol/ocean.js/commit/165b4c86809615aada2463f2ece2a3be1d3ee419)
|
|
132
|
+
- read configHelperNetworks values for the tests [`896211b`](https://github.com/oceanprotocol/ocean.js/commit/896211b93f1bfb634ab4677c4c68795884f16fc8)
|
|
133
|
+
|
|
134
|
+
#### [v1.0.0-next.29](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.28...v1.0.0-next.29)
|
|
135
|
+
|
|
136
|
+
> 21 March 2022
|
|
137
|
+
|
|
138
|
+
- Feature/contracts alpha 25 [`#1358`](https://github.com/oceanprotocol/ocean.js/pull/1358)
|
|
139
|
+
- Release 1.0.0-next.29 [`069d21c`](https://github.com/oceanprotocol/ocean.js/commit/069d21c16473a5e568d573834f85d9684bfdfca4)
|
|
140
|
+
|
|
141
|
+
#### [v1.0.0-next.28](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.27...v1.0.0-next.28)
|
|
142
|
+
|
|
143
|
+
> 16 March 2022
|
|
144
|
+
|
|
145
|
+
- Replace toWei/fromWei when base token conversion [`#1318`](https://github.com/oceanprotocol/ocean.js/pull/1318)
|
|
146
|
+
- Make metadataProofs optional in setMetadataAndTokenURI [`#1336`](https://github.com/oceanprotocol/ocean.js/pull/1336)
|
|
147
|
+
- fix moonbase urls [`#1337`](https://github.com/oceanprotocol/ocean.js/pull/1337)
|
|
148
|
+
- Release 1.0.0-next.28 [`6675de4`](https://github.com/oceanprotocol/ocean.js/commit/6675de4e361cb62c8dc45e6e162139c77f6d5a45)
|
|
149
|
+
|
|
150
|
+
#### [v1.0.0-next.27](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.26...v1.0.0-next.27)
|
|
151
|
+
|
|
152
|
+
> 14 March 2022
|
|
153
|
+
|
|
154
|
+
- Feature/contracts alpha 22 [`#1334`](https://github.com/oceanprotocol/ocean.js/pull/1334)
|
|
155
|
+
- Bump mocha from 9.2.1 to 9.2.2 [`#1332`](https://github.com/oceanprotocol/ocean.js/pull/1332)
|
|
156
|
+
- Release 1.0.0-next.27 [`d3fcdd0`](https://github.com/oceanprotocol/ocean.js/commit/d3fcdd0d561f85924a1b8266c564604d554e8148)
|
|
157
|
+
|
|
158
|
+
#### [v1.0.0-next.26](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.25...v1.0.0-next.26)
|
|
159
|
+
|
|
160
|
+
> 11 March 2022
|
|
161
|
+
|
|
162
|
+
- update `ServiceComputeOptions` [`#1330`](https://github.com/oceanprotocol/ocean.js/pull/1330)
|
|
163
|
+
- dispenser creation: transform maxTokens and maxBalance to wei [`#1328`](https://github.com/oceanprotocol/ocean.js/pull/1328)
|
|
164
|
+
- Bump @truffle/hdwallet-provider from 2.0.3 to 2.0.4 [`#1329`](https://github.com/oceanprotocol/ocean.js/pull/1329)
|
|
165
|
+
- Release 1.0.0-next.26 [`e9f32c7`](https://github.com/oceanprotocol/ocean.js/commit/e9f32c729abadc5985add4016d72f7647b8cecf9)
|
|
166
|
+
|
|
167
|
+
#### [v1.0.0-next.25](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.24...v1.0.0-next.25)
|
|
168
|
+
|
|
169
|
+
> 8 March 2022
|
|
170
|
+
|
|
171
|
+
- Bump ts-node from 10.6.0 to 10.7.0 [`#1327`](https://github.com/oceanprotocol/ocean.js/pull/1327)
|
|
172
|
+
- Bump typedoc from 0.22.12 to 0.22.13 [`#1326`](https://github.com/oceanprotocol/ocean.js/pull/1326)
|
|
173
|
+
- fix url [`#1325`](https://github.com/oceanprotocol/ocean.js/pull/1325)
|
|
174
|
+
- Bump web3 from 1.7.0 to 1.7.1 [`#1323`](https://github.com/oceanprotocol/ocean.js/pull/1323)
|
|
175
|
+
- Bump eslint-config-prettier from 8.4.0 to 8.5.0 [`#1324`](https://github.com/oceanprotocol/ocean.js/pull/1324)
|
|
176
|
+
- Bump ts-node from 10.5.0 to 10.6.0 [`#1319`](https://github.com/oceanprotocol/ocean.js/pull/1319)
|
|
177
|
+
- Bump typescript from 4.5.5 to 4.6.2 [`#1317`](https://github.com/oceanprotocol/ocean.js/pull/1317)
|
|
178
|
+
- Bump @types/node from 17.0.19 to 17.0.21 [`#1310`](https://github.com/oceanprotocol/ocean.js/pull/1310)
|
|
179
|
+
- services specific additional information [`#1311`](https://github.com/oceanprotocol/ocean.js/pull/1311)
|
|
180
|
+
- Bump release-it from 14.12.4 to 14.12.5 [`#1308`](https://github.com/oceanprotocol/ocean.js/pull/1308)
|
|
181
|
+
- Update README: harmonize with ocean.py's v4 changes [`81b1849`](https://github.com/oceanprotocol/ocean.js/commit/81b18493ff1a6dee13b23648b5f8a47452aaf3ab)
|
|
182
|
+
- Release 1.0.0-next.25 [`b403130`](https://github.com/oceanprotocol/ocean.js/commit/b403130e2d7e99711d2fb582a12baeac49acbcc7)
|
|
183
|
+
- 2021 -> 2022 [`28a48f5`](https://github.com/oceanprotocol/ocean.js/commit/28a48f5b5a2f792a79dabcd1a4fa9be1b2228311)
|
|
184
|
+
|
|
185
|
+
#### [v1.0.0-next.24](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.23...v1.0.0-next.24)
|
|
186
|
+
|
|
187
|
+
> 23 February 2022
|
|
188
|
+
|
|
189
|
+
- fix export [`#1309`](https://github.com/oceanprotocol/ocean.js/pull/1309)
|
|
190
|
+
- Release 1.0.0-next.24 [`9116852`](https://github.com/oceanprotocol/ocean.js/commit/91168527fca9c0667e686486bd0aae4892b79e2a)
|
|
191
|
+
|
|
192
|
+
#### [v1.0.0-next.23](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.22...v1.0.0-next.23)
|
|
193
|
+
|
|
194
|
+
> 22 February 2022
|
|
195
|
+
|
|
196
|
+
- Calculating max swap/liquidity [`#1306`](https://github.com/oceanprotocol/ocean.js/pull/1306)
|
|
197
|
+
- Bump @types/node from 17.0.18 to 17.0.19 [`#1305`](https://github.com/oceanprotocol/ocean.js/pull/1305)
|
|
198
|
+
- Release 1.0.0-next.23 [`aadd145`](https://github.com/oceanprotocol/ocean.js/commit/aadd1458ba7364a709f6eb94b3f8c123de3c189a)
|
|
199
|
+
|
|
200
|
+
#### [v1.0.0-next.22](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.21...v1.0.0-next.22)
|
|
201
|
+
|
|
202
|
+
> 21 February 2022
|
|
203
|
+
|
|
204
|
+
- fix estGas for setMetadata call [`#1303`](https://github.com/oceanprotocol/ocean.js/pull/1303)
|
|
205
|
+
- Bump eslint-config-prettier from 8.3.0 to 8.4.0 [`#1301`](https://github.com/oceanprotocol/ocean.js/pull/1301)
|
|
206
|
+
- Bump typedoc from 0.22.11 to 0.22.12 [`#1300`](https://github.com/oceanprotocol/ocean.js/pull/1300)
|
|
207
|
+
- Bump mocha from 9.2.0 to 9.2.1 [`#1299`](https://github.com/oceanprotocol/ocean.js/pull/1299)
|
|
208
|
+
- Release 1.0.0-next.22 [`ff0653c`](https://github.com/oceanprotocol/ocean.js/commit/ff0653c8831a10dee36994adde460dbfa5567810)
|
|
209
|
+
|
|
210
|
+
#### [v1.0.0-next.21](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.20...v1.0.0-next.21)
|
|
211
|
+
|
|
212
|
+
> 17 February 2022
|
|
213
|
+
|
|
214
|
+
- Update contracts [`#1297`](https://github.com/oceanprotocol/ocean.js/pull/1297)
|
|
215
|
+
- Release 1.0.0-next.21 [`ce88427`](https://github.com/oceanprotocol/ocean.js/commit/ce8842701aa1e9c82dbc8d6b18d94eeb0ea24540)
|
|
216
|
+
|
|
217
|
+
#### [v1.0.0-next.20](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.19...v1.0.0-next.20)
|
|
218
|
+
|
|
219
|
+
> 16 February 2022
|
|
220
|
+
|
|
221
|
+
- bump to contracts alpha.20 [`#1295`](https://github.com/oceanprotocol/ocean.js/pull/1295)
|
|
222
|
+
- use barge addresses for unit tests [`#1291`](https://github.com/oceanprotocol/ocean.js/pull/1291)
|
|
223
|
+
- Bump @types/node from 17.0.17 to 17.0.18 [`#1290`](https://github.com/oceanprotocol/ocean.js/pull/1290)
|
|
224
|
+
- Bump @types/crypto-js from 4.1.0 to 4.1.1 [`#1289`](https://github.com/oceanprotocol/ocean.js/pull/1289)
|
|
225
|
+
- Release 1.0.0-next.20 [`cb8b52c`](https://github.com/oceanprotocol/ocean.js/commit/cb8b52c6e1a73444b8170a762822e4ba15bf244e)
|
|
226
|
+
|
|
227
|
+
#### [v1.0.0-next.19](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.18...v1.0.0-next.19)
|
|
228
|
+
|
|
229
|
+
> 15 February 2022
|
|
230
|
+
|
|
231
|
+
- update config endpoint [`#1288`](https://github.com/oceanprotocol/ocean.js/pull/1288)
|
|
232
|
+
- Release 1.0.0-next.19 [`9b71c85`](https://github.com/oceanprotocol/ocean.js/commit/9b71c853f7cd1f596b5fbd451f63e9cdb5af3b72)
|
|
233
|
+
|
|
234
|
+
#### [v1.0.0-next.18](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.17...v1.0.0-next.18)
|
|
235
|
+
|
|
236
|
+
> 14 February 2022
|
|
237
|
+
|
|
238
|
+
- update to contracts alpha.19 [`#1286`](https://github.com/oceanprotocol/ocean.js/pull/1286)
|
|
239
|
+
- Update Pool class JSDoc comments [`#1281`](https://github.com/oceanprotocol/ocean.js/pull/1281)
|
|
240
|
+
- updated existing jsdoc comments and add missing ones [`7b2ff71`](https://github.com/oceanprotocol/ocean.js/commit/7b2ff71d0cb148308cc49a0cb267e4b4f4ee83bb)
|
|
241
|
+
- Release 1.0.0-next.18 [`9f9e3dc`](https://github.com/oceanprotocol/ocean.js/commit/9f9e3dce88d5e5e731cc13dbadfefc8a66cd43a5)
|
|
242
|
+
|
|
243
|
+
#### [v1.0.0-next.17](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.16...v1.0.0-next.17)
|
|
244
|
+
|
|
245
|
+
> 14 February 2022
|
|
246
|
+
|
|
247
|
+
- fix fixed order params [`#1287`](https://github.com/oceanprotocol/ocean.js/pull/1287)
|
|
248
|
+
- Release 1.0.0-next.17 [`9c3a12d`](https://github.com/oceanprotocol/ocean.js/commit/9c3a12daa6276aeb3f0cf59d53ff76d2b8df7219)
|
|
249
|
+
|
|
250
|
+
#### [v1.0.0-next.16](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.15...v1.0.0-next.16)
|
|
251
|
+
|
|
252
|
+
> 14 February 2022
|
|
253
|
+
|
|
254
|
+
- Remove redundant get in `calcBaseInGivenOutDT` [`#1283`](https://github.com/oceanprotocol/ocean.js/pull/1283)
|
|
255
|
+
- add aquarius to export list [`#1280`](https://github.com/oceanprotocol/ocean.js/pull/1280)
|
|
256
|
+
- Release 1.0.0-next.16 [`9f8f6aa`](https://github.com/oceanprotocol/ocean.js/commit/9f8f6aae99ab409cd0bdb61f3950b067b0363c2f)
|
|
257
|
+
|
|
258
|
+
#### [v1.0.0-next.15](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.14...v1.0.0-next.15)
|
|
259
|
+
|
|
260
|
+
> 11 February 2022
|
|
261
|
+
|
|
262
|
+
- fix redundancy [`#1278`](https://github.com/oceanprotocol/ocean.js/pull/1278)
|
|
263
|
+
- Bump chai from 4.3.4 to 4.3.6 [`#1277`](https://github.com/oceanprotocol/ocean.js/pull/1277)
|
|
264
|
+
- Bump @types/crypto-js from 4.0.2 to 4.1.0 [`#1276`](https://github.com/oceanprotocol/ocean.js/pull/1276)
|
|
265
|
+
- Bump @types/node from 17.0.16 to 17.0.17 [`#1275`](https://github.com/oceanprotocol/ocean.js/pull/1275)
|
|
266
|
+
- Release 1.0.0-next.15 [`84a022f`](https://github.com/oceanprotocol/ocean.js/commit/84a022f80c30bed5c7ad6ab692252210a71e9ae3)
|
|
267
|
+
|
|
268
|
+
#### [v1.0.0-next.14](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.13...v1.0.0-next.14)
|
|
269
|
+
|
|
270
|
+
> 10 February 2022
|
|
271
|
+
|
|
272
|
+
- fixes [`#1273`](https://github.com/oceanprotocol/ocean.js/pull/1273)
|
|
273
|
+
- Release 1.0.0-next.14 [`6aa1231`](https://github.com/oceanprotocol/ocean.js/commit/6aa1231a0a64d32a148108fc43bef2afca42e873)
|
|
274
|
+
|
|
275
|
+
#### [v1.0.0-next.13](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.12...v1.0.0-next.13)
|
|
276
|
+
|
|
277
|
+
> 10 February 2022
|
|
278
|
+
|
|
279
|
+
- Bump typescript from 4.4.4 to 4.5.5 [`#1270`](https://github.com/oceanprotocol/ocean.js/pull/1270)
|
|
280
|
+
- Bump mocha from 9.1.3 to 9.2.0 [`#1269`](https://github.com/oceanprotocol/ocean.js/pull/1269)
|
|
281
|
+
- Use v4main images [`#1267`](https://github.com/oceanprotocol/ocean.js/pull/1267)
|
|
282
|
+
- Bump ts-node from 10.4.0 to 10.5.0 [`#1268`](https://github.com/oceanprotocol/ocean.js/pull/1268)
|
|
283
|
+
- Bump @truffle/hdwallet-provider from 1.7.0 to 2.0.3 [`#1271`](https://github.com/oceanprotocol/ocean.js/pull/1271)
|
|
284
|
+
- Bump mock-local-storage from 1.1.19 to 1.1.20 [`#1263`](https://github.com/oceanprotocol/ocean.js/pull/1263)
|
|
285
|
+
- Bump cross-fetch from 3.1.4 to 3.1.5 [`#1264`](https://github.com/oceanprotocol/ocean.js/pull/1264)
|
|
286
|
+
- Bump auto-changelog from 2.3.0 to 2.4.0 [`#1265`](https://github.com/oceanprotocol/ocean.js/pull/1265)
|
|
287
|
+
- Bump @types/mocha from 9.0.0 to 9.1.0 [`#1262`](https://github.com/oceanprotocol/ocean.js/pull/1262)
|
|
288
|
+
- Bump follow-redirects from 1.14.6 to 1.14.8 [`#1261`](https://github.com/oceanprotocol/ocean.js/pull/1261)
|
|
289
|
+
- Bump simple-get from 2.8.1 to 2.8.2 [`#1260`](https://github.com/oceanprotocol/ocean.js/pull/1260)
|
|
290
|
+
- Bump @openzeppelin/contracts from 4.4.1 to 4.4.2 [`#1259`](https://github.com/oceanprotocol/ocean.js/pull/1259)
|
|
291
|
+
- Bump @types/node from 17.0.8 to 17.0.16 [`#1255`](https://github.com/oceanprotocol/ocean.js/pull/1255)
|
|
292
|
+
- Bump typedoc from 0.22.10 to 0.22.11 [`#1230`](https://github.com/oceanprotocol/ocean.js/pull/1230)
|
|
293
|
+
- npm audit fix [`92f4eb9`](https://github.com/oceanprotocol/ocean.js/commit/92f4eb96695a1e32e750f6c3c0de7774e992e4f2)
|
|
294
|
+
- Release 1.0.0-next.13 [`5152bc2`](https://github.com/oceanprotocol/ocean.js/commit/5152bc21646a6375799838daf77188a9dd6713f0)
|
|
295
|
+
|
|
296
|
+
#### [v1.0.0-next.12](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.11...v1.0.0-next.12)
|
|
297
|
+
|
|
298
|
+
> 9 February 2022
|
|
299
|
+
|
|
300
|
+
- use compute environments [`#1258`](https://github.com/oceanprotocol/ocean.js/pull/1258)
|
|
301
|
+
- Bump web3 from 1.6.1 to 1.7.0 [`#1224`](https://github.com/oceanprotocol/ocean.js/pull/1224)
|
|
302
|
+
- Barge c2d & latest contracts bump [`#1248`](https://github.com/oceanprotocol/ocean.js/pull/1248)
|
|
303
|
+
- Release 1.0.0-next.12 [`022c8c7`](https://github.com/oceanprotocol/ocean.js/commit/022c8c7454a8e39fe552f68cacb6a5ec75776cdf)
|
|
304
|
+
- fixed version for contracts [`fbcd22e`](https://github.com/oceanprotocol/ocean.js/commit/fbcd22e714d6233d7d71f60d7eabb0cecb2fe963)
|
|
305
|
+
- run push builds against v4main [`9142c35`](https://github.com/oceanprotocol/ocean.js/commit/9142c354f0ba3829a31d71c2814e6bdac406d91e)
|
|
306
|
+
|
|
307
|
+
#### [v1.0.0-next.11](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.10...v1.0.0-next.11)
|
|
308
|
+
|
|
309
|
+
> 7 February 2022
|
|
310
|
+
|
|
311
|
+
- Moved interfaces under types and some small fixes [`#1253`](https://github.com/oceanprotocol/ocean.js/pull/1253)
|
|
312
|
+
- stop removing jsdocs [`#1254`](https://github.com/oceanprotocol/ocean.js/pull/1254)
|
|
313
|
+
- Release 1.0.0-next.11 [`8fc3773`](https://github.com/oceanprotocol/ocean.js/commit/8fc377383434a1c8a3ba68586ab8db85bc922d40)
|
|
314
|
+
|
|
315
|
+
#### [v1.0.0-next.10](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.9...v1.0.0-next.10)
|
|
316
|
+
|
|
317
|
+
> 28 January 2022
|
|
318
|
+
|
|
319
|
+
- remove ammount [`#1241`](https://github.com/oceanprotocol/ocean.js/pull/1241)
|
|
320
|
+
- update contracts [`#1244`](https://github.com/oceanprotocol/ocean.js/pull/1244)
|
|
321
|
+
- Release 1.0.0-next.10 [`3dda9a6`](https://github.com/oceanprotocol/ocean.js/commit/3dda9a67097ac0adc388741b506cd23ef3e2cdb1)
|
|
322
|
+
|
|
323
|
+
#### [v1.0.0-next.9](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.8...v1.0.0-next.9)
|
|
324
|
+
|
|
325
|
+
> 26 January 2022
|
|
326
|
+
|
|
327
|
+
- fix order, update contracts [`#1240`](https://github.com/oceanprotocol/ocean.js/pull/1240)
|
|
328
|
+
- Release 1.0.0-next.9 [`ef83df7`](https://github.com/oceanprotocol/ocean.js/commit/ef83df7c7248402940a25a3f5d223131c7ece82e)
|
|
329
|
+
|
|
330
|
+
#### [v1.0.0-next.8](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.7...v1.0.0-next.8)
|
|
331
|
+
|
|
332
|
+
> 25 January 2022
|
|
333
|
+
|
|
334
|
+
- heleper+ remove old ibs [`#1238`](https://github.com/oceanprotocol/ocean.js/pull/1238)
|
|
335
|
+
- Add setMetaDataAndTokenURI method [`#1234`](https://github.com/oceanprotocol/ocean.js/pull/1234)
|
|
336
|
+
- remove optional fetch method, add abort signal [`#1235`](https://github.com/oceanprotocol/ocean.js/pull/1235)
|
|
337
|
+
- Release 1.0.0-next.8 [`1b0fb28`](https://github.com/oceanprotocol/ocean.js/commit/1b0fb28e7676737f2086f5032dd9dfca85431b0b)
|
|
338
|
+
|
|
339
|
+
#### [v1.0.0-next.7](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.6...v1.0.0-next.7)
|
|
340
|
+
|
|
341
|
+
> 20 January 2022
|
|
342
|
+
|
|
343
|
+
- replaced local artifacts with the published ones [`#1232`](https://github.com/oceanprotocol/ocean.js/pull/1232)
|
|
344
|
+
- Allow users/market to set own gas contract options & configurable web3 contract params [`#1214`](https://github.com/oceanprotocol/ocean.js/pull/1214)
|
|
345
|
+
- Add default http function and fixes provider class [`#1212`](https://github.com/oceanprotocol/ocean.js/pull/1212)
|
|
346
|
+
- Feature/ split orders&fees and uniformize datatoken naming [`#1223`](https://github.com/oceanprotocol/ocean.js/pull/1223)
|
|
347
|
+
- added default contract options and gas in config [`4d60a16`](https://github.com/oceanprotocol/ocean.js/commit/4d60a16f6e79a89ed636b99592167c2c8f8c50ed)
|
|
348
|
+
- update artifacts after latest contract changes [`b4e102e`](https://github.com/oceanprotocol/ocean.js/commit/b4e102e6a6fa597fc9540d169428030db52efcad)
|
|
349
|
+
- update artifacts [`c5b5835`](https://github.com/oceanprotocol/ocean.js/commit/c5b583554eea28bab8a0c3af252dc70a707cdb51)
|
|
350
|
+
|
|
351
|
+
#### [v1.0.0-next.6](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.5...v1.0.0-next.6)
|
|
352
|
+
|
|
353
|
+
> 14 January 2022
|
|
354
|
+
|
|
355
|
+
- up [`#1219`](https://github.com/oceanprotocol/ocean.js/pull/1219)
|
|
356
|
+
- Release 1.0.0-next.6 [`1879315`](https://github.com/oceanprotocol/ocean.js/commit/187931531021b89bd9c735f90c7426aea65dd57b)
|
|
357
|
+
|
|
358
|
+
#### [v1.0.0-next.5](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.4...v1.0.0-next.5)
|
|
359
|
+
|
|
360
|
+
> 13 January 2022
|
|
361
|
+
|
|
362
|
+
- update abi/address [`#1218`](https://github.com/oceanprotocol/ocean.js/pull/1218)
|
|
363
|
+
- Release 1.0.0-next.5 [`672e2b1`](https://github.com/oceanprotocol/ocean.js/commit/672e2b1f4abcc16b4a747b66fa609ea4ca9b5994)
|
|
364
|
+
|
|
7
365
|
#### [v1.0.0-next.4](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.3...v1.0.0-next.4)
|
|
8
366
|
|
|
367
|
+
> 13 January 2022
|
|
368
|
+
|
|
9
369
|
- update addresses based on new deployment [`#1216`](https://github.com/oceanprotocol/ocean.js/pull/1216)
|
|
370
|
+
- Release 1.0.0-next.4 [`a85f29a`](https://github.com/oceanprotocol/ocean.js/commit/a85f29a5d2324f4b17ab45882267920f7a66e42b)
|
|
10
371
|
|
|
11
372
|
#### [v1.0.0-next.3](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.2...v1.0.0-next.3)
|
|
12
373
|
|
|
@@ -189,7 +550,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
189
550
|
- Bump prettier from 2.4.0 to 2.4.1 [`#1027`](https://github.com/oceanprotocol/ocean.js/pull/1027)
|
|
190
551
|
- add catenax network config [`#1025`](https://github.com/oceanprotocol/ocean.js/pull/1025)
|
|
191
552
|
- Bump @oceanprotocol/contracts from 0.6.5 to 0.6.7 [`#1024`](https://github.com/oceanprotocol/ocean.js/pull/1024)
|
|
192
|
-
- Bump aqua queries
|
|
553
|
+
- Bump aqua queries [`3bea2aa`](https://github.com/oceanprotocol/ocean.js/commit/3bea2aaf9082bf1b61219f3d7960c14cec04fa1e)
|
|
193
554
|
- Release 0.17.4 [`2651b72`](https://github.com/oceanprotocol/ocean.js/commit/2651b72a2f02f952eb94e0b83edaf308cbb9e130)
|
|
194
555
|
- Release 0.17.5 [`f893cb8`](https://github.com/oceanprotocol/ocean.js/commit/f893cb8b09e325df238be243713e07d64a158269)
|
|
195
556
|
|
package/README.md
CHANGED
|
@@ -13,27 +13,18 @@
|
|
|
13
13
|
|
|
14
14
|
With ocean.js, you can:
|
|
15
15
|
|
|
16
|
-
- **Publish** data services: downloadable files or compute-to-data.
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- **
|
|
20
|
-
- **Sell** datatokens via an OCEAN-datatoken Balancer pool (for auto price discovery), or for a fixed price
|
|
21
|
-
- **Stake** OCEAN on datatoken pools
|
|
22
|
-
- **Consume** datatokens, to access the service
|
|
23
|
-
- **Transfer** datatokens to another owner, and **all other ERC20 actions**
|
|
24
|
-
using [web3.js](https://web3js.readthedocs.io/en/v1.2.9/web3-eth-contract.html) etc.
|
|
16
|
+
- **Publish** data services: downloadable files or compute-to-data. Create an ERC721 **data NFT** for each service, and ERC20 **datatoken** for access (1.0 datatokens to access).
|
|
17
|
+
- **Sell** datatokens via an OCEAN-datatoken Balancer pool (for auto price discovery), or for a fixed price. Sell data NFTs.
|
|
18
|
+
- **Stake OCEAN** on datatoken pools
|
|
19
|
+
- **Transfer** data NFTs & datatokens to another owner, and **all other ERC721 & ERC20 actions** using [web3.js](https://web3js.readthedocs.io/en/v1.2.9/web3-eth-contract.html) etc.
|
|
25
20
|
|
|
26
21
|
ocean.js is part of the [Ocean Protocol](https://oceanprotocol.com) toolset.
|
|
27
22
|
|
|
28
|
-
This is in alpha state
|
|
23
|
+
This is in alpha state. If you run into problems, please open up a [new issue](https://github.com/oceanprotocol/ocean.js/issues/new?assignees=&labels=bug&template=bug_report.md&title=).
|
|
29
24
|
|
|
30
25
|
- [📚 Prerequisites](#-prerequisites)
|
|
31
26
|
- [🏗 Installation](#-installation)
|
|
32
|
-
- [🏄 Quickstart](#-quickstart)
|
|
33
|
-
- [Beginners Guide](#beginners-guide)
|
|
34
|
-
- [Simple Flow](#simple-flow)
|
|
35
|
-
- [Marketplace Flow](#marketplace-flow)
|
|
36
|
-
- [📖 Learn More](#learn-more)
|
|
27
|
+
- [🏄 Quickstart](#-quickstart): simple flow, marketplace, compute-to-data, more
|
|
37
28
|
- [🦑 Development](#-development)
|
|
38
29
|
- [✨ Code Style](#-code-style)
|
|
39
30
|
- [👩🔬 Testing](#-testing)
|
|
@@ -93,23 +84,12 @@ async function init() {
|
|
|
93
84
|
}
|
|
94
85
|
```
|
|
95
86
|
|
|
96
|
-
|
|
87
|
+
Here are flows to try out, from beginners to advanced.
|
|
97
88
|
|
|
98
|
-
|
|
89
|
+
- **[Beginners guide](docs/beginners_guide.md)** - for developers who are completely new to blockchain, no coding experience is required.
|
|
90
|
+
- **[Simple flow](docs/quickstart_simple.md)** - the essence of Ocean - creating a data NFT & datatoken.
|
|
91
|
+
- **[Marketplace flow](docs/quickstart_marketplace.md)** - a data asset is posted for sale in a datatoken pool, then purchased. Includes metadata and Compute-to-Data.
|
|
99
92
|
|
|
100
|
-
[Go to beginners guide](docs/beginners_guide.md)
|
|
101
|
-
|
|
102
|
-
### Simple Flow
|
|
103
|
-
|
|
104
|
-
This stripped-down flow shows the essence of Ocean. Just downloading, no metadata.
|
|
105
|
-
|
|
106
|
-
[Go to simple flow](docs/quickstart_simple.md)
|
|
107
|
-
|
|
108
|
-
### Marketplace Flow
|
|
109
|
-
|
|
110
|
-
This batteries-included flow includes metadata, multiple services for one datatoken, and compute-to-data.
|
|
111
|
-
|
|
112
|
-
[Go to marketplace flow](docs/quickstart_marketplace.md)
|
|
113
93
|
|
|
114
94
|
### 📖 Learn more
|
|
115
95
|
|
|
@@ -243,7 +223,7 @@ Further releases afterwards can be done with `npm run release` again and selecti
|
|
|
243
223
|
## 🏛 License
|
|
244
224
|
|
|
245
225
|
```
|
|
246
|
-
Copyright ((C))
|
|
226
|
+
Copyright ((C)) 2022 Ocean Protocol Foundation
|
|
247
227
|
|
|
248
228
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
249
229
|
you may not use this file except in compliance with the License.
|