Bitcoin Forum

Alternate cryptocurrencies => Marketplace (Altcoins) => Topic started by: SnowCron on March 17, 2018, 08:30:15 AM



Title: ICO Generator
Post by: SnowCron on March 17, 2018, 08:30:15 AM
ICO Generator is officially on

ICO Generator is officially on: seeour hands-on tutorial (https://duke-of-ether.com/ico_manuals_hands_on.htm)

Fill an online form to customize the ICO you want to run, and get a ready-to-deploy Solidity script with Token and Crowd Sale contracts.

Suggestions and bug reports are highly appreciated.

https://duke-of-ether.com/images/ico_generator_01.jpg


Title: Re: ICO Generator
Post by: Fizpok on March 18, 2018, 12:45:06 PM
ICO Generator Features
Let's walk through the features ICO Generator provides. First of all, some sections of the code are not possible to remove, as they are always required, no mater what features you select.

Safe Math
A small helper class, taking care of arithmetic overflow errors. Let's say you have a balance variable, and it is equal to 10. Then you (accidentally) subtract 20 from it. As Solidity does not have negative numbers, an overflow happens, and now the "balance" holde a REALLY large number. Which can create a disaster, as we are talking about money. SafeMath makes this situation impossible.


Title: Re: ICO Generator
Post by: Fizpok on March 19, 2018, 12:19:35 AM
To create a signature, follow bitcointalk's standards and use their signature builder, available in a "profile" section of the forum.

To get the resulting HTML, you will have to do some odd things. First, add the signature to your profile. Now all your posts should have it (and yes, you can not use this approach to create a signature for a rank that is higher than your current rank). Use "View document source" option of your browser to see the HTML code. DO NOT use "Inspect" option, as it adds some extra formatting.

You will see your signature in the page's HTML:

...
ICO Dev. Kit (https://duke-of-ether.com)

...
Here "1467940" is your (actually, my, it is different for you) user id. Keep in mind, that any extra space or carriage return will make a different signature, so our scanner will not recognize it. It can be a challenging task, as senior forum members can have a very complex signatures:

https://duke-of-ether.com/images/campaign_signatures.jpg


Title: Re: ICO Generator
Post by: Fizpok on March 19, 2018, 07:41:06 AM
ICO Generator User Guide

ICO Generator is an online service that generates Solidity scripts for ICO Campaigns. Very often, a developer faces a situation when a client wants to launch an ICO, and requirements are changing "as we go". Or maybe you just want the job to be done FAST.

The idea behind ICO Generator tool is to allow the user to select features required for a particular campaign, like minimum and maximum goals, token name and so on. Then the Solidity contract is genegated automatically, and all that is left to do is to copy it and deploy.

On the following screenshot you see a typical view of an ICO Generator: the user set an "ICO" checkmark and specified campaign min. and max target as well as number of "shares" to issue (explained below).

https://duke-of-ether.com/images/ico_generator_01.jpg

Note that the "+" signs used to expand / collapse code fragments are there for reader's convenience only. When you believe that all features are specified, right before copying the code, you have to expand all collapsed sections.


Title: Re: ICO Generator
Post by: Fizpok on March 19, 2018, 05:11:13 PM
ICO Generator Features
Let's walk through the features ICO Generator provides. First of all, some sections of the code are not possible to remove, as they are always required, no mater what features you select.

Safe Math
A small helper class, taking care of arithmetic overflow errors. Let's say you have a balance variable, and it is equal to 10. Then you (accidentally) subtract 20 from it. As Solidity does not have negative numbers, an overflow happens, and now the "balance" holde a REALLY large number. Which can create a disaster, as we are talking about money. SafeMath makes this situation impossible.


Title: Re: ICO Generator
Post by: Fizpok on March 20, 2018, 05:21:54 AM
List of Active Campaigns.

An ICO Dev. Kit maintains a list of available ICOs that your visitor can browse, a simple commercial listing tool. As we have added our ICO Campaign (and have at least one day's balance on our account, and a Campaign is marked as "published"), it should be visible in that list.

In the Left Menu, select ICO Toolkit - ICO Toolkit - List of ICOs.

https://duke-of-ether.com/images/active_campaigns.jpg

To participate in a bounty (signature, testing and so on) campaigns, the visitor clicks the "Participate" button; it presents the screen with a simple registration form. Let's enter our data (nothing prevents you from promoting your own Campaign).


Title: Re: ICO Generator
Post by: jimely0907 on March 20, 2018, 03:24:00 PM
how would be possible a generator?


Title: Re: ICO Generator
Post by: Fizpok on March 20, 2018, 07:56:56 PM
how would be possible a generator?

There are well-tested blocks people use to build their contracts. We put them together and added a form with checkboxes and so on - you can choose the config you want for your ICO. Then you get the Solidity code, ready to be deployed.