@cryptorubic/web3 0.0.28 → 0.0.30
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/package.json
CHANGED
|
@@ -29,7 +29,6 @@ class BlockchainAdapterFactoryService {
|
|
|
29
29
|
getAdapter(blockchain) {
|
|
30
30
|
const adapter = this.adapterStore?.[blockchain];
|
|
31
31
|
if (!adapter) {
|
|
32
|
-
this.logger?.customLog('###########', [this.adapterStore, blockchain]);
|
|
33
32
|
this.logger?.customWarn(`Trying to access non-existing adapter for ${blockchain} blockchain`);
|
|
34
33
|
throw new Error(`Adapter for blockchain ${blockchain} not found`);
|
|
35
34
|
}
|
|
@@ -64,7 +63,7 @@ class BlockchainAdapterFactoryService {
|
|
|
64
63
|
const blockchainType = core_1.BlockchainsInfo.getChainType(blockchain);
|
|
65
64
|
if (blockchainType === core_1.CHAIN_TYPE.EVM) {
|
|
66
65
|
if (blockchain === core_1.BLOCKCHAIN_NAME.GRAVITY) {
|
|
67
|
-
this.logger?.customLog('
|
|
66
|
+
this.logger?.customLog('$$$$$$$$$$$$', viem_blockchain_mapping_1.viemBlockchainMapping?.[blockchain]);
|
|
68
67
|
}
|
|
69
68
|
if (viem_blockchain_mapping_1.viemBlockchainMapping?.[blockchain]) {
|
|
70
69
|
return new evm_adapter_1.EvmAdapter({
|