Bamboo Token Logo

Bamboo Token

About Bamboo

Listings

Not Found
Token 2 years
white paper

Panda Defi is a project launching a new blockchain. It is Proof of Authority (PoA) based project. Due to its unique PoA nature it doesn’t cost any fee for sending and receiving transactions. Bamboo is token launched on BSC and is available for presale. We will move Bamboo coin to our own blockchain once we got enough recognition.

Similar to BSC and Avalanche there will be 2 blockchains for Panda Defi as well. One will be PoA and other will be Ethereum Virtual Machine (EVM) compatibile supporting smart contracts.

Panda Defi Ecosystem will have following features:
✅ 100% APR staking
✅ Zero gas blockchain
✅ NFT marketplace
✅ Startup launchpad
And a lot more.

Panda Defi platform will be powered by Bamboo token.

Social

Laser Scorebeta Last Audit: 11 April 2022

report
Token has too many issues. Scam probability is high.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Bamboo.tokenSale(address) (#154-176) performs a multiplication on the result of a division:
-_price = _eth / sPrice (#160)
-_tkns = sChunk * _price (#161)
Consider ordering multiplication before division.

Additional information: link

Bamboo.startAirdrop(uint256,uint256,uint256,uint256) (#185-191) should emit an event for:
- aSBlock = _aSBlock (#186)
- aEBlock = _aEBlock (#187)
- aAmt = _aAmt (#188)
- aCap = _aCap (#189)
Bamboo.startSale(uint256,uint256,uint256,uint256,uint256) (#192-199) should emit an event for:
- sSBlock = _sSBlock (#193)
- sEBlock = _sEBlock (#194)
- sChunk = _sChunk (#195)
- sPrice = _sPrice (#196)
- sCap = _sCap (#197)
Emit an event for critical parameter changes.

Additional information: link

SafeMath.div(uint256,uint256) (#16-19) is never used and should be removed
SafeMath.mul(uint256,uint256) (#12-15) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.5.10 (#1) allows old versions
solc-0.5.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

TokenBEP20.constructor() (#75-82) uses literals with too many digits:
- _totalSupply = 10000000000e0 (#79)
Bamboo.getAirdrop(address) (#139-152) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#143)
Bamboo.tokenSale(address) (#154-176) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#167)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Owned.transferOwnership(address)._newOwner (#53) lacks a zero-check on :
- newOwner = _newOwner (#54)
Bamboo.clearETH()._owner (#201) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#202)
Check that the address is not zero.

Additional information: link

Parameter Owned.transferOwnership(address)._newOwner (#53) is not in mixedCase
Variable TokenBEP20._totalSupply (#70) is not in mixedCase
Parameter Bamboo.getAirdrop(address)._refer (#139) is not in mixedCase
Parameter Bamboo.tokenSale(address)._refer (#154) is not in mixedCase
Parameter Bamboo.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#185) is not in mixedCase
Parameter Bamboo.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#185) is not in mixedCase
Parameter Bamboo.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#185) is not in mixedCase
Parameter Bamboo.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#185) is not in mixedCase
Parameter Bamboo.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#192) is not in mixedCase
Parameter Bamboo.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#192) is not in mixedCase
Parameter Bamboo.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#192) is not in mixedCase
Parameter Bamboo.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#192) is not in mixedCase
Parameter Bamboo.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#192) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

totalSupply() should be declared external:
- BEP20Interface.totalSupply() (#23)
- TokenBEP20.totalSupply() (#84-86)
allowance(address,address) should be declared external:
- BEP20Interface.allowance(address,address) (#25)
- TokenBEP20.allowance(address,address) (#108-110)
transfer(address,uint256) should be declared external:
- BEP20Interface.transfer(address,uint256) (#26)
- TokenBEP20.transfer(address,uint256) (#90-95)
approve(address,uint256) should be declared external:
- BEP20Interface.approve(address,uint256) (#27)
- TokenBEP20.approve(address,uint256) (#96-100)
transferFrom(address,address,uint256) should be declared external:
- BEP20Interface.transferFrom(address,address,uint256) (#28)
- TokenBEP20.transferFrom(address,address,uint256) (#101-107)
receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#35)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#53-55)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#56-61)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenBEP20.approveAndCall(address,uint256,bytes) (#111-116)
getAirdrop(address) should be declared external:
- Bamboo.getAirdrop(address) (#139-152)
tokenSale(address) should be declared external:
- Bamboo.tokenSale(address) (#154-176)
viewAirdrop() should be declared external:
- Bamboo.viewAirdrop() (#178-180)
viewSale() should be declared external:
- Bamboo.viewSale() (#181-183)
startAirdrop(uint256,uint256,uint256,uint256) should be declared external:
- Bamboo.startAirdrop(uint256,uint256,uint256,uint256) (#185-191)
startSale(uint256,uint256,uint256,uint256,uint256) should be declared external:
- Bamboo.startSale(uint256,uint256,uint256,uint256,uint256) (#192-199)
clearETH() should be declared external:
- Bamboo.clearETH() (#200-203)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Alexa traffic rank is relatively low

Additional information: link

Price for Bamboo

News for Bamboo