@ledgerhq/coin-canton
Version:
12 lines • 344 B
JavaScript
import BigNumber from "bignumber.js";
// We create an empty transaction that will be filled later
export const createTransaction = () => ({
family: "canton",
amount: new BigNumber(0),
recipient: "",
fee: null,
memo: undefined,
networkInfo: null,
feeCustomUnit: null,
});
//# sourceMappingURL=createTransaction.js.map