UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

13 lines (10 loc) 331 B
import { KeypairSigner } from './signer.js'; const basicNodeSigner = (keypair, networkPassphrase) => { const { signTransaction, signAuthEntry } = new KeypairSigner( keypair, networkPassphrase ); return { signTransaction, signAuthEntry }; }; export { basicNodeSigner }; //# sourceMappingURL=basic_node_signer.js.map