12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * 全局通用字段定义
- */
- /**
- * 玩法类型
- * 普通红包:common=1;
- * 抽奖:lottery=2;
- * 夺宝:Treasure=3;
- * NFT
- */
- export const PlayType = {
- common: 1,
- lottery: 2,
- Treasure: 3,
- NFT: 4,
- };
- /**
- * 奖品类型
- * 货币:money=1;
- * 自定义奖品:custom=2
- */
- export const RewardType = {
- money: 1,
- custom: 2,
- };
- /**
- * 任务类型
- */
- export const TaskType = {
- twitterFollow: 1,
- twitterLikeTweet: 2,
- twitterRetweet: 3,
- joinDiscord: 7,
- repostToFacebook: 8,
- twitterCommentAndTag: 9,
- };
- /**
- * 帖子类型
- */
- export const PostType = {
- giveaway: 1,
- nftGroup: 2,
- postEditor: 3,
- };
- /**
- * 奖品 是否有效
- * 过期、NFT不可领等都被定义为无效
- */
- export const UsefulType = {
- unUseful: '0',
- useful: '1',
- };
|