nft stake task logic

This commit is contained in:
lianghuanjie
2024-12-30 12:53:34 +08:00
parent 31a674080d
commit 029289e84c
5 changed files with 102 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
package utils
var bitTarot = map[string]bool{
"288": true,
"297": true,
"298": true,
"300": true,
"308": true,
"311": true,
"333": true,
"336": true,
"349": true,
"357": true,
"366": true,
"367": true,
"388": true,
"396": true,
"406": true,
"409": true,
"418": true,
"419": true,
"436": true,
"456": true,
"503": true,
"564": true,
"58": true,
"26": true,
"82": true,
"152": true,
"186": true,
"379": true,
"500": true,
"523": true,
}
func IsBigTarot(tarotId string) bool {
return bitTarot[tarotId]
}