@carrot-protocol/boost-http-client 0.4.4-handoff-dev-6fafd92 → 0.4.5-rm-log1-dev-16f7256

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
@@ -80,9 +80,6 @@ class Client extends api_1.ApiClient {
80
80
  console.log("dry run enabled, exiting before sending tx");
81
81
  return "";
82
82
  }
83
- console.log("unsignedBase64Tx", unsignedBase64Tx);
84
- if (handoffTxns.length > 0)
85
- console.log("handoffTxns", handoffTxns);
86
83
  // 1. Sign the primary transaction (User Transaction)
87
84
  const txBytes = Buffer.from(unsignedBase64Tx, "base64");
88
85
  const tx = anchor_1.web3.VersionedTransaction.deserialize(new Uint8Array(txBytes));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrot-protocol/boost-http-client",
3
- "version": "0.4.4-handoff-dev-6fafd92",
3
+ "version": "0.4.5-rm-log1-dev-16f7256",
4
4
  "description": "HTTP client for Carrot Boost",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -84,8 +84,6 @@ export class Client extends ApiClient {
84
84
  console.log("dry run enabled, exiting before sending tx");
85
85
  return "";
86
86
  }
87
- console.log("unsignedBase64Tx", unsignedBase64Tx);
88
- if (handoffTxns.length > 0) console.log("handoffTxns", handoffTxns);
89
87
 
90
88
  // 1. Sign the primary transaction (User Transaction)
91
89
  const txBytes = Buffer.from(unsignedBase64Tx, "base64");