Skip to main content

getEvvmIdMetadata

Function Type: view
Function Signature: getEvvmIdMetadata(uint256 evvmID) returns (Metadata memory)

Retrieves the complete metadata for a specific EVVM ID, including the chain ID and contract address where the EVVM is deployed.

Parameters

ParameterTypeDescription
evvmIDuint256The EVVM ID to query metadata for

Return Value

TypeDescription
MetadataStruct containing chainId and evvmAddress information

Metadata Structure

struct Metadata {
uint256 chainId; // Chain ID where the EVVM is deployed
address evvmAddress; // Contract address of the EVVM instance
}