Skip to content

Commit f884839

Browse files
author
Daniel Lima
committed
ON-509: pr fixes
1 parent 24a0cd8 commit f884839

6 files changed

+16
-14
lines changed

config/goerli.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"network": "goerli",
33
"erc721": [
44
{
5-
"name": "AavegotchiDiamond",
5+
"name": "ChronosTraveler",
66
"address": "0x450c91d1fe9f3d57b91218f6ff96f7994eec4d32",
77
"startBlock": 8099655
88
}

config/mumbai.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
"network": "mumbai",
33
"erc721": [
44
{
5-
"name": "AavegotchiDiamond",
5+
"name": "AavegotchiGotchi",
66
"address": "0x83e73D9CF22dFc3A767EA1cE0611F7f50306622e",
77
"startBlock": 34467860
88
},
99
{
10-
"name": "RealmDiamond",
10+
"name": "AavegotchiParcel",
1111
"address": "0xBcCf68d104aCEa36b1EA20BBE8f06ceD12CaC008",
1212
"startBlock": 38134604
1313
}
1414
],
1515
"erc1155": [
1616
{
17-
"name": "WearableDiamond",
17+
"name": "AavegotchiWearable",
1818
"address": "0x1b1bcB49A744a09aEd636CDD9893508BdF1431A8",
1919
"startBlock": 34467877
2020
}

config/polygon.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"network": "matic",
33
"erc721": [
44
{
5-
"name": "AavegotchiDiamond",
5+
"name": "AavegotchiGotchi",
66
"address": "0x86935f11c86623dec8a25696e1c19a8659cbf95d",
77
"startBlock": 11516320
88
},
99
{
10-
"name": "RealmDiamond",
10+
"name": "AavegotchiParcel",
1111
"address": "0x1D0360BaC7299C86Ec8E99d0c1C9A95FEfaF2a11",
1212
"startBlock": 20667840
1313
},
@@ -19,7 +19,7 @@
1919
],
2020
"erc1155": [
2121
{
22-
"name": "WearableDiamond",
22+
"name": "AavegotchiWearable",
2323
"address": "0x58de9aabcaeec0f69883c94318810ad79cc6a44f",
2424
"startBlock": 35999793
2525
}

package-lock.json

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"lint:staged": "npx lint-staged"
2323
},
2424
"dependencies": {
25-
"@graphprotocol/graph-cli": "^0.55.0",
26-
"mustache": "^4.2.0"
25+
"@graphprotocol/graph-cli": "^0.55.0"
2726
},
2827
"devDependencies": {
2928
"@graphprotocol/graph-ts": "^0.31.0",
@@ -32,6 +31,7 @@
3231
"eslint-config-prettier": "^9.0.0",
3332
"eslint-plugin-prettier": "^5.0.0",
3433
"matchstick-as": "^0.5.2",
34+
"mustache": "^4.2.0",
3535
"prettier": "^3.0.2"
3636
},
3737
"husky": {

subgraph.template.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ schema:
33
file: ./schema.graphql
44
dataSources:
55

6-
{{#erc721}}
6+
{{#erc721}}
77
{{#isFirstElement}}
88
- name: ERC721
99
{{/isFirstElement}}
@@ -30,7 +30,7 @@ dataSources:
3030
- event: Transfer(indexed address,indexed address,indexed uint256)
3131
handler: handleTransfer
3232
file: ./src/erc721/index.ts
33-
{{/erc721}}
33+
{{/erc721}}
3434

3535
{{#erc1155}}
3636
{{#isFirstElement}}

0 commit comments

Comments
 (0)