From c6441a7313f4078fc5664993f61a41d98e4e7503 Mon Sep 17 00:00:00 2001 From: harper Date: Fri, 24 Oct 2025 13:35:01 +0900 Subject: [PATCH] Update ethSecp256k1 type URLs to use cosmos.evm namespace Changed ethSecp256k1 public and private key type URLs from ethermint.crypto.v1.ethsecp256k1 to cosmos.evm.crypto.v1.ethsecp256k1 to align with the updated Cosmos SDK namespace conventions. --- lib/src/crypto/types/types.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/crypto/types/types.dart b/lib/src/crypto/types/types.dart index 69dbac9b..d0cf31dd 100644 --- a/lib/src/crypto/types/types.dart +++ b/lib/src/crypto/types/types.dart @@ -83,11 +83,11 @@ class CosmosCryptoKeysTypes extends TypeUrl { static const CosmosCryptoKeysTypes ethSecp256k1Publickey = CosmosCryptoKeysTypes._( - typeUrl: "/ethermint.crypto.v1.ethsecp256k1.PubKey", + typeUrl: "/cosmos.evm.crypto.v1.ethsecp256k1.PubKey", name: "ethsecp256k1"); static const CosmosCryptoKeysTypes ethSecp256k1Privatekey = CosmosCryptoKeysTypes._( - typeUrl: "/ethermint.crypto.v1.ethsecp256k1.PrivKey", + typeUrl: "/cosmos.evm.crypto.v1.ethsecp256k1.PrivKey", name: "ethsecp256k1"); static const CosmosCryptoKeysTypes secp256R1Publickey =