File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,7 @@ type ContractMapping {
42
42
blockHandlers : [BlockHandler ! ]
43
43
eventHandlers : [EventHandler ! ]
44
44
transactionHandlers : [TransactionHandler ! ]
45
- }
46
-
47
- type TransactionHandler {
48
- handler : String !
45
+ messageHandlers : [MessageHandler ! ]
49
46
}
50
47
51
48
type BlockHandler {
@@ -64,6 +61,15 @@ type EventHandler {
64
61
handler : String !
65
62
}
66
63
64
+ type TransactionHandler {
65
+ handler : String !
66
+ }
67
+
68
+ type MessageHandler {
69
+ message : String !
70
+ handler : String !
71
+ }
72
+
67
73
type Graft {
68
74
base : String !
69
75
block : BigInt !
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ module.exports = class CosmosSubgraph {
16
16
'blockHandlers' ,
17
17
'eventHandlers' ,
18
18
'transactionHandlers' ,
19
+ 'messageHandlers' ,
19
20
] )
20
21
}
21
22
}
You can’t perform that action at this time.
0 commit comments