mvrEndpoint function
Move Registry (MVR) HTTP endpoint for resolving @org/app names to package
IDs / type tags. Only mainnet and testnet are served.
Implementation
String? mvrEndpoint(SuiNetwork network) => switch (network) {
SuiNetwork.mainnet => 'https://mainnet.mvr.mystenlabs.com',
SuiNetwork.testnet => 'https://testnet.mvr.mystenlabs.com',
SuiNetwork.devnet || SuiNetwork.localnet => null,
};