From 3bd01453828096a2a6b3f93f5aab1b000ac0c36d Mon Sep 17 00:00:00 2001 From: Suro Date: Mon, 30 Sep 2024 13:37:44 +0300 Subject: [PATCH] *added scribe exchange --- protocols/scribe-exchange-v4.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 protocols/scribe-exchange-v4.ts diff --git a/protocols/scribe-exchange-v4.ts b/protocols/scribe-exchange-v4.ts new file mode 100644 index 0000000000..a262364174 --- /dev/null +++ b/protocols/scribe-exchange-v4.ts @@ -0,0 +1,10 @@ +import { uniV3Exports } from '../helpers/uniswap'; + +const poolEvent = + 'event Pool(address indexed token0,address indexed token1,address pool)'; +export default uniV3Exports({ + scroll: { + poolCreatedEvent: poolEvent, + factory: '0xDc62aCDF75cc7EA4D93C69B2866d9642E79d5e2e', + }, +});