My Eternl wallet now has an account that is targeted towards the preview TestNet. I did activate the account for connecting to Cardano dApps. I am able to connect to my wallet from Picoswap. However, during the attempt to by the Helios library to verify the connection to the preview TestNet, I am getting an unexpected error report from the Helios library.
As you can see in the call stack sub-window from the screenshot below, this is occurring in the fromValidatorHash() method that belongs to the Address object. If you look in the Console sub-window you can see that the method was expecting the stakingHash parameter to be a StakeKeyHash object or if not that, a StakingValidator object. Instead that parameter is a ValidatorHash object so the assert() call fails and throws the error.
My
Eternl
wallet now has an account that is targeted towards the preview TestNet. I did activate the account for connecting toCardano
dApps. I am able to connect to my wallet from Picoswap. However, during the attempt to by the Helios library to verify the connection to the preview TestNet, I am getting anunexpected error
report from theHelios
library.As you can see in the call stack sub-window from the screenshot below, this is occurring in the
fromValidatorHash()
method that belongs to theAddress
object. If you look in theConsole
sub-window you can see that the method was expecting thestakingHash
parameter to be aStakeKeyHash
object or if not that, aStakingValidator
object. Instead that parameter is aValidatorHash
object so theassert()
call fails and throws the error.What can I do to fix this?
--- SCREENSHOT ----