@fystack/sdk 0.1.5 → 0.1.6

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.cjs CHANGED
@@ -736,7 +736,6 @@ class EtherSigner extends ethers.AbstractSigner {
736
736
  async sendTransaction(tx) {
737
737
  const startTime = new Date();
738
738
  console.log(`[WalletSDK] sendTransaction started at: ${startTime.toLocaleString()}`);
739
- debugger;
740
739
  if (!this.address) {
741
740
  await this.getAddress();
742
741
  }
package/dist/index.esm.js CHANGED
@@ -728,7 +728,6 @@ class EtherSigner extends AbstractSigner {
728
728
  async sendTransaction(tx) {
729
729
  const startTime = new Date();
730
730
  console.log(`[WalletSDK] sendTransaction started at: ${startTime.toLocaleString()}`);
731
- debugger;
732
731
  if (!this.address) {
733
732
  await this.getAddress();
734
733
  }
package/dist/index.mjs CHANGED
@@ -728,7 +728,6 @@ class EtherSigner extends AbstractSigner {
728
728
  async sendTransaction(tx) {
729
729
  const startTime = new Date();
730
730
  console.log(`[WalletSDK] sendTransaction started at: ${startTime.toLocaleString()}`);
731
- debugger;
732
731
  if (!this.address) {
733
732
  await this.getAddress();
734
733
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fystack/sdk",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Wallet SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/types/index.d.ts",
package/src/signer.ts CHANGED
@@ -234,7 +234,6 @@ export class EtherSigner extends AbstractSigner {
234
234
  const startTime = new Date()
235
235
  console.log(`[WalletSDK] sendTransaction started at: ${startTime.toLocaleString()}`)
236
236
 
237
- debugger
238
237
  if (!this.address) {
239
238
  await this.getAddress()
240
239
  }