// SPDX-FileCopyrightText: © 2024 LEDGER SAS // SPDX-License-Identifier: Apache-2.0 import type { TransactionIntent, TxDataNotSupported } from '../api/types' export function craftTransactionData(intent: TransactionIntent): TxDataNotSupported { void intent return { type: 'none' } }