|
| 1 | +import { BigInt, ByteArray, crypto, dataSource, ethereum } from "@graphprotocol/graph-ts"; |
1 | 2 | import { KlerosCore, DisputeCreation } from "../../generated/KlerosCore/KlerosCore";
|
2 | 3 | import { Court, Dispute } from "../../generated/schema";
|
3 | 4 | import { ZERO } from "../utils";
|
@@ -27,4 +28,73 @@ export function createDisputeFromEvent(event: DisputeCreation): void {
|
27 | 28 | const roundID = `${disputeID.toString()}-${ZERO.toString()}`;
|
28 | 29 | dispute.currentRound = roundID;
|
29 | 30 | dispute.save();
|
| 31 | + |
| 32 | + updateDisputeRequestData(event); |
| 33 | +} |
| 34 | + |
| 35 | +const DisputeRequest = "DisputeRequest(address,uint256,uint256,uint256,string)"; |
| 36 | + |
| 37 | +const DisputeRequestSignature = crypto.keccak256(ByteArray.fromUTF8(DisputeRequest)); |
| 38 | + |
| 39 | +// note : we are using bytes32 in place of string as strings cannot be decoded and it breaks the function. |
| 40 | +// It is okay for us, as we are interested in the uint256 in front |
| 41 | +// _externalDisputeId,_templateId,_tenplateUri |
| 42 | +const DisputeRequestTypestring = "(uint256,uint256,bytes32)"; |
| 43 | + |
| 44 | +const CrossChainDisputeIncoming = |
| 45 | + "CrossChainDisputeIncoming(address,uint256,address,uint256,uint256,uint256,uint256,string)"; |
| 46 | + |
| 47 | +const CrossChainDisputeIncomingSignature = crypto.keccak256(ByteArray.fromUTF8(CrossChainDisputeIncoming)); |
| 48 | + |
| 49 | +// arbitrator, _arbitrableChainId, _externalDisputeId, _templateId, _templateUri |
| 50 | +// note : arbitrable is an indexed arg, so it will topic[1] |
| 51 | +const CrossChainDisputeIncomingTypestring = "(address,uint256,uint256,uint256,string)"; |
| 52 | + |
| 53 | +export const updateDisputeRequestData = (event: DisputeCreation): void => { |
| 54 | + const dispute = Dispute.load(event.params._disputeID.toString()); |
| 55 | + |
| 56 | + if (!dispute) return; |
| 57 | + |
| 58 | + const receipt = event.receipt; |
| 59 | + if (!receipt) return; |
| 60 | + |
| 61 | + const logs = receipt.logs; |
| 62 | + |
| 63 | + // note that the topic at 0th index is always the event signature |
| 64 | + const disputeRequestEventIndex = logs.findIndex((log) => log.topics[0] == DisputeRequestSignature); |
| 65 | + |
| 66 | + const crossChainDisputeEventIndex = logs.findIndex((log) => log.topics[0] == CrossChainDisputeIncomingSignature); |
| 67 | + |
| 68 | + if (crossChainDisputeEventIndex !== -1) { |
| 69 | + const crossChainDisputeEvent = logs[crossChainDisputeEventIndex]; |
| 70 | + |
| 71 | + const decoded = ethereum.decode(CrossChainDisputeIncomingTypestring, crossChainDisputeEvent.data); |
| 72 | + |
| 73 | + if (!decoded) return; |
| 74 | + |
| 75 | + dispute.isCrossChain = true; |
| 76 | + dispute.arbitrableChainId = decoded.toTuple()[1].toBigInt(); |
| 77 | + dispute.externalDisputeId = decoded.toTuple()[2].toBigInt(); |
| 78 | + dispute.templateId = decoded.toTuple()[3].toBigInt(); |
| 79 | + dispute.save(); |
| 80 | + return; |
| 81 | + } else if (disputeRequestEventIndex !== -1) { |
| 82 | + const disputeRequestEvent = logs[disputeRequestEventIndex]; |
| 83 | + |
| 84 | + const decoded = ethereum.decode(DisputeRequestTypestring, disputeRequestEvent.data); |
| 85 | + if (!decoded) return; |
| 86 | + dispute.isCrossChain = false; |
| 87 | + dispute.arbitrableChainId = getChainId(dataSource.network()); |
| 88 | + dispute.externalDisputeId = decoded.toTuple()[0].toBigInt(); |
| 89 | + dispute.templateId = decoded.toTuple()[1].toBigInt(); |
| 90 | + dispute.save(); |
| 91 | + return; |
| 92 | + } |
| 93 | +}; |
| 94 | + |
| 95 | +// workaround, since hashmap don't work in subgraphs |
| 96 | +function getChainId(name: string): BigInt { |
| 97 | + if (name == "arbitrum-one") return BigInt.fromI32(42161); |
| 98 | + else if (name == "arbitrum-sepolia") return BigInt.fromI32(421614); |
| 99 | + else return BigInt.fromI32(1); |
30 | 100 | }
|
0 commit comments