Update network data type

This commit is contained in:
IshaVenikar 2025-06-06 11:00:08 +05:30
parent 54e75e1f3a
commit 6e82abd955
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ const useCreateNetwork = () => {
rpcUrl: networkData.rpcUrl,
blockExplorerUrl: networkData.blockExplorerUrl || "",
addressPrefix: networkData.addressPrefix || "",
coinType: networkData.coinType || "",
coinType: networkData.coinType,
nativeDenom: networkData.nativeDenom || "",
gasPrice: networkData.gasPrice || String(import.meta.env.REACT_APP_DEFAULT_GAS_PRICE),
currencySymbol: networkData.currencySymbol || "",

View File

@ -64,7 +64,7 @@ export type NetworksFormData = {
namespace: string;
nativeDenom?: string;
addressPrefix?: string;
coinType?: string;
coinType: string;
gasPrice?: string;
isDefault: boolean;
};