26 lines
780 B
Go
26 lines
780 B
Go
package consts
|
|
|
|
const (
|
|
EarnAllianceInviterId = "earn_alliance_inviter_id"
|
|
CarvIoInviterId = "carv_io_inviter_id"
|
|
KgenIoInviterId = "kgen_io_inviter_id"
|
|
Game7IoInviterId = "game7_io_inviter_id"
|
|
DailyPayConf = "daily_pay_conf"
|
|
NftStakeTaskDate = "nft_stake_task_date"
|
|
NftStakeTaskConf = "nft_stake_task_conf"
|
|
CarvApiKey = "carv_api_key"
|
|
Game7ApiKey = "game7_api_key"
|
|
KgenApiKey = "kgen_api_key"
|
|
AdminSecret = "admin_secret"
|
|
NftHolderApiConf = "nft_holder_api_conf"
|
|
)
|
|
|
|
type AssetType string
|
|
|
|
const (
|
|
AssetType_Points AssetType = "points"
|
|
AssetType_Keys AssetType = "keys"
|
|
AssetType_Castile AssetType = "castile"
|
|
AssetType_Elite_Points AssetType = "elite_points"
|
|
)
|