-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "nftx-v2-subgraph",
"license": "UNLICENSED",
"scripts": {
"init": "graph init --studio nftx-v2",
"auth": "graph auth --studio https://api.thegraph.com/deploy/ $GRAPH_ACCESS_TOKEN",
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"prepare-mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare-palm": "mustache config/palm.json subgraph.template.yaml > subgraph.yaml",
"prepare-rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"prepare-goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
"prepare-arbitrum": "mustache config/arbitrum.json subgraph.template.yaml > subgraph.yaml",
"deploy-arbitrum": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ nftx-project/nftx-v2-arbitrum",
"deploy-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ nftx-project/nftx-v2-rinkeby",
"deploy-goerli": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ nftx-project/nftx-v2-goerli",
"deploy-mainnet": "graph deploy --studio nftx-v2",
"deploy-rinkeby-shared": "graph deploy --product hosted-service nftx-project/nftx-v2-rinkeby",
"deploy-goerli-shared": "graph deploy --product hosted-service nftx-project/nftx-v2-1-goerli",
"deploy-mainnet-shared": "graph deploy --product hosted-service nftx-project/nftx-v2",
"deploy-mainnet-shared-test": "graph deploy --product hosted-service nftx-project/nftx-v2-1-mainnet",
"deploy-mainnet-shared-legacy": "graph deploy --product hosted-service nftx-project/nftx-v2-legacy",
"deploy-arbitrum-shared": "graph deploy --product hosted-service nftx-project/nftx-v2-arbitrum",
"deploy-arbitrum-shared-test": "graph deploy --product hosted-service nftx-project/nftx-v2-1-arbitrum",
"deploy-arbitrum-nftx": "graph deploy --ipfs http://116.202.19.181:5001 --node http://116.202.19.181:8020 nftx-hosted/nftx-v2-arbitrum ",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,json,md}\""
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.29.3",
"@graphprotocol/graph-cli": "0.45.0",
"mustache": "4.2.0"
},
"devDependencies": {
"prettier": "2.3.0"
},
"version": "1.3.3",
"main": "index.js",
"repository": "[email protected]:NFTX-project/nftx-v2-subgraph.git",
"author": "Caps <[email protected]>"
}