UNPKG

@ledgerhq/coin-multiversx

Version:
19 lines 457 B
import BigNumber from "bignumber.js"; import { MIN_GAS_LIMIT } from "./constants"; /** * Create an empty t * * @returns {Transaction} */ export const createTransaction = () => { return { family: "multiversx", mode: "send", amount: new BigNumber(0), recipient: "", useAllAmount: false, fees: new BigNumber(50000), gasLimit: MIN_GAS_LIMIT, }; }; //# sourceMappingURL=createTransaction.js.map