Skip to content

Commit

Permalink
name => event
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Nov 13, 2024
1 parent d18fc18 commit 769535b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/watchables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type Watchable = {
event: AbiEvent;
target: {
queue: string;
name: string;
event: string;
};
};

Expand All @@ -21,7 +21,7 @@ export const watchables: Watchable[] = [
// ),
// target: {
// queue: 'TestQueue',
// name: 'TestEvent',
// event: 'TestEvent',
// },
// },
{
Expand All @@ -32,7 +32,7 @@ export const watchables: Watchable[] = [
),
target: {
queue: 'SERVER_API',
name: 'EngagementTokenIssued',
event: 'EngagementTokenIssued',
},
},
{
Expand All @@ -43,7 +43,7 @@ export const watchables: Watchable[] = [
),
target: {
queue: 'TestQueue',
name: 'TestEvent',
event: 'TestEvent',
},
},
];

0 comments on commit 769535b

Please sign in to comment.