Paladin DAO is the decentralized reserve currency protocol available on the BSC (Binance Smart Chain) based on the PAL token. Each PAL token is backed by a basket of assets (e.g., BUSD, PAL-BUSD LP Tokens etc etc) in the Paladin DAO treasury, giving it an intrinsic value that it cannot fall below. Paladin DAO also introduces economic and game-theoretic dynamics into the market through staking and minting.
Our goal is to build a policy-controlled currency system, native on the BSC network, in which the behavior of the PAL token is controlled at a high level by the DAO. In the long term, we believe this system can be used to optimize for stability and consistency so that PAL can function as a global unit-of-account and medium-of-exchange currency. In the short term, we intend to optimize the system for growth and wealth creation.
We intend to achieve price flatness for a representative basket of goods without the use of fiat currency, in order to allow the cryptocurrency industry to detach once and for all from the traditional finance world!
How do I participate in Paladin DAO?
There are two main strategies for market participants: staking and minting. Stakers stake their PAL tokens in return for more PAL tokens, while minters provide LP tokens or BUSD tokens in exchange for discounted PAL tokens after a fixed vesting period.
How can I benefit from Paladin DAO?
The main benefit for stakers comes from supply growth. The protocol mints new PAL tokens from the treasury, the majority of which are distributed to the stakers. Thus, the gain for stakers will come from their auto-compounding balances, though price exposure remains an important consideration. That is, if the increase in token balance outpaces the potential drop in price (due to inflation), stakers would make a profit.
The main benefit for minters comes from price consistency. Minters commit a capital upfront and are promised a fixed return at a set point in time; that return is given in PAL tokens and thus the minter's profit would depend on PAL price when the minted PAL matures. Taking this into consideration, minters benefit from a rising or static price for the PAL token!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in PaladinToken._transfer(address,address,uint256) (#1018-1056):
External calls:
- swapTokensAndSend() (#1032)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(contractTokenBalance,0,path,feeWallet,block.timestamp + 400) (#1066-1072)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#1035)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#841)
- _balances[recipient] = _balances[recipient].add(amount) (#842)
- super._transfer(sender,address(this),feeAmount) (#1052)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#841)
- _balances[recipient] = _balances[recipient].add(amount) (#842)
- super._transfer(sender,recipient,sendAmount) (#1054)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#841)
- _balances[recipient] = _balances[recipient].add(amount) (#842)
Apply the check-effects-interactions pattern.
Additional information: link
PaladinToken._transfer(address,address,uint256).feeAmount (#1040) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
BEP20.constructor(string,string).name (#671) shadows:
- BEP20.name() (#687-689) (function)
BEP20.constructor(string,string).symbol (#671) shadows:
- BEP20.symbol() (#695-697) (function)
BEP20.allowance(address,address).owner (#736) shadows:
- Ownable.owner() (#318-320) (function)
BEP20._approve(address,address,uint256).owner (#895) shadows:
- Ownable.owner() (#318-320) (function)
Rename the local variables that shadow another component.
Additional information: link
PaladinToken.updateMinSwapAmount(uint256) (#1123-1125) should emit an event for:
- minSwapAmount = _minSwapAmount (#1124)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in PaladinToken.constructor(address) (#975-991):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#981)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#983)
- automatedMarketMakerPairs[pair] = value (#1093)
- feeWallet = _feeWallet (#986)
- setExcludeFromFee(msg.sender,true) (#988)
- isExcludedFromFee[_account] = _bool (#1098)
- setExcludeFromFee(address(this),true) (#989)
- isExcludedFromFee[_account] = _bool (#1098)
- setExcludeFromFee(address(BURN_ADDRESS),true) (#990)
- isExcludedFromFee[_account] = _bool (#1098)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PaladinToken._transfer(address,address,uint256) (#1018-1056):
External calls:
- swapTokensAndSend() (#1032)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(contractTokenBalance,0,path,feeWallet,block.timestamp + 400) (#1066-1072)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#843)
- super._transfer(sender,address(this),feeAmount) (#1052)
- Transfer(sender,recipient,amount) (#843)
- super._transfer(sender,recipient,sendAmount) (#1054)
- Transfer(sender,recipient,amount) (#843)
- super._transfer(sender,recipient,amount) (#1035)
Reentrancy in PaladinToken.constructor(address) (#975-991):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#981)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1095)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#983)
Apply the check-effects-interactions pattern.
Additional information: link
PaladinToken._transfer(address,address,uint256) (#1018-1056) compares to a boolean constant:
-tradingOpen == true && swapForBUSdEnabled == true && _inSwapForBUSD == false && canSwap && ! automatedMarketMakerPairs[sender] && sender != owner() (#1025-1030)
PaladinToken._transfer(address,address,uint256) (#1018-1056) compares to a boolean constant:
-require(bool,string)(tradingOpen == true,Trading is not yet open.) (#1037)
Remove the equality to the boolean constant.
Additional information: link
Context._msgData() (#283-286) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#538-541) is never used and should be removed
SafeMath.mod(uint256,uint256) (#500-503) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#558-561) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#372-376) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#408-411) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#418-421) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#393-401) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#383-386) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (#74) is not in mixedCase
Parameter PaladinToken.mint(address,uint256)._to (#994) is not in mixedCase
Parameter PaladinToken.mint(address,uint256)._amount (#994) is not in mixedCase
Function PaladinToken._burnFrom(address,uint256) (#1006-1015) is not in mixedCase
Parameter PaladinToken.setExcludeFromFee(address,bool)._account (#1097) is not in mixedCase
Parameter PaladinToken.setExcludeFromFee(address,bool)._bool (#1097) is not in mixedCase
Parameter PaladinToken.updateFeeWallet(address)._feeWallet (#1105) is not in mixedCase
Parameter PaladinToken.updateBuyFee(uint16)._buyFee (#1111) is not in mixedCase
Parameter PaladinToken.updateSellFee(uint16)._sellFee (#1117) is not in mixedCase
Parameter PaladinToken.updateMinSwapAmount(uint256)._minSwapAmount (#1123) is not in mixedCase
Parameter PaladinToken.enableSwapTokenForBusd(bool)._enabled (#1127) is not in mixedCase
Parameter PaladinToken.approveToRouter(uint256)._amount (#1131) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#284)" inContext (#278-287)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#79) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#80)
Prevent variables from having similar names.
Additional information: link
PaladinToken.slitherConstructorVariables() (#915-1135) uses literals with too many digits:
- minSwapAmount = 100000000000 (#933)
PaladinToken.slitherConstructorConstantVariables() (#915-1135) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#944)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BEP20._setupDecimals (#660) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#337-340)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#346-350)
addMinter(address) should be declared external:
- MinterRole.addMinter(address) (#624-626)
removeMinter(address) should be declared external:
- MinterRole.removeMinter(address) (#628-630)
renounceMinter() should be declared external:
- MinterRole.renounceMinter() (#632-634)
name() should be declared external:
- BEP20.name() (#687-689)
symbol() should be declared external:
- BEP20.symbol() (#695-697)
decimals() should be declared external:
- BEP20.decimals() (#702-704)
totalSupply() should be declared external:
- BEP20.totalSupply() (#709-711)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#728-731)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#747-750)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#764-772)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#786-789)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#805-808)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#818-821)
mint(address,uint256) should be declared external:
- PaladinToken.mint(address,uint256) (#994-996)
burn(uint256) should be declared external:
- PaladinToken.burn(uint256) (#998-1000)
burnFrom(address,uint256) should be declared external:
- PaladinToken.burnFrom(address,uint256) (#1002-1004)
transferOperator(address) should be declared external:
- PaladinToken.transferOperator(address) (#1075-1079)
openTrading(bool) should be declared external:
- PaladinToken.openTrading(bool) (#1081-1084)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- PaladinToken.setAutomatedMarketMakerPair(address,bool) (#1086-1090)
updateFeeWallet(address) should be declared external:
- PaladinToken.updateFeeWallet(address) (#1105-1109)
updateBuyFee(uint16) should be declared external:
- PaladinToken.updateBuyFee(uint16) (#1111-1115)
updateSellFee(uint16) should be declared external:
- PaladinToken.updateSellFee(uint16) (#1117-1121)
updateMinSwapAmount(uint256) should be declared external:
- PaladinToken.updateMinSwapAmount(uint256) (#1123-1125)
enableSwapTokenForBusd(bool) should be declared external:
- PaladinToken.enableSwapTokenForBusd(bool) (#1127-1129)
approveToRouter(uint256) should be declared external:
- PaladinToken.approveToRouter(uint256) (#1131-1133)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Youtube account