mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
Release 3.0.7
This commit is contained in:
parent
5b2ccbc276
commit
8691538078
@ -4,9 +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).
|
||||||
|
|
||||||
|
#### [v3.0.7](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.6...v3.0.7)
|
||||||
|
|
||||||
|
- switch amount from wei to numeric [`#666`](https://github.com/oceanprotocol/ocean-subgraph/pull/666)
|
||||||
|
|
||||||
#### [v3.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.5...v3.0.6)
|
#### [v3.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.5...v3.0.6)
|
||||||
|
|
||||||
|
> 28 April 2023
|
||||||
|
|
||||||
- proper veDelegation [`#663`](https://github.com/oceanprotocol/ocean-subgraph/pull/663)
|
- proper veDelegation [`#663`](https://github.com/oceanprotocol/ocean-subgraph/pull/663)
|
||||||
|
- Release 3.0.6 [`9fd0553`](https://github.com/oceanprotocol/ocean-subgraph/commit/9fd055333705185b5f507fddcdf0f5502add1f1c)
|
||||||
|
|
||||||
#### [v3.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.4...v3.0.5)
|
#### [v3.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.4...v3.0.5)
|
||||||
|
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "3.0.6",
|
"version": "3.0.7",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "3.0.6",
|
"version": "3.0.7",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@oceanprotocol/contracts": "^1.1.12",
|
"@oceanprotocol/contracts": "^1.1.12",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ocean-subgraph",
|
"name": "ocean-subgraph",
|
||||||
"version": "3.0.6",
|
"version": "3.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 = '3.0.6'
|
globalStats.version = '3.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