Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
toyv0 committed Jan 21, 2024
1 parent 55d969e commit 93fb860
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion subgraph/handlers/Alchemist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {
AlchemistRepayLimitUpdatedEvent,
AlchemistSentinelSetEvent,
AlchemistSnapEvent,
AlchemistSweepTokensEvent,
AlchemistTokenAdapterUpdatedEvent,
AlchemistTransmuterUpdatedEvent,
AlchemistUnderlyingTokenEnabledEvent,
Expand Down
3 changes: 0 additions & 3 deletions subgraph/handlers/FactoryPool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,6 @@ function getTokenInfo(address: Address): TokenInfo {
);
}

export function handleRampA(): void {}
export function handleStopRampA(): void {}

export function handleTokenExchange(event: TokenExchange): void {}
// export function handleTokenExchange(event: TokenExchange): void {
// let pool = getOrCreatePool(event.address, event);
Expand Down
7 changes: 0 additions & 7 deletions subgraph/handlers/TransmuterBuffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
TransmuterBufferSetSourceEvent,
TransmuterBufferSetAmoEvent,
TransmuterBufferSetDivertToAmoEvent,
TransmuterBufferSetTransmuter,
} from '../generated/schema';
import {
RefreshStrategies,
Expand Down Expand Up @@ -89,12 +88,6 @@ export function handleSetAlchemist(event: SetAlchemist): void {
entity.save();
}

export function handleSetTransmuter(event: SetTransmuter): void {
const entity = createTransmuterBufferEvent<TransmuterBufferSetTransmuter>(event);
entity.transmuter = event.params.transmuter;
entity.save();
}

export function handleSetFlowRate(event: SetFlowRate): void {
const entity = createTransmuterBufferEvent<TransmuterBufferSetFlowRateEvent>(event);
entity.flowRate = event.params.flowRate;
Expand Down

0 comments on commit 93fb860

Please sign in to comment.