-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecredchainexporter.go
217 lines (183 loc) · 4.77 KB
/
decredchainexporter.go
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package chainbrowser
import (
"fmt"
"encoding/json"
"github.com/decred/dcrd/blockchain"
"github.com/decred/dcrd/database"
"github.com/decred/dcrd/wire"
"github.com/decred/dcrd/chaincfg"
"github.com/decred/dcrd/txscript"
"github.com/decred/dcrutil"
_ "github.com/decred/dcrd/database/ffldb"
"time"
"os"
)
var (
fileBlocks *os.File
fileTx *os.File
fileTxin *os.File
fileTxout *os.File
)
func marshalBlock(block *wire.MsgBlock) {
b := block.Header
blockHash := b.BlockHash().String()
jValue, _ := json.Marshal(&struct {
Hash string
Version int32
PrevBlock string
MerkleRoot string
StakeRoot string
VoteBits uint16
//FinalState string
Voters uint16
FreshStake uint8
Revocations uint8
PoolSize uint32
Bits uint32
SBits int64
Height uint32
Size uint32
Timestamp time.Time
Nonce uint32
//ExtraData string
StakeVersion uint32
}{
Hash: blockHash,
Version: b.Version,
PrevBlock: b.PrevBlock.String(),
MerkleRoot: b.MerkleRoot.String(),
StakeRoot: b.StakeRoot.String(),
VoteBits: b.VoteBits,
//FinalState [6]byte
Voters: b.Voters,
FreshStake: b.FreshStake,
Revocations: b.Revocations,
PoolSize: b.PoolSize,
Bits: b.Bits,
SBits: b.SBits,
Height: b.Height,
Size: b.Size,
Timestamp: b.Timestamp,
Nonce: b.Nonce,
//ExtraData [32]byte
StakeVersion: b.StakeVersion,
})
fileBlocks.WriteString(string(jValue))
fileBlocks.WriteString("\n")
marshalTransactions(block.Transactions, blockHash)
}
func marshalTransactions(txs []*wire.MsgTx, blockHash string) {
for _, tx := range txs {
txFormatted := &struct {
BlockHash string
Hash string
Version int32
LockTime uint32
Expiry uint32
}{
BlockHash: blockHash,
Hash: tx.TxHash().String(),
Version: tx.Version,
LockTime: tx.LockTime,
Expiry: tx.Expiry,
}
jValue, _ := json.Marshal(txFormatted)
fileTx.WriteString(string(jValue))
fileTx.WriteString("\n")
marshalTxIn(tx.TxIn, tx.TxHash().String())
marshalTxOut(tx.TxOut, tx.TxHash().String())
}
}
func marshalTxIn(txIn []*wire.TxIn, parentTxHash string) {
for _, tx := range txIn {
signatureScriptDisasm, _ := txscript.DisasmString(tx.SignatureScript)
txFormatted := &struct {
ParentTxHash string
// Non-witness
Hash string
Index uint32
Tree int8
Sequence uint32
// Witness
ValueIn int64
BlockHeight uint32
BlockIndex uint32
SignatureScript string
}{
ParentTxHash: parentTxHash,
Hash: tx.PreviousOutPoint.Hash.String(),
Index: tx.PreviousOutPoint.Index,
Tree: tx.PreviousOutPoint.Tree,
Sequence: tx.Sequence,
// Witness
ValueIn: tx.ValueIn,
BlockHeight: tx.BlockHeight,
BlockIndex: tx.BlockIndex,
SignatureScript: signatureScriptDisasm,
}
jValue, _ := json.Marshal(txFormatted)
fileTxin.WriteString(string(jValue))
fileTxin.WriteString("\n")
}
}
func marshalTxOut(txOut []*wire.TxOut, parentTxHash string) {
for _, vout := range txOut {
pkScriptDisasm, _ := txscript.DisasmString(vout.PkScript)
sc, addrs, _, _ := txscript.ExtractPkScriptAddrs(
vout.Version, vout.PkScript, &chaincfg.MainNetParams)
fmt.Println("SC", sc)
fmt.Println("ADDR", addrs)
txFormatted := &struct {
ParentTxHash string
Value int64
Version uint16
PkScript string
}{
ParentTxHash: parentTxHash,
Value: vout.Value,
Version: vout.Version,
PkScript: pkScriptDisasm,
}
jValue, _ := json.Marshal(txFormatted)
fileTxout.WriteString(string(jValue))
fileTxout.WriteString("\n")
}
}
func Export() {
fileTx, _ = os.Create("tx.json")
defer fileTx.Close()
fileTxin, _ = os.Create("txin.json")
defer fileTxin.Close()
fileTxout, _ = os.Create("txout.json")
defer fileTxout.Close()
fileBlocks, _ = os.Create("blocks.json")
defer fileBlocks.Close()
db, err := database.Open("ffldb", "/Users/peter/Library/Application Support/Dcrd/data/mainnet/blocks_ffldb/", wire.MainNet)
if err != nil {
fmt.Println(err)
return
}
defer db.Close()
var block *dcrutil.Block
var height int64
for height = 147100; height < 147133; height++ {
fmt.Printf("Height #%d\n", height)
err = db.View(func(tx database.Tx) error {
block, _ = blockchain.DBFetchBlockByHeight(tx, height)
if err != nil {
return err
}
return nil
})
if err != nil {
fmt.Println("ERROR", err)
return
}
block := block.MsgBlock()
if err != nil {
fmt.Println("FromBytes", err)
return
}
marshalBlock(block)
}
}