@orca-so/common-sdk
Advanced tools
Comparing version 0.6.4-beta.0 to 0.6.4
@@ -140,7 +140,2 @@ "use strict"; | ||
prependInstructions = [ | ||
web3_js_1.SystemProgram.transfer({ | ||
fromPubkey: this.wallet.publicKey, | ||
toPubkey: (0, jito_tip_1.getJitoTipAddress)(), | ||
lamports: computeBudgetOption.jitoTipLamports ?? 0, | ||
}), | ||
web3_js_1.ComputeBudgetProgram.setComputeUnitLimit({ | ||
@@ -153,2 +148,9 @@ units: computeLimit, | ||
]; | ||
if (computeBudgetOption.jitoTipLamports && computeBudgetOption.jitoTipLamports > 0) { | ||
prependInstructions.push(web3_js_1.SystemProgram.transfer({ | ||
fromPubkey: this.wallet.publicKey, | ||
toPubkey: (0, jito_tip_1.getJitoTipAddress)(), | ||
lamports: computeBudgetOption.jitoTipLamports, | ||
})); | ||
} | ||
} | ||
@@ -160,7 +162,2 @@ if (computeBudgetOption.type === "auto") { | ||
prependInstructions = [ | ||
web3_js_1.SystemProgram.transfer({ | ||
fromPubkey: this.wallet.publicKey, | ||
toPubkey: (0, jito_tip_1.getJitoTipAddress)(), | ||
lamports: 0, | ||
}), | ||
web3_js_1.ComputeBudgetProgram.setComputeUnitLimit({ | ||
@@ -173,2 +170,9 @@ units: compute_budget_1.DEFAULT_MAX_COMPUTE_UNIT_LIMIT, | ||
]; | ||
if (computeBudgetOption.jitoTipLamports && computeBudgetOption.jitoTipLamports > 0) { | ||
prependInstructions.push(web3_js_1.SystemProgram.transfer({ | ||
fromPubkey: this.wallet.publicKey, | ||
toPubkey: (0, jito_tip_1.getJitoTipAddress)(), | ||
lamports: computeBudgetOption.jitoTipLamports, | ||
})); | ||
} | ||
} | ||
@@ -175,0 +179,0 @@ const allSigners = ix.signers.concat(this.signers); |
{ | ||
"name": "@orca-so/common-sdk", | ||
"version": "0.6.4-beta.0", | ||
"version": "0.6.4", | ||
"description": "Common Typescript components across Orca", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/orca-so/orca-sdks", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
162285
2050