@primuslabs/fund-js-sdk 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5840,8 +5840,8 @@ async function reSend({
|
|
|
5840
5840
|
const tx = new import_web33.Transaction().add(createIx).add(reRecordDataInitIx).add(reSendIx);
|
|
5841
5841
|
tx.feePayer = userKey;
|
|
5842
5842
|
tx.recentBlockhash = (await provider.connection.getLatestBlockhash()).blockhash;
|
|
5843
|
-
tx.partialSign(spaceAccount);
|
|
5844
5843
|
const signedTx = await provider.wallet.signTransaction(tx);
|
|
5844
|
+
signedTx.partialSign(spaceAccount);
|
|
5845
5845
|
signatureStr = getTxSigStrFromTx(signedTx);
|
|
5846
5846
|
const isOnChain = await getTxIsOnChain(signatureStr, provider.connection);
|
|
5847
5847
|
if (isOnChain) {
|
package/dist/index.mjs
CHANGED
|
@@ -5813,8 +5813,8 @@ async function reSend({
|
|
|
5813
5813
|
const tx = new Transaction().add(createIx).add(reRecordDataInitIx).add(reSendIx);
|
|
5814
5814
|
tx.feePayer = userKey;
|
|
5815
5815
|
tx.recentBlockhash = (await provider.connection.getLatestBlockhash()).blockhash;
|
|
5816
|
-
tx.partialSign(spaceAccount);
|
|
5817
5816
|
const signedTx = await provider.wallet.signTransaction(tx);
|
|
5817
|
+
signedTx.partialSign(spaceAccount);
|
|
5818
5818
|
signatureStr = getTxSigStrFromTx(signedTx);
|
|
5819
5819
|
const isOnChain = await getTxIsOnChain(signatureStr, provider.connection);
|
|
5820
5820
|
if (isOnChain) {
|