@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 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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primuslabs/fund-js-sdk",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "author": "Primus Labs <dev@primuslabs.org>",
5
5
  "description": "Primus fund js sdk",
6
6
  "repository": {