hi, i just want to clarify..
is 630 000 True Flip Tokens fix for bounty? regardless of how much will be raised during the ico?
hey dev, bumping for this.. i saw you replied to others's posts but missed mine.. i guess you overlooked it.. m just curious and i just wanna know if this is fix.
thanks.
Hello
LEEMEEGOYes, this quantity of tokens fixed for bounty regardless of how much will be raised during the ico.
Best regards,
TrueFlip.iowow, so 630000 tokens which has .0005 sats each?
so you will have 315 BTC allocated for the bounty.. such a huge amount.i hope your team will not reduced it since i think it will be impossible to reach the max cap withing 4 days.
indeed, thats the big amount for allocated bounty 315 BTC
max cap for 4 days left is too hard, but already rised 2500+ BTC its still awsome for now
that is the main reason why too many participants interested to join this campaign because of high allocated amount for bounties well i hope no more exchange of the bounty pool happen after the last update deduction .
Hello
LEEMEEGO, mylabs01, herdiansyahdanang, TGD and other bounty participants I've gave you incorrect information.
I've check it in the Whitepaper.
The correct information is:
The bounty and the team stakes will be counted after token sale finished by this way.
All purchased tokens (both preICO and ICO) are 70%.
We issue extra
3% for bounty
7% for advisory and escrow
20% for team.
So the stakes still the same, but the total quantity will known only after ICO finished.
Part of smart contract code:
/// @notice Finalize ICO
/// @dev Required state: Success
function finalizeICO()
public
onlyOwner
{
require(!isActive());
require(block.number >= startBlock);
icoFinalized = true;
uint256 icoCoins = token.totalSupply();
uint256 boardPercent = teamPercentOfTotal + advisoryPercentOfTotal;
uint256 percentTokens = div(icoCoins, 100 - boardPercent);
uint256 teamTokens = mul(percentTokens, teamPercentOfTotal);
uint256 advisoryTokens = mul(percentTokens, advisoryPercentOfTotal);
tokensIssuedDuringICO = add(icoCoins, teamTokens);
tokensIssuedDuringICO = add(tokensIssuedDuringICO, advisoryTokens);
require(token.mint(teamAddress, teamTokens, false));
require(token.mint(advisoryAddress, advisoryTokens, false));
require(token.finalize());
}
uint public constant teamPercentOfTotal = 20;
uint public constant advisoryPercentOfTotal = 10;
Our contracts:
https://github.com/TrueFlip/trueflip-contractsBest regards,
TrueFlip.io