@triadxyz/triad-protocol
Version:
<div align="center"> <h1>Triad Protocol</h1> </div>
40 lines (39 loc) • 2.26 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const web3_js_1 = require("@solana/web3.js");
const getPriorityFee_1 = __importDefault(require("./getPriorityFee"));
const sendVersionedTransaction = (program, ixs, options, addressLookupTableAccounts) => __awaiter(void 0, void 0, void 0, function* () {
if (options === null || options === void 0 ? void 0 : options.microLamports) {
ixs.push(web3_js_1.ComputeBudgetProgram.setComputeUnitPrice({
microLamports: options.microLamports
}));
}
if (!(options === null || options === void 0 ? void 0 : options.microLamports)) {
const priorityFee = yield (0, getPriorityFee_1.default)();
ixs.push(web3_js_1.ComputeBudgetProgram.setComputeUnitPrice({
microLamports: priorityFee
}));
}
const { blockhash } = yield program.provider.connection.getLatestBlockhash();
return program.provider.sendAndConfirm(new web3_js_1.VersionedTransaction(new web3_js_1.TransactionMessage({
instructions: ixs,
recentBlockhash: blockhash,
payerKey: program.provider.publicKey
}).compileToV0Message(addressLookupTableAccounts)), [], {
skipPreflight: options === null || options === void 0 ? void 0 : options.skipPreflight,
commitment: options === null || options === void 0 ? void 0 : options.commitment
});
});
exports.default = sendVersionedTransaction;