@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
17 lines (12 loc) • 655 B
JavaScript
;
var utils = require('./utils.js');
var errors = require('./errors.js');
var challenge_transaction = require('./challenge_transaction.js');
exports.gatherTxSigners = utils.gatherTxSigners;
exports.verifyTxSignedBy = utils.verifyTxSignedBy;
exports.InvalidChallengeError = errors.InvalidChallengeError;
exports.buildChallengeTx = challenge_transaction.buildChallengeTx;
exports.readChallengeTx = challenge_transaction.readChallengeTx;
exports.verifyChallengeTxSigners = challenge_transaction.verifyChallengeTxSigners;
exports.verifyChallengeTxThreshold = challenge_transaction.verifyChallengeTxThreshold;
//# sourceMappingURL=index.js.map