-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathblockchain-info-ags-howto.php
117 lines (100 loc) · 3.81 KB
/
blockchain-info-ags-howto.php
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php include 'header.php'; ?>
<! ========== FULL PROJECT WRAP =============================================================================================
=============================================================================================================================>
<div id="headerwrap" class="ags" >
<div class="container">
</div><!-- /container -->
</div><!-- /fullproject -->
<! ========== Content ================================================================================================
=============================================================================================================================>
<div id="white">
<div class="container">
<div class="row">
<h2>Sending BTC from a Blockchain.info Wallet</h2>
</div>
<div class="row">
<div class="col-lg-4">
<p>First of all, you need to log into the Blockchain.info wallet from which you wish to send BTC.</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/1.jpg' class="img-responsive" />
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<p>
Blockchain.info wallets may contain more than one keypair, so it’s helpful, but not necessary, that the AGS purchase be fully funded from a single address.
To ensure that, click on the “Send Money” tab, followed by the “Custom” tab.
</p>
<p>
Choose a “From” address with a high enough balance to fully fund the transaction.
Enter the BitShares AGS address <i>1ANGELwQwWxMmbdaSWhWLqBEtPTkWb8uDc</i> in the “To” field.
Then send the transaction.
</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/2.jpg' class="img-responsive" />
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<p>To verify, click on the 1ANGEL address. Your transaction should appear.</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/3.jpg' class="img-responsive" />
</p>
</div>
</div>
<div class="row">
<h2>Claiming BitShares on Launch</h2>
</div>
<div class="row">
<div class="col-lg-4">
<p>Now the funds have been sent, but to claim your BTS when they are issued, you will need to import the private key for the address you used to purchase your AGS.</p>
<p>To retrieve this key from your Blockchain.info wallet, click on the “Import/Export” button, and then select “Export Unencrypted”.</p>
<p>Copy the text in the box.</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/4.jpg' class="img-responsive" />
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<p>Open a plain text editor, such as Notepad (Windows) or TextEdit (Mac OS X), and paste the text.</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/5.jpg' class="img-responsive" />
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<p>
Now save the file with a <code>.json</code> extension.
Make sure that the “Save as type” box reads “All Files (*.*)”.
</p>
<p style="color:red">
Do not create this file until it is needed, and keep it safe after you create it.
It contains the unencrypted keys to your wallet!
</p>
<p>
When BitShares is launched, tools importing your private key into your BTS wallet will be provided.
</p>
</div>
<div class="col-lg-8 centered">
<p>
<img src='/assets/img/blockChainTutorial/6.jpg' class="img-responsive" />
</p>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>