@d13co/use-wallet 4.5.14 → 4.5.15
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 +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8653,16 +8653,16 @@ var AlgoXEvmBaseWallet = class extends BaseWallet {
|
|
|
8653
8653
|
this.store = params.store;
|
|
8654
8654
|
}
|
|
8655
8655
|
/**
|
|
8656
|
-
* Default metadata for
|
|
8656
|
+
* Default metadata for xChain EVM wallets.
|
|
8657
8657
|
* Subclasses MUST override this with their own metadata including isAlgoXEvm: "EVM"
|
|
8658
8658
|
*/
|
|
8659
8659
|
static defaultMetadata;
|
|
8660
8660
|
/**
|
|
8661
|
-
* Initialize the
|
|
8661
|
+
* Initialize the xChain EVM SDK for deriving Algorand addresses
|
|
8662
8662
|
*/
|
|
8663
8663
|
async initializeEvmSdk() {
|
|
8664
8664
|
if (!this.algoXEvmSdk) {
|
|
8665
|
-
this.logger.info("Initializing
|
|
8665
|
+
this.logger.info("Initializing xChain EVM SDK...");
|
|
8666
8666
|
if (!this.algorandClient) {
|
|
8667
8667
|
const { AlgorandClient } = await import("@algorandfoundation/algokit-utils");
|
|
8668
8668
|
const algodClient = this.getAlgodClient();
|
|
@@ -8672,7 +8672,7 @@ var AlgoXEvmBaseWallet = class extends BaseWallet {
|
|
|
8672
8672
|
}
|
|
8673
8673
|
const { AlgoXEvmSdk } = await import("algo-x-evm-sdk");
|
|
8674
8674
|
this.algoXEvmSdk = new AlgoXEvmSdk({ algorand: this.algorandClient });
|
|
8675
|
-
this.logger.info("
|
|
8675
|
+
this.logger.info("xChain EVM SDK initialized");
|
|
8676
8676
|
}
|
|
8677
8677
|
return this.algoXEvmSdk;
|
|
8678
8678
|
}
|