Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GundamDweeb committed May 12, 2022
1 parent 32737e7 commit b86cbb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified build/superRare/superRare.wasm
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "super-rare-proto-reputation",
"name": "sr-proto-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ mercuricchloride/super-rare-proto-reputation",
"create-local": "graph create --node http://localhost:8020/ mercuricchloride/super-rare-proto-reputation",
"remove-local": "graph remove --node http://localhost:8020/ mercuricchloride/super-rare-proto-reputation",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 mercuricchloride/super-rare-proto-reputation"
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ graphrica/sr-proto-subgraph",
"create-local": "graph create --node http://localhost:8020/ graphrica/sr-proto-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ graphrica/sr-proto-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 graphrica/sr-proto-subgraph"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.30.0-alpha.1",
Expand Down
2 changes: 1 addition & 1 deletion src/mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function checkType(event: ethereum.EventParam): Array<string> {
switch(event.value.kind){
case ethereum.ValueKind.ADDRESS:
ret = [
event.value.toAddress().toString(),
event.value.toAddress().toHexString(),
"ADDRESS"
]
break
Expand Down

0 comments on commit b86cbb9

Please sign in to comment.