@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
7 lines • 364 B
JavaScript
import { rpcClient } from "../network/rpc";
import { deserializeTransaction } from "./utils";
export const broadcast = async ({ configOrCurrencyId, txWithSignature, }) => {
const transaction = deserializeTransaction(txWithSignature);
return await rpcClient.broadcastTransaction({ configOrCurrencyId, transaction });
};
//# sourceMappingURL=broadcast.js.map