Module 0xa888dd108ea636a234c973b8b72b9cadf0c7ae94d6f355c64dde9fdc275724ee::revision
@title Revision library @author Aave @notice Implements revision versioning for the protocol
use 0x1::string;
use 0x1::string_utils;
Constants
@notice Major version number
const MAJOR_REVISION: u256 = 1;
@notice Minor version number
const MINOR_REVISION: u256 = 0;
@notice Patch version number
const PATCH_REVISION: u256 = 0;
Function get_revision
@notice Returns the full version string in the format "major.minor.patch" @return The version string
#[view]
public fun get_revision(): string::String