Skip to content

Commit

Permalink
add arbitrum contract
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 authored Dec 5, 2024
1 parent 697705e commit dca816d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/watchables.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseAbiItem } from 'viem';
import { baseSepolia } from 'viem/chains';
import { baseSepolia, arbitrum } from 'viem/chains';
import { Watchable } from './types';
import { Event, Queue } from '@togethercrew.dev/tc-messagebroker';

Expand Down Expand Up @@ -27,6 +27,17 @@ export const watchables: Watchable[] = [
event: Event.SERVER_API.EngagementTokenIssued,
},
},
{
chain: arbitrum,
address: '0x89aDc2E7561914884c47a2F5447ac5052e6770b1',
event: parseAbiItem(
'event Issue(address indexed account, uint indexed tokenId)',
),
target: {
queue: Queue.SERVER_API,
event: Event.SERVER_API.EngagementTokenIssued,
},
},
// {
// chain: arbitrumSepolia,
// address: '0x14A19Db36DfB60C41932daE2d1c1b15Bd0f99792',
Expand Down

0 comments on commit dca816d

Please sign in to comment.