New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

@stabbleorg/anchor-contrib

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stabbleorg/anchor-contrib - npm Package Compare versions

Comparing version

to
1.6.0

@@ -19,4 +19,4 @@ import { Provider } from "@coral-xyz/anchor";

getPriorityFeeEstimate(transaction: VersionedTransaction, priorityLevel: PriorityLevel): Promise<number>;
createSmartTransaction(instructions: TransactionInstruction[], altAccounts: AddressLookupTableAccount[] | undefined, priorityLevel: PriorityLevel): Promise<TransactionWithBlockhash>;
sendSmartTransaction(instructions: TransactionInstruction[], signers?: Signer[], altAccounts?: AddressLookupTableAccount[], priorityLevel?: PriorityLevel, commitment?: Commitment): Promise<TransactionSignature>;
createSmartTransaction(instructions: TransactionInstruction[], altAccounts: AddressLookupTableAccount[] | undefined, priorityLevel: PriorityLevel, maxPriorityMicroLamports?: number): Promise<TransactionWithBlockhash>;
sendSmartTransaction(instructions: TransactionInstruction[], signers?: Signer[], altAccounts?: AddressLookupTableAccount[], priorityLevel?: PriorityLevel, maxPriorityMicroLamports?: number, commitment?: Commitment): Promise<TransactionSignature>;
getInstructionsFromBuffer(txBuffer: Buffer): Promise<{

@@ -23,0 +23,0 @@ signatures: Uint8Array[];

@@ -23,4 +23,4 @@ "use strict";

var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }

@@ -243,5 +243,6 @@ function step(op) {

WalletContext.prototype.createSmartTransaction = function (instructions_1) {
return __awaiter(this, arguments, void 0, function (instructions, altAccounts, priorityLevel) {
return __awaiter(this, arguments, void 0, function (instructions, altAccounts, priorityLevel, maxPriorityMicroLamports) {
var _a, blockhash, minContextSlot, hasCBInstructions, transaction_1, sim, priorityFee, minPriorityFee, maxPriorityFee, minPriorityFee, maxPriorityFee, transaction;
if (altAccounts === void 0) { altAccounts = []; }
if (maxPriorityMicroLamports === void 0) { maxPriorityMicroLamports = helius_1.MAXIMUM_PRIORITY_FEE; }
return __generator(this, function (_b) {

@@ -279,3 +280,3 @@ switch (_b.label) {

minPriorityFee = Math.ceil(helius_1.MINIMUM_PRIORITY_FEE / sim.unitsConsumed);
maxPriorityFee = Math.ceil(helius_1.MAXIMUM_PRIORITY_FEE / sim.unitsConsumed);
maxPriorityFee = Math.ceil(maxPriorityMicroLamports / sim.unitsConsumed);
instructions.unshift(web3_js_1.ComputeBudgetProgram.setComputeUnitPrice({

@@ -287,3 +288,3 @@ microLamports: Math.min(Math.max(priorityFee, minPriorityFee), maxPriorityFee),

minPriorityFee = Math.ceil(helius_1.MINIMUM_PRIORITY_FEE / 100000);
maxPriorityFee = Math.ceil(helius_1.MAXIMUM_PRIORITY_FEE / 100000);
maxPriorityFee = Math.ceil(maxPriorityMicroLamports / 100000);
instructions.unshift(web3_js_1.ComputeBudgetProgram.setComputeUnitPrice({

@@ -306,3 +307,3 @@ microLamports: Math.min(Math.max(priorityFee, minPriorityFee), maxPriorityFee),

WalletContext.prototype.sendSmartTransaction = function (instructions_1) {
return __awaiter(this, arguments, void 0, function (instructions, signers, altAccounts, priorityLevel, commitment) {
return __awaiter(this, arguments, void 0, function (instructions, signers, altAccounts, priorityLevel, maxPriorityMicroLamports, commitment) {
var _a, transaction, blockhash, minContextSlot, sendOptions, txSigned, txBuff, startTime, signature, abortSignal, err_3;

@@ -312,6 +313,7 @@ if (signers === void 0) { signers = []; }

if (priorityLevel === void 0) { priorityLevel = "High"; }
if (maxPriorityMicroLamports === void 0) { maxPriorityMicroLamports = helius_1.MAXIMUM_PRIORITY_FEE; }
if (commitment === void 0) { commitment = "confirmed"; }
return __generator(this, function (_b) {
switch (_b.label) {
case 0: return [4 /*yield*/, this.createSmartTransaction(instructions, altAccounts, priorityLevel)];
case 0: return [4 /*yield*/, this.createSmartTransaction(instructions, altAccounts, priorityLevel, maxPriorityMicroLamports)];
case 1:

@@ -318,0 +320,0 @@ _a = _b.sent(), transaction = _a.transaction, blockhash = _a.blockhash, minContextSlot = _a.minContextSlot;

{
"name": "@stabbleorg/anchor-contrib",
"version": "1.5.2",
"version": "1.6.0",
"main": "dist/index.js",

@@ -18,3 +18,3 @@ "types": "dist/index.d.ts",

"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.3.11",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.93.4",

@@ -26,6 +26,6 @@ "bn.js": "^5.2.1",

"devDependencies": {
"@types/bn.js": "^5.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
"@types/bn.js": "^5.1.6",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}

@@ -212,2 +212,3 @@ import bs58 from "bs58";

priorityLevel: PriorityLevel,
maxPriorityMicroLamports: number = MAXIMUM_PRIORITY_FEE,
): Promise<TransactionWithBlockhash> {

@@ -253,3 +254,3 @@ const {

const minPriorityFee = Math.ceil(MINIMUM_PRIORITY_FEE / sim.unitsConsumed);
const maxPriorityFee = Math.ceil(MAXIMUM_PRIORITY_FEE / sim.unitsConsumed);
const maxPriorityFee = Math.ceil(maxPriorityMicroLamports / sim.unitsConsumed);

@@ -263,3 +264,3 @@ instructions.unshift(

const minPriorityFee = Math.ceil(MINIMUM_PRIORITY_FEE / 100_000);
const maxPriorityFee = Math.ceil(MAXIMUM_PRIORITY_FEE / 100_000);
const maxPriorityFee = Math.ceil(maxPriorityMicroLamports / 100_000);

@@ -291,2 +292,3 @@ instructions.unshift(

priorityLevel: PriorityLevel = "High",
maxPriorityMicroLamports: number = MAXIMUM_PRIORITY_FEE,
commitment: Commitment = "confirmed",

@@ -298,2 +300,3 @@ ): Promise<TransactionSignature> {

priorityLevel,
maxPriorityMicroLamports,
);

@@ -300,0 +303,0 @@

Sorry, the diff of this file is not supported yet