import { BigNumber } from "bignumber.js"; import type { Transaction } from "./types"; /** * Create an empty transaction * * @returns {Transaction} */ export const createTransaction = (): Transaction => ({ family: "icon", mode: "send", amount: new BigNumber(0), recipient: "", useAllAmount: false, fees: null, });