getter.gno
0.43 Kb · 17 lines
1package protocol_fee
2
3// GetDomainPath returns the domain path of the protocol fee contract.
4//
5// Returns:
6// - domainPath: protocol fee contract domain path
7func GetDomainPath() string {
8 return domainPath
9}
10
11// GetVersionPackagePath returns the current implementation package path.
12//
13// Returns:
14// - packagePath: current implementation package path
15func GetVersionPackagePath() string {
16 return versionManager.GetCurrentPackagePath()
17}