Created
June 9, 2020 13:54
-
-
Save KardanovIR/f427525d85c9156ef2494859abe0911c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func keyFunding (id: Int) = "funding_" + id.toString() | |
func keyEndTimestamp(id: Int) = keyFunding(id) + "_timestamp" | |
func keyImplEndTimestamp(id: Int) = keyFunding(id) + "_impl_timestamp" | |
func keyTargetSum(id: Int) = keyFunding(id) + "_targetSum" | |
func keyOwner(id: Int) = keyFunding(id) + "_owner" | |
func keyRaised(id: Int) = keyFunding(id) + "_raised" | |
func keyReleaseVotes(id: Int) = keyFunding(id) + "_release_votes" | |
func keyReleasedTokens(id: Int) = keyFunding(id) + "_released" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment