Complete technical documentation for the $TAMA earning system, smart contracts, and gameplay mechanics
Game mechanics and core concepts
Mathematical formulas for $TAMA rewards
Supply distribution and burn mechanics
Boost calculations and streak rewards
Compound interest and yield farming
DAO voting power calculations
Smart contract functions
Audit reports and safety measures
TAMAWEB is a play-to-earn virtual pet game where players care for digital pets and earn $TAMA tokens through various activities. The earning system is designed with sophisticated mathematical models to ensure sustainable tokenomics and fair reward distribution.
Players earn $TAMA through: pet care actions, mini-game completions, daily login streaks, social interactions, and achievement unlocks.
Where R = Total $TAMA Reward per Action
Activity | Base Rate | Multiplier | Cooldown | Max Daily |
---|---|---|---|---|
Feeding | 0.008 $TAMA | 1.0x | 5 minutes | 50 actions |
Playing | 0.012 $TAMA | 1.2x | 3 minutes | 100 actions |
Cleaning | 0.006 $TAMA | 0.8x | 10 minutes | 20 actions |
Training | 0.015 $TAMA | 1.5x | 15 minutes | 30 actions |
Mini-Games | 0.020 $TAMA | 2.0x | 2 minutes | 200 actions |
The system implements multiple layers of bot protection including: action timing analysis, pattern recognition, CAPTCHA verification for high-frequency users, and wallet behavior analysis.
200,000,000 $TAMA
Distributed over 3 years with decreasing emission rates
700,000,000 $TAMA
Massive liquidity on Jupiter and Raydium DEXs
50,000,000 $TAMA
Vested over 2 years for continued development
50,000,000 $TAMA
Community incentives and partnerships
With 70% in liquidity providing massive stability, the burn rate is designed to exceed emission rate after 12 months, creating net deflationary pressure while maintaining deep liquidity.
Pet Level | XP Required | Earning Bonus | Special Abilities |
---|---|---|---|
1-10 | 100 ร Levelยฒ | 0% - 10% | Basic care |
11-25 | 200 ร Levelยฒ | 11% - 25% | Mini-games unlocked |
26-50 | 300 ร Levelยฒ | 26% - 50% | Breeding available |
51-100 | 500 ร Levelยฒ | 51% - 100% | Master tier rewards |
5% of friend's earnings for 30 days
Friend gets 10% bonus for 7 days
2x - 5x multipliers during events
Limited time bonus periods
Top 1%: 50% bonus
Top 10%: 25% bonus
Top 25%: 10% bonus
Tier | Minimum Stake | APY | Lock Period | Bonus Rewards |
---|---|---|---|---|
Bronze | 1,000 $TAMA | 12% | No lock | None |
Silver | 10,000 $TAMA | 18% | 30 days | 5% play bonus |
Gold | 50,000 $TAMA | 24% | 90 days | 10% play bonus |
Platinum | 100,000 $TAMA | 30% | 180 days | 15% play bonus |
Diamond | 500,000 $TAMA | 36% | 365 days | 25% play bonus |
Required to submit governance proposals
Proposal Type | Quorum Required | Approval Threshold | Execution Delay |
---|---|---|---|
Parameter Changes | 15% of supply | 60% approval | 48 hours |
Treasury Allocation | 25% of supply | 65% approval | 7 days |
Smart Contract Upgrades | 35% of supply | 75% approval | 14 days |
Emergency Actions | 10% of supply | 80% approval | Immediate |
// Earning Functions function calculatePetCareReward( uint256 baseRate, uint256 happinessLevel, uint256 activityMultiplier, uint256 timeDecay ) external pure returns (uint256 reward); function claimDailyReward( address user, uint256 streakDays ) external returns (uint256 amount); // Staking Functions function stakeTokens( uint256 amount, uint8 tier ) external returns (bool success); function calculateStakeRewards( address staker ) external view returns (uint256 rewards); // Governance Functions function submitProposal( string memory title, string memory description, bytes memory callData ) external returns (uint256 proposalId); function vote( uint256 proposalId, bool support ) external returns (bool success);
event PetCareReward( address indexed user, uint256 amount, uint8 activityType, uint256 timestamp ); event StakeCreated( address indexed staker, uint256 amount, uint8 tier, uint256 unlockTime ); event ProposalCreated( uint256 indexed proposalId, address indexed proposer, string title ); event VoteCast( uint256 indexed proposalId, address indexed voter, bool support, uint256 votingPower );
Error Code | Description | Resolution |
---|---|---|
ERR_001 | Insufficient balance | Check token balance before transaction |
ERR_002 | Cooldown active | Wait for cooldown period to expire |
ERR_003 | Invalid pet state | Ensure pet is alive and healthy |
ERR_004 | Staking period not ended | Wait for lock period to complete |
ERR_005 | Proposal already voted | Cannot vote twice on same proposal |
// JavaScript Web3 Integration const contract = new web3.eth.Contract(ABI, CONTRACT_ADDRESS); // Claim rewards example async function claimRewards() { try { const tx = await contract.methods .claimDailyReward(userAddress, streakDays) .send({ from: userAddress }); console.log('Rewards claimed:', tx.transactionHash); } catch (error) { console.error('Claim failed:', error.message); } } // Check staking rewards async function getStakeRewards(userAddress) { const rewards = await contract.methods .calculateStakeRewards(userAddress) .call(); return web3.utils.fromWei(rewards, 'ether'); }
Smart contracts have been audited by CertiK and Quantstamp. All critical and high-severity issues have been resolved.
Treasury funds secured with 4-of-7 multi-sig
No single point of failure for fund management
All parameter changes have mandatory delays
Community has time to review and react
Advanced pattern recognition algorithms
Rate limiting and behavioral analysis
Proxy pattern for critical bug fixes
Community governance required for upgrades
Severity | Reward Range | Description |
---|---|---|
Critical | $50,000 - $100,000 | Fund drainage, complete system compromise |
High | $10,000 - $50,000 | Significant fund loss, governance bypass |
Medium | $1,000 - $10,000 | Logic errors, reward manipulation |
Low | $100 - $1,000 | Minor issues, optimization opportunities |
Please report security vulnerabilities through our private disclosure program. Public disclosure before fixes are implemented may disqualify you from bounty rewards.
Technical Support: tech@tamaweb.xyz
Security Issues: security@tamaweb.xyz
Partnerships: partners@tamaweb.xyz
General Inquiries: hello@tamaweb.xyz
Participate in DAO governance through our decentralized voting platform. Stake $TAMA tokens to gain voting power and help shape the future of TAMAWEB.
v1.2.0 (May 24, 2025): Enhanced earning formulas, new staking tiers, governance improvements
v1.1.5 (May 10, 2025): Bug fixes, optimized gas usage, anti-bot enhancements
v1.1.0 (April 28, 2025): Staking system launch, liquidity mining program
v1.0.0 (April 15, 2025): Initial mainnet deployment, basic earning system