import type { TransactionReceiptL2 } from "../nightfall/types"; export interface TransactionResponseData { txDataToSign?: string; transaction?: TransactionReceiptL2; } export interface BalancePerTokenId { balance: number; tokenId: string; } export type BalancePerAddress = (number | BalancePerTokenId)[]; export type Balance = Record;