@fystack/sdk 0.1.4 → 0.1.5

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,6 +736,7 @@ 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;
739
740
  if (!this.address) {
740
741
  await this.getAddress();
741
742
  }
package/dist/index.esm.js CHANGED
@@ -728,6 +728,7 @@ 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;
731
732
  if (!this.address) {
732
733
  await this.getAddress();
733
734
  }
package/dist/index.mjs CHANGED
@@ -728,6 +728,7 @@ 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;
731
732
  if (!this.address) {
732
733
  await this.getAddress();
733
734
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fystack/sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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,6 +234,7 @@ 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
237
238
  if (!this.address) {
238
239
  await this.getAddress()
239
240
  }