Author

Topic: ICO Tokeni Source Codes> Open Source Full Support (Read 132 times)

newbie
Activity: 17
Merit: 36
# Soon you will see the crypto money exchange system in github. Bi nebi flashing bittrex Smiley [/ b]
What is similar to bittrex?
Do you think it should be as easy as setting up and operating a stock market?
# TokenPayToken! [/ b]
LINK: https://github.com/mrtersiyer/erc20Token
Contact, Support and everything else for [email protected]
I've been looking at longco bitcointalk.org for a long time, and as far as I can see, the programmer who knows the job is incomplete. 3,5 people who know the job are hiding their projects to themselves. I would like to share with you the ethereum Solidity codes of TokenPay. I defined the descriptions of the codes on each function and variable according to the rules.

# Details [/ b]
It allows you to manage all the details for an ICO process. The TGE contract distributes the total supply, the founding team token, the token allocated to the consultants, the token allocated to the team, the token allocated to the reference & bounty expenses, the token allocated to pre-sale and the tokens allocated to the main sale. The TokenPayToken contract provides functions such as burning and unlocking the token. CrowdsalePre contracts are pre-sold (you can set addresses for white list and pool investments). The CrowdsaleMain contract is doing the same jobs as CrowdsalePre subject to different rates Smiley. When the TokenVesting contract is signed prior to the TGE distribution, the installers keep the consultants in place.

# Files [/ b]

 1. TokenPayToken.sol (Token's main contract. So we can say token)
 2. TokenPayTokenTGE.Sol (Token contract to distribute to Token addresses. So TGE contract is created immediately after the signature of the Token is entered. Tokens are sent to the token transferred to the TGE contract and the addresses are entered into the TGE contract, crowedSale addresses will be entered in the vesting and the token is distributed. )
 3. CrowdsaleMain.sol (This is the main sale of the contract. X-y period under the price includes the price to sell. After the sale of TokenPayToken from the authority to burn the token on the contract after the end of the time you can provide automatically.)
 4. CrowdsalePre.sol (This contract is pre-sale. X-y time includes the price such as the price to sell z. After the sale of TokenPayToken from the authority to burn the data on the contract after the end of the time to be burned automatically you can provide.)
 5. TokenVesting.sol (With this contract, you can identify accounts such as consultants and founders and team members who should remain in the time lock, so that the TokenVesting contract is signed before the distribution is made with the TGE contract. When triggering from any address after the time lock is unlocked, token is delivered to the corresponding addresses.)

# Installation steps [/ b]
All of the following procedures will be done in remix ide. https://remix.ethereum.org/
 1. compile token
 2. Compile pre-sale
 3. Compile the main sales
 4. Compile the locks
 5. Compile TGE
 6. Fill the TGE setUp funtion
 7. Enter TGE address to TOKEN distribute
 8. TGE distbrute et
 Add TOKEN addWhitelistedBurn main sales
 Add TOKEN addWhitelistedBurn pre-sale
 11. Add to TOKEN addWhitelistedTransfer main sales
 Add TOKEN addWhitelistedTransfer pre-sale
 13. Pre-sale owner transfer
 14. Host Sales Transfer Owner
 
# Default definitions [/ b]
 
`` `Default definitions for Token ...
+ -------------- + ------------------------------- +
| Name | TokenPay |
+ -------------- + ------------------------------- +
| Symbol | TKN |
+ -------------- + ------------------------------- +
| Decimal | 18 |
+ -------------- + ------------------------------- +
| Total Supply | 10.000.000.000000000000000000 |
+ -------------- + ------------------------------- +

Maternity price of the 4th week, that is, the price of non-discounted supply [/ b]
+ --------------------- + ------------------------ +
| 1 Ether / TKN 0% 250.000000000000000000 tkn |
+ --------------------- + ------------------------ +

Sales statement example [/ b]
+ ------------------ + ------------------------ + ----- + -------------------------- ----------------------- - +
| Sales Type | Discount Rate | 1 ETH Will Go Token | Price |
+ ------------------ + ------------------------ + ----- + -------------------------- ----------------------- - +
| PreSale Week 1 | 60,000000000000000000% | 400,000000000000000000 tkn | 0.002500000000000000 ether |
+ ------------------ + ------------------------ + ----- + -------------------------- ----------------------- - +
| PreSale Week 2 | 60,000000000000000000% | 400,000000000000000000 tkn | 0.0
Jump to: