@cryptorubic/web3 1.2.1 → 1.2.2-alpha.cloudflare.1
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/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# web3
|
|
1
|
+
# web3
|
package/package.json
CHANGED
|
@@ -102,7 +102,9 @@ class BlockchainAdapterFactoryService {
|
|
|
102
102
|
if (!adapter.connected) {
|
|
103
103
|
adapter.initWeb3Client();
|
|
104
104
|
const msg = `Web3 client for ${adapter.constructor.name} initialized successfully.`;
|
|
105
|
-
|
|
105
|
+
if (this.clientParams?.envType == 'local') {
|
|
106
|
+
this.logger ? this.logger?.customLog(msg, adapter) : console.debug(msg, adapter);
|
|
107
|
+
}
|
|
106
108
|
}
|
|
107
109
|
});
|
|
108
110
|
}
|