Skip to content

Commit 91f35bf

Browse files
authored
Add distributor tokens (#53)
* Add distributor tokens * Update version
1 parent 654d654 commit 91f35bf

File tree

8 files changed

+27
-11
lines changed

8 files changed

+27
-11
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stakewise-subgraphs",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Subgraphs for the StakeWise Protocol",
55
"repository": "https://github.com/stakewise/subgraphs",
66
"license": "AGPL-3.0-only",

packages/constants/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "const",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "AGPL-3.0-only",
55
"main": "index.ts",
66
"type": "module",

subgraphs/ethereum/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "AGPL-3.0-only",
55
"scripts": {
66
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
@@ -15,7 +15,7 @@
1515
"deploy:perm_goerli": "yarn build:perm_goerli",
1616
"deploy:gnosis": "yarn build:gnosis && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-gnosis",
1717
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/ethereum-mainnet",
18-
"deploy:local": "graph deploy --version-label 1.2.1 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/ethereum",
18+
"deploy:local": "graph deploy --version-label 1.2.2 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/ethereum",
1919
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/ethereum"
2020
}
2121
}

subgraphs/rari-fuse/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rari-fuse",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "AGPL-3.0-only",
55
"scripts": {
66
"prepare:goerli": "true",
@@ -15,7 +15,7 @@
1515
"deploy:perm_goerli": "yarn build:perm_goerli",
1616
"deploy:gnosis": "yarn build:gnosis",
1717
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/rari-fuse-mainnet",
18-
"deploy:local": "graph deploy --version-label 1.2.1 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/rari-fuse",
18+
"deploy:local": "graph deploy --version-label 1.2.2 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/rari-fuse",
1919
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/rari-fuse"
2020
}
2121
}

subgraphs/stakewise/config/gnosis.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,16 @@
3636
"address": "0x9b23e05aefb37d5ea9b525016d19eb82b65f255c",
3737
"startBlock": "21293582"
3838
},
39-
"distributorTokens": []
39+
"distributorTokens": [
40+
{
41+
"index": 0,
42+
"address": "0xbdf4488dcf7165788d438b62b4c8a333879b7078",
43+
"startBlock": "21383985"
44+
},
45+
{
46+
"index": 1,
47+
"address": "0x5d7309a01b727d6769153fcb1df5587858d53b9c",
48+
"startBlock": "21391068"
49+
}
50+
]
4051
}

subgraphs/stakewise/config/mainnet.json

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@
4646
"index": 1,
4747
"address": "0x83d534ab1d4002249b0e6d22410b62cf31978ca2",
4848
"startBlock": "13398765"
49+
},
50+
{
51+
"index": 2,
52+
"address": "0xe95e4c2dac312f31dc605533d5a4d0af42579308",
53+
"startBlock": "14482784"
4954
}
5055
]
5156
}

subgraphs/stakewise/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stakewise",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "AGPL-3.0-only",
55
"scripts": {
66
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
@@ -15,7 +15,7 @@
1515
"deploy:perm_goerli": "yarn build:perm_goerli && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/stakewise-perm-goerli",
1616
"deploy:gnosis": "yarn build:gnosis && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/stakewise-gnosis",
1717
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/stakewise-mainnet",
18-
"deploy:local": "graph deploy --version-label 1.2.1 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/stakewise",
18+
"deploy:local": "graph deploy --version-label 1.2.2 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/stakewise",
1919
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/stakewise"
2020
}
2121
}

subgraphs/uniswap-v3/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uniswap-v3",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "AGPL-3.0-only",
55
"scripts": {
66
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
@@ -15,7 +15,7 @@
1515
"deploy:perm_goerli": "yarn build:perm_goerli",
1616
"deploy:gnosis": "yarn build:gnosis",
1717
"deploy:mainnet": "yarn build:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ stakewise/uniswap-v3-mainnet",
18-
"deploy:local": "graph deploy --version-label 1.2.1 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/uniswap-v3",
18+
"deploy:local": "graph deploy --version-label 1.2.2 --node $GRAPH_NODE_URL --ipfs $IPFS_URL stakewise/uniswap-v3",
1919
"create:local": "graph create --node $GRAPH_NODE_URL stakewise/uniswap-v3"
2020
}
2121
}

0 commit comments

Comments
 (0)