@lelantos-org/sdk / chain/networks / DeployedNetworkName
Type Alias: DeployedNetworkName โ
ts
type DeployedNetworkName = { [K in NetworkName]: typeof NETWORKS[K]["maspAddress"] extends null ? never : K }[NetworkName];Defined in: @lelantos-org/sdk/dist/chain/networks.d.ts:78
The subset of NetworkName whose preset carries both addresses.
Derived from the literals in NETWORKS, so a name flips from placeholder to usable the moment its deployment lands โ and until then, passing it to connect() is a compile error rather than a NetworkNotDeployedError at runtime.