You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using configVariable("variable_name") from hardhat-keystore in network configurations like url and accounts, TypeScript throws an error: Type 'ConfigurationVariable' is not assignable to type ...
For example:
networks: {
myNetwork: {
...
url: configVariable('OP_SEPOLIA_URL') // Type 'ConfigurationVariable' is not assignable to type 'string'.
}
}
We should update sensitive fields types to accept the ConfigurationVariable type.
The text was updated successfully, but these errors were encountered:
When using
configVariable("variable_name")
fromhardhat-keystore
in network configurations likeurl
andaccounts
, TypeScript throws an error:Type 'ConfigurationVariable' is not assignable to type ...
For example:
We should update sensitive fields types to accept the
ConfigurationVariable
type.The text was updated successfully, but these errors were encountered: