import { ChainType } from '@/domain/value-objects';
export class HandleDepositCommand {
constructor(
public readonly userId: string,
public readonly amount: number,
public readonly chainType: ChainType,
public readonly txHash: string,
) {}
}