mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
Release 2.0.7
This commit is contained in:
parent
8cb1d83a26
commit
91122175dc
10
CHANGELOG.md
10
CHANGELOG.md
@ -4,10 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
|
|||||||
|
|
||||||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
||||||
|
|
||||||
|
#### [v2.0.7](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.6...v2.0.7)
|
||||||
|
|
||||||
|
- Feature/graphnode 27 [`#541`](https://github.com/oceanprotocol/ocean-subgraph/pull/541)
|
||||||
|
- Add gasUsed and gasPrice to order [`#540`](https://github.com/oceanprotocol/ocean-subgraph/pull/540)
|
||||||
|
- add goerli npm command [`#538`](https://github.com/oceanprotocol/ocean-subgraph/pull/538)
|
||||||
|
- Bump release-it from 15.4.1 to 15.4.2 [`#535`](https://github.com/oceanprotocol/ocean-subgraph/pull/535)
|
||||||
|
|
||||||
#### [v2.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.5...v2.0.6)
|
#### [v2.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.5...v2.0.6)
|
||||||
|
|
||||||
|
> 14 September 2022
|
||||||
|
|
||||||
- fix nftUpdate critical bug [`#534`](https://github.com/oceanprotocol/ocean-subgraph/pull/534)
|
- fix nftUpdate critical bug [`#534`](https://github.com/oceanprotocol/ocean-subgraph/pull/534)
|
||||||
- add erc725 key/value store [`#533`](https://github.com/oceanprotocol/ocean-subgraph/pull/533)
|
- add erc725 key/value store [`#533`](https://github.com/oceanprotocol/ocean-subgraph/pull/533)
|
||||||
|
- Release 2.0.6 [`181a4f4`](https://github.com/oceanprotocol/ocean-subgraph/commit/181a4f45d0be93140677ba96470bb33a4936d88e)
|
||||||
|
|
||||||
#### [v2.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.4...v2.0.5)
|
#### [v2.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.4...v2.0.5)
|
||||||
|
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@oceanprotocol/contracts": "^1.1.6",
|
"@oceanprotocol/contracts": "^1.1.6",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "",
|
"start": "",
|
||||||
"quickstart:development": "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local",
|
"quickstart:development": "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local",
|
||||||
|
@ -13,7 +13,7 @@ export function getGlobalStats(): GlobalStatistic {
|
|||||||
let globalStats = GlobalStatistic.load(GLOBAL_ID)
|
let globalStats = GlobalStatistic.load(GLOBAL_ID)
|
||||||
if (!globalStats) {
|
if (!globalStats) {
|
||||||
globalStats = new GlobalStatistic(GLOBAL_ID)
|
globalStats = new GlobalStatistic(GLOBAL_ID)
|
||||||
globalStats.version = '2.0.6'
|
globalStats.version = '2.0.7'
|
||||||
globalStats.orderCount = 0
|
globalStats.orderCount = 0
|
||||||
globalStats.fixedCount = 0
|
globalStats.fixedCount = 0
|
||||||
globalStats.datatokenCount = 0
|
globalStats.datatokenCount = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user