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