Pre-sale

About $Kprp our pre-sale.

🔐 It will be distributed via a presale between 30th and 3rd at 7 pm. in total, there are 21,000 Kprp for sale at 0.05 Eth each.

  • What is $KPRP Token?

    KeeperDApp is a decentralized App in which the governance native token ($kprp) is a staking coin and a community-driven token that allows holders to vote, and propose new ideas that will help the community grow and as well to collect some % of the network fees to buyback $kprp from the market and burn in order to reduce to amount of total supply.

  • How many tokens are for sale?

    21,000 $Kprp for sale. There will never be another presale.

  • When does the presale end?

    The presale ends on November 25th at 5 am UTC. No tokens can be purchased from the contract beyond this date. And all purchased tokens are released.

  • How much will one 1 KPRP cost?

    0.05ETH = 1 KPRP.

  • I didn't receive my tokens?

    Purchased tokens can be claimed from the contract 48hours after the pre-sale.

  • Is there a soft cap?

    Nope, there is no soft cap. We are committed to the project and have already raised what we need for the first phases.

  • What happens to unsold tokens?

    We will airdrop a portion of any unsold token to buyers (proportionally to their share) while some will be locked up in the staking reward pools. If there are very few buyers, then that's a big win for those that did buy~AS simple as 1,2,3 😋 .

  • How can I purchase some $KPRP?

    You can purchase it from the KeeperDApp web homepage

    Or Send ETH directly to the contract address (Be sure to set a gas limit of at least 100,000).

Claim your tokens

Your purchased $KPRP tokens automatically staked in the contract until Wednesday, December 9th when you can claim them. There is no soft cap, we will airdrop a portion of any unsold tokens to those that bought during this presale.

Return to the site or claim your token using etherscan on the 4th of December. Any additional bonuses will be deposited into your account within the next 7 days after the pre-sale.

Airdrop

There will be two sections of Kprp Airdrop, which will be distributed equally.

Total Kprp Airdrop token: 2.5% of the total token supply to be distributed to the first 1000 lucky keepers.

  • 1st section of Airdrop; 50% of the total tokens allocated for an airdrop to be distributed at the first stage to the qualified members, who might have complete their task.

  • 2nd section of Airdrop: 50% of the remaining allocated airdrop token will be distributed after the pre-sale to our initial investors.

You can check out our social media for more information on how to participate.

How to participate

There is always risk involved with smart contracts, don't deposit more than you can afford to lose. Stay safe.

You can purchase 1 KPRP for 0.05 ETH from the KeeperDApp web home page

  1. Connect your wallet

  2. Enter the amount of ETH you want to deposit.

  3. Click the purchase button.

After the transaction has been confirmed your "owned" balance will increase with your newly purchased tokens. Remember to come back to the site After 48hours to claim your tokens into your wallet.

We love and care about our community 😘 .

From our experience, Any extra tokens after the pre-sale will be distributed as follows, we will airdrop a portion of any unsold tokens to our community, while some percentage % will be locked up as staking rewards.

/**
 *Submitted for verification at Etherscan.io on 2020-11-18
*/

pragma solidity 0.6.6;

// ----------------------------------------------------------------------------
// 'KPRPToken' token contract
//
// Deployed to : 0x92D628225Ef1Dd4Ad75C83788F92e2C30D83913e
// Symbol      :KPRP
// Name        : KPRPToken
// Total supply: 150000000000000000000000
// Decimals    : 18
//
// Enjoy.
//
// (c) by Keeper Developer.
// ----------------------------------------------------------------------------


// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
contract SafeMath {
    function safeAdd(uint a, uint b) public pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function safeSub(uint a, uint b) public pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function safeMul(uint a, uint b) public pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function safeDiv(uint a, uint b) public pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
abstract contract ERC20Interface {
    function totalSupply() virtual public view returns (uint);
    function balanceOf(address tokenOwner) virtual public view returns (uint balance);
    function allowance(address tokenOwner, address spender) virtual public view returns (uint remaining);
    function transfer(address to, uint tokens) virtual public returns (bool success);
    function approve(address spender, uint tokens) virtual public returns (bool success);
    function transferFrom(address from, address to, uint tokens) virtual public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
abstract contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes memory data) virtual public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract KPRPToken is ERC20Interface, Owned, SafeMath {
    string public symbol;
    string public  name;
    uint8 public decimals;
    uint public _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public {
        symbol = "KPRP";
        name = "KPRPToken";
        decimals = 18;
        _totalSupply = 150000000000000000000000;
        balances[0x92D628225Ef1Dd4Ad75C83788F92e2C30D83913e] = _totalSupply;
        emit Transfer(address(0), 0x92D628225Ef1Dd4Ad75C83788F92e2C30D83913e, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public override view returns (uint) {
        return _totalSupply - balances[address(0)];
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account tokenOwner
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public override view returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to to account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public override returns (bool success) {
        balances[msg.sender] = safeSub(balances[msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for spender to transferFrom(...) tokens
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces 
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public override returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer tokens from the from account to the to account
    // 
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the from account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public override returns (bool success) {
        balances[from] = safeSub(balances[from], tokens);
        allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public override view returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for spender to transferFrom(...) tokens
    // from the token owner's account. The spender contract function
    // receiveApproval(...) is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    // function () external payable {
    //     revert();
    // }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }

Last updated