interface GetIndexerFastWithdrawalSignatureResponse {
    idx: bigint;
    tx: {
        sender: string;
        product_id: number;
        amount: string;
        nonce: number;
    };
    txBytes: `0x${string}`;
    signatures: `0x${string}`[];
}

Properties

idx: bigint
tx: {
    sender: string;
    product_id: number;
    amount: string;
    nonce: number;
}
txBytes: `0x${string}`
signatures: `0x${string}`[]