interface SuiMoveNormalizedModule {
    address: string;
    exposedFunctions: {
        [key: string]: SuiMoveNormalizedFunction;
    };
    fileFormatVersion: number;
    friends: SuiMoveModuleId[];
    name: string;
    structs: {
        [key: string]: SuiMoveNormalizedStruct;
    };
}

Properties

address: string
exposedFunctions: {
    [key: string]: SuiMoveNormalizedFunction;
}
fileFormatVersion: number
friends: SuiMoveModuleId[]
name: string
structs: {
    [key: string]: SuiMoveNormalizedStruct;
}