-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (71 loc) · 3.79 KB
/
Copy pathindex.html
File metadata and controls
81 lines (71 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>DAC Factory FAQs</title>
<link rel='stylesheet' href='css/style.css' type='text/css' media='all' />
</head>
<body>
<h1>DAC Factory FAQs</h1>
<div class="accordion">
<div class="section">
<a class="section-title" href="#accordion-1">How easy is it to create DACs?</a>
<div id="accordion-1" class="section-content">
<p>Creating a DAC used to be only for the most technically literate. With DAC Factory from eosDAC it is now as easy as completing a few details and we will create and maintain it for you.</p>
</div><!-- section-content end -->
</div><!-- section end -->
<div class="section">
<a class="section-title" href="#accordion-2">How to start?</a>
<div id="accordion-2" class="section-content">
<p>Once you complete the form, our systems will prepare and build the DAC for you. Just enter the name of your DAC and the name and amount of tokens you want to issue and then choose a color scheme.</p>
<p>Please be careful choosing the token symbol as this cannot be changed later (anything else can be)</p>
</div><!-- section-content end -->
</div><!-- section end -->
<div class="section">
<a class="section-title" href="#accordion-3">What happens after the DAC is created?</a>
<div id="accordion-3" class="section-content">
<p>Once your DAC has been created, the account used originally will be elected as the 'Genesis Custodian'. This account will be the single elected custodian and will be sent all of the issued tokens and therefore has full control of the DAC.</p>
<p>You should now take some time to familiarize yourself with the DAC interface. At this point, you can change any settings by proposing them and then approving them.</p>
<p>Once you are ready, you can then start to distribute your DAC tokens (you may want to transfer them to the DAC treasury account first) and then start asking people to register as candidates and start voting!</p>
<p>After voting reaches the required threshold (expressed as a percentage of voting tokens), and the required number of candidates are available the DAC will be ready to be unlocked. Once it is unlocked, all permissions will be resigned to the elected</p>
</div><!-- section-content end -->
</div><!-- section end -->
<div class="section">
<a class="section-title" href="#accordion-4">Modifications</a>
<div id="accordion-4" class="section-content">
<p>We understand that the needs of each DAC is different (token economics, voting schemes etc), so have designed our DACs to be customizable. This will require installing extra contracts if the functionality you require is not available. Please contact us for more information</p>
<p>The default system already includes the ability to choose different voting schemes and the ability to customize the look-and-feel of your DAC.</p>
</div><!-- section-content end -->
</div><!-- section end -->
<div class="section">
<a class="section-title" href="#accordion-5">Where can I learn more about eosDAC?
</a>
<div id="accordion-5" class="section-content">
<p>You can learn more about eosDAC on our <a href = "https://eosdac.io"> website </a></p>
</div><!-- section-content end -->
</div><!-- section end -->
</div><!-- accordion end -->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
$('.section-title').click(function(e) {
// Get current link value
var currentLink = $(this).attr('href');
if($(e.target).is('.active')) {
close_section();
}else {
close_section();
// Add active class to section title
$(this).addClass('active');
// Display the hidden content
$('.accordion ' + currentLink).slideDown(350).addClass('open');
}
e.preventDefault();
});
function close_section() {
$('.accordion .section-title').removeClass('active');
$('.accordion .section-content').removeClass('open').slideUp(350);
}
});
</script>
</body>
</html>