@haven-fi/solauto-sdk 1.0.136 → 1.0.138
Sign up to get free protection for your applications and to get access to all the features.
@@ -123,10 +123,10 @@ class SolautoClient extends txHandler_1.TxHandler {
|
|
123
123
|
lutAccountsToAdd() {
|
124
124
|
return [
|
125
125
|
this.authority,
|
126
|
-
...(this.signer.publicKey.
|
126
|
+
...((0, umi_web3js_adapters_1.toWeb3JsPublicKey)(this.signer.publicKey).equals(this.authority)
|
127
127
|
? [this.signerSupplyTa]
|
128
128
|
: []),
|
129
|
-
...(this.signer.publicKey.
|
129
|
+
...((0, umi_web3js_adapters_1.toWeb3JsPublicKey)(this.signer.publicKey).equals(this.authority)
|
130
130
|
? [this.signerDebtTa]
|
131
131
|
: []),
|
132
132
|
this.solautoPosition,
|
@@ -27,7 +27,7 @@ const generalUtils_1 = require("./generalUtils");
|
|
27
27
|
const marginfi_sdk_1 = require("../marginfi-sdk");
|
28
28
|
const types_1 = require("../types");
|
29
29
|
function getSolanaRpcConnection(heliusApiKey) {
|
30
|
-
const connection = new web3_js_1.Connection(`https://mainnet.helius-rpc.com/?api-key=${heliusApiKey}`, "
|
30
|
+
const connection = new web3_js_1.Connection(`https://mainnet.helius-rpc.com/?api-key=${heliusApiKey}`, "confirmed");
|
31
31
|
const umi = (0, umi_bundle_defaults_1.createUmi)(connection);
|
32
32
|
return [connection, umi];
|
33
33
|
}
|
package/package.json
CHANGED
@@ -260,10 +260,10 @@ export abstract class SolautoClient extends TxHandler {
|
|
260
260
|
lutAccountsToAdd(): PublicKey[] {
|
261
261
|
return [
|
262
262
|
this.authority,
|
263
|
-
...(this.signer.publicKey.
|
263
|
+
...(toWeb3JsPublicKey(this.signer.publicKey).equals(this.authority)
|
264
264
|
? [this.signerSupplyTa]
|
265
265
|
: []),
|
266
|
-
...(this.signer.publicKey.
|
266
|
+
...(toWeb3JsPublicKey(this.signer.publicKey).equals(this.authority)
|
267
267
|
? [this.signerDebtTa]
|
268
268
|
: []),
|
269
269
|
this.solautoPosition,
|
package/src/utils/solanaUtils.ts
CHANGED
@@ -43,7 +43,7 @@ export function getSolanaRpcConnection(
|
|
43
43
|
): [Connection, Umi] {
|
44
44
|
const connection = new Connection(
|
45
45
|
`https://mainnet.helius-rpc.com/?api-key=${heliusApiKey}`,
|
46
|
-
"
|
46
|
+
"confirmed"
|
47
47
|
);
|
48
48
|
const umi = createUmi(connection);
|
49
49
|
return [connection, umi];
|
@@ -23,7 +23,7 @@ describe("Solauto Marginfi tests", async () => {
|
|
23
23
|
// const signer = setupTest();
|
24
24
|
const signer = setupTest("solauto-manager");
|
25
25
|
|
26
|
-
const payForTransactions =
|
26
|
+
const payForTransactions = true;
|
27
27
|
const useJitoBundle = false;
|
28
28
|
const positionId = 1;
|
29
29
|
|
@@ -39,7 +39,7 @@ describe("Solauto Marginfi tests", async () => {
|
|
39
39
|
{
|
40
40
|
signer,
|
41
41
|
positionId,
|
42
|
-
authority: new PublicKey("
|
42
|
+
authority: new PublicKey("5UqsR2PGzbP8pGPbXEeXx86Gjz2N2UFBAuFZUSVydAEe")
|
43
43
|
// marginfiAccount: new PublicKey(
|
44
44
|
// "4nNvUXF5YqHFcH2nGweSiuvy1ct7V5FXfoCLKFYUN36z"
|
45
45
|
// ),
|
@@ -120,6 +120,8 @@ describe("Solauto Marginfi tests", async () => {
|
|
120
120
|
// }, "deposit")
|
121
121
|
// );
|
122
122
|
|
123
|
+
console.log("POSITION SUPPLY TA:", client.positionSupplyTa);
|
124
|
+
console.log("POSITION DEBT TA:", client.positionDebtTa);
|
123
125
|
transactionItems.push(
|
124
126
|
new TransactionItem(
|
125
127
|
async (attemptNum) =>
|