@carrot-protocol/boost-http-client 0.1.2 → 0.1.3

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
@@ -187,6 +187,6 @@ async function handleApiCall(apiCall) {
187
187
  }
188
188
  function getDummyProvider() {
189
189
  return new anchor_1.AnchorProvider(new anchor_1.web3.Connection("http://localhost:8899"), new anchor_1.Wallet(anchor_1.web3.Keypair.generate()), {
190
- skipPreflight: false,
190
+ skipPreflight: true,
191
191
  });
192
192
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrot-protocol/boost-http-client",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "HTTP client for Carrot Boost API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -208,7 +208,7 @@ function getDummyProvider(): AnchorProvider {
208
208
  new web3.Connection("http://localhost:8899"),
209
209
  new Wallet(web3.Keypair.generate()),
210
210
  {
211
- skipPreflight: false,
211
+ skipPreflight: true,
212
212
  },
213
213
  );
214
214
  }