@weblock-wallet/sdk 0.1.33 → 0.1.35

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.js CHANGED
@@ -104541,9 +104541,6 @@ var NetworkService = class {
104541
104541
  throw new SDKError("Failed to switch network", "NETWORK_ERROR" /* NETWORK_ERROR */);
104542
104542
  }
104543
104543
  }
104544
- async getRegisteredTokenList(blockchainId) {
104545
- return await this.userClient.getRegisteredCoins(blockchainId);
104546
- }
104547
104544
  /**
104548
104545
  * 현재 네트워크 초기화
104549
104546
  */
@@ -105968,8 +105965,7 @@ var InternalCoreImpl = class {
105968
105965
  getRegisteredNetworks: () => this.networkService.getRegisteredNetworks(),
105969
105966
  registerNetwork: (params) => this.networkService.registerNetwork(params),
105970
105967
  switchNetwork: (networkId) => this.networkService.switchNetwork(networkId),
105971
- getCurrentNetwork: () => this.networkService.getCurrentNetwork(),
105972
- getRegisteredTokenList: (networkId) => this.networkService.getRegisteredTokenList(networkId)
105968
+ getCurrentNetwork: () => this.networkService.getCurrentNetwork()
105973
105969
  };
105974
105970
  this.asset = {
105975
105971
  transfer: (params) => this.assetService.transfer(params),
@@ -106373,9 +106369,6 @@ var NetworkModule = class {
106373
106369
  async switchNetwork(networkId) {
106374
106370
  await this.core.network.switchNetwork(networkId);
106375
106371
  }
106376
- async getRegisteredTokenList(blockchainId) {
106377
- return this.core.network.getRegisteredTokenList(blockchainId);
106378
- }
106379
106372
  };
106380
106373
 
106381
106374
  // src/index.ts