Skip to content

Commit

Permalink
fix mustache
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed Oct 30, 2023
1 parent 89d406a commit 459fbc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"graph:auth": "graph auth --product hosted-service",
"build:goerli": "mustache ./config/goerli.json subgraph.template.yaml > subgraph.yaml && graph codegen subgraph.yaml && graph build subgraph.yaml",
"build:mumbai": "mustache ./config/mumbai.json subgraph.template.yaml > subgraph.yamll && graph codegen subgraph.yaml && graph build subgraph.yaml",
"build:mumbai": "mustache ./config/mumbai.json subgraph.template.yaml > subgraph.yaml && graph codegen subgraph.yaml && graph build subgraph.yaml",
"build:polygon": "mustache ./config/polygon.json subgraph.template.yaml > subgraph.yaml && graph codegen subgraph.yaml && graph build subgraph.yaml",
"deploy:goerli": "graph deploy --node https://api.thegraph.com/deploy/orium-network/nft-roles-goerli",
"deploy:mumbai": "graph deploy --node https://api.thegraph.com/deploy/orium-network/nft-roles-mumbai",
Expand Down
6 changes: 3 additions & 3 deletions subgraph.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dataSources:
{{#erc721}}
- name: {{name}}
kind: ethereum
network: matic
network: {{network}}
source:
abi: ERC721
address: '{{address}}'
Expand All @@ -30,7 +30,7 @@ dataSources:
{{#erc1155}}
- name: {{name}}
kind: ethereum
network: matic
network: {{network}}
source:
abi: ERC1155
address: '{{address}}'
Expand All @@ -55,7 +55,7 @@ dataSources:

- name: ERC7432
kind: ethereum
network: matic
network: {{network}}
source:
abi: ERC7432
mapping:
Expand Down

0 comments on commit 459fbc6

Please sign in to comment.