@zubari/sdk 0.4.0 → 0.4.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/dist/index.js CHANGED
@@ -2184,7 +2184,7 @@ var WalletManager = class _WalletManager {
2184
2184
  *
2185
2185
  * No fallback to placeholder addresses - WDK API is required for real addresses.
2186
2186
  */
2187
- static async deriveAddressForChainAsync(seed, chain, network = "testnet", apiUrl) {
2187
+ static async deriveAddressForChainAsync(seed, chain, network = "mainnet", apiUrl) {
2188
2188
  if (chain === "ethereum") {
2189
2189
  try {
2190
2190
  const wdkService2 = getZubariWdkService({ network, apiUrl });
@@ -7240,7 +7240,7 @@ var TransactionService = class {
7240
7240
  wallets = {};
7241
7241
  constructor(config = {}) {
7242
7242
  this.config = {
7243
- network: config.network || "testnet",
7243
+ network: config.network || "mainnet",
7244
7244
  rpcUrls: config.rpcUrls
7245
7245
  };
7246
7246
  }