@deserialize/multi-vm-wallet 1.5.2 → 1.5.21
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/evm/evm.js +1 -1
- package/package.json +1 -1
- package/utils/evm/evm.ts +1 -1
package/dist/evm/evm.js
CHANGED
|
@@ -72,7 +72,7 @@ class EVMVM extends vm_1.VM {
|
|
|
72
72
|
return await (0, utils_1.getTokenBalance)(tokenAddress, address, connection);
|
|
73
73
|
}
|
|
74
74
|
static convertFromEntropyToPrivateKey = (entropy) => {
|
|
75
|
-
return (0, viem_1.toHex)(entropy);
|
|
75
|
+
return (0, viem_1.toHex)(entropy).substring(0, 64);
|
|
76
76
|
};
|
|
77
77
|
async discoverWallets(connection, options) {
|
|
78
78
|
const startTime = Date.now();
|
package/package.json
CHANGED
package/utils/evm/evm.ts
CHANGED