fix: as string for string

This commit is contained in:
promaster1332 2023-09-21 10:54:41 +01:00 committed by Koray Koska
parent cef94e3fda
commit ddb53abbed
No known key found for this signature in database
GPG Key ID: 1AE887EC6D5ECD63

@ -6,7 +6,7 @@ import { contractsToInstances } from './contractsToInstances';
export function handleWithdrawal(event: Withdrawal): void {
let entity = new WithdrawalEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
let result = contractsToInstances.get((`${event.address.toHexString()}` as any).toLowerCase()).split('-');
let result = contractsToInstances.get((`${event.address.toHexString()}` as string).toLowerCase()).split('-');
entity.amount = result[1];
entity.currency = result[0];
@ -25,7 +25,7 @@ export function handleWithdrawal(event: Withdrawal): void {
export function handleDeposit(event: Deposit): void {
let entity = new DepositEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
let result = contractsToInstances.get((`${event.address.toHexString()}` as any).toLowerCase()).split('-');
let result = contractsToInstances.get((`${event.address.toHexString()}` as string).toLowerCase()).split('-');
entity.amount = result[1];
entity.currency = result[0];