mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
Release 2.0.5
This commit is contained in:
parent
b1a58b7f13
commit
a74e3edb3a
@ -4,8 +4,16 @@ 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.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.4...v2.0.5)
|
||||||
|
|
||||||
|
- Feature/df rewards [`#531`](https://github.com/oceanprotocol/ocean-subgraph/pull/531)
|
||||||
|
- nft updates [`#530`](https://github.com/oceanprotocol/ocean-subgraph/pull/530)
|
||||||
|
- Bump typescript from 4.8.2 to 4.8.3 [`#527`](https://github.com/oceanprotocol/ocean-subgraph/pull/527)
|
||||||
|
|
||||||
#### [v2.0.4](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.3...v2.0.4)
|
#### [v2.0.4](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.3...v2.0.4)
|
||||||
|
|
||||||
|
> 7 September 2022
|
||||||
|
|
||||||
- update tests for new ocean.js 2.0 [`#526`](https://github.com/oceanprotocol/ocean-subgraph/pull/526)
|
- update tests for new ocean.js 2.0 [`#526`](https://github.com/oceanprotocol/ocean-subgraph/pull/526)
|
||||||
- Bump @graphprotocol/graph-cli from 0.33.0 to 0.33.1 [`#525`](https://github.com/oceanprotocol/ocean-subgraph/pull/525)
|
- Bump @graphprotocol/graph-cli from 0.33.0 to 0.33.1 [`#525`](https://github.com/oceanprotocol/ocean-subgraph/pull/525)
|
||||||
- Bump release-it from 15.4.0 to 15.4.1 [`#524`](https://github.com/oceanprotocol/ocean-subgraph/pull/524)
|
- Bump release-it from 15.4.0 to 15.4.1 [`#524`](https://github.com/oceanprotocol/ocean-subgraph/pull/524)
|
||||||
@ -22,6 +30,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|||||||
- Bump @types/chai from 4.3.1 to 4.3.2 [`#511`](https://github.com/oceanprotocol/ocean-subgraph/pull/511)
|
- Bump @types/chai from 4.3.1 to 4.3.2 [`#511`](https://github.com/oceanprotocol/ocean-subgraph/pull/511)
|
||||||
- Bump @oceanprotocol/lib from 1.1.6 to 1.1.7 [`#512`](https://github.com/oceanprotocol/ocean-subgraph/pull/512)
|
- Bump @oceanprotocol/lib from 1.1.6 to 1.1.7 [`#512`](https://github.com/oceanprotocol/ocean-subgraph/pull/512)
|
||||||
- fixed swapper change issue [`#510`](https://github.com/oceanprotocol/ocean-subgraph/pull/510)
|
- fixed swapper change issue [`#510`](https://github.com/oceanprotocol/ocean-subgraph/pull/510)
|
||||||
|
- Release 2.0.4 [`7a627a3`](https://github.com/oceanprotocol/ocean-subgraph/commit/7a627a3bfde4d496c26a3c0a18e8b4992210a2b2)
|
||||||
|
|
||||||
#### [v2.0.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.2...v2.0.3)
|
#### [v2.0.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.2...v2.0.3)
|
||||||
|
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.4",
|
"version": "2.0.5",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.4",
|
"version": "2.0.5",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@oceanprotocol/contracts": "^1.1.4",
|
"@oceanprotocol/contracts": "^1.1.4",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "2.0.4",
|
"version": "2.0.5",
|
||||||
"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.4'
|
globalStats.version = '2.0.5'
|
||||||
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