jton-contracts
Version:
Free TON contracts wrapped in jTON
14 lines (13 loc) • 440 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prepareGiverV2 = void 0;
const jton_1 = require("jton");
const __1 = require("../");
function prepareGiverV2(config, keysMap, timeout) {
const { client, giverKeys } = (0, jton_1.prepare)(config, keysMap);
return {
client: client,
giver: new __1.GiverV2(client, giverKeys, timeout)
};
}
exports.prepareGiverV2 = prepareGiverV2;