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
Looks like a few days ago, MINA changed their internal NetworkId:
{
"code": 4,
"message": "Network doesn't exist",
"description": "The network doesn't exist.",
"retriable": false,
"details": {
"body": [
"Network_doesn't_exist",
"mina:testnet",
"mina:devnet"
],
"error": "You are requesting the status for the network mina:testnet, but you are connected to the network mina:devnet\n"
}
}
Therefore, I assume this export type NetworkId = 'mainnet' | 'testnet' | { custom: string };
should be changed to export type NetworkId = 'mainnet' | 'devnet' | { custom: string }; ?
The text was updated successfully, but these errors were encountered:
slnowak
changed the title
Invalid NetworkId for devnet environment
[mina-signer] Invalid NetworkId for devnet environment
Dec 2, 2024
Looks like a few days ago, MINA changed their internal NetworkId:
Therefore, I assume this
export type NetworkId = 'mainnet' | 'testnet' | { custom: string };
should be changed to
export type NetworkId = 'mainnet' | 'devnet' | { custom: string };
?The text was updated successfully, but these errors were encountered: