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