Skip to content

Commit

Permalink
count WETH/BSWAP initial liquidity as transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruv Chauhan authored and Dhruv Chauhan committed Sep 11, 2023
1 parent 3fffa26 commit a6183bb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions subgraphs/uniswap-forks/src/mappings/pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@ export function handleTransfer(event: Transfer): void {
) {
return;
}
// ignore initial liquidity lock up for baseswap BSWAP-ETH pool
if (
dataSource.network() == Network.BASE &&
event.transaction.hash.toHexString() ==
"0x8fe53fa234ff89bed2ca6cb2c5528f53a6e5e3df313279d694421f4cef8cc4b2"
) {
return;
}
// mints
if (event.params.from.toHexString() == ZERO_ADDRESS) {
handleTransferMint(
Expand Down

0 comments on commit a6183bb

Please sign in to comment.