@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 +1 -0
- package/dist/index.esm.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/signer.ts +1 -0
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
package/src/signer.ts
CHANGED