This repository has been archived by the owner on Nov 8, 2021. It is now read-only.
forked from ordishs/go-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSON.go
457 lines (422 loc) · 16 KB
/
JSON.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package bitcoin
type gbtParams struct {
Mode string `json:"mode,omitempty"`
Capabilities []string `json:"capabilities,omitempty"`
Rules []string `json:"rules,omitempty"`
}
// BlockchainInfo comment
type BlockchainInfo struct {
Chain string `json:"chain"`
Blocks int32 `json:"blocks"`
Headers int32 `json:"headers"`
BestBlockHash string `json:"bestblockhash"`
Difficulty float64 `json:"difficulty"`
MedianTime int64 `json:"mediantime"`
VerificationProgress float64 `json:"verificationprogress,omitempty"`
Pruned bool `json:"pruned"`
PruneHeight int32 `json:"pruneheight,omitempty"`
ChainWork string `json:"chainwork,omitempty"`
}
// GetInfo comment
type GetInfo struct {
Version int32 `json:"version"`
ProtocolVersion int32 `json:"protocolversion"`
WalletVersion int32 `json:"walletversion"`
Balance float64 `json:"balance"`
Blocks int32 `json:"blocks"`
TimeOffset int64 `json:"timeoffset"`
Connections int32 `json:"connections"`
Proxy string `json:"proxy"`
Difficulty float64 `json:"difficulty"`
TestNet bool `json:"testnet"`
STN bool `json:"stn"`
KeyPoolOldest int64 `json:"keypoololdest"`
KeyPoolSize int32 `json:"keypoolsize"`
PayTXFee float64 `json:"paytxfee"`
RelayFee float64 `json:"relayfee"`
Errors string `json:"errors"`
MaxBlockSize int64 `json:"maxblocksize"`
MaxMinedBlockSize int64 `json:"maxminedblocksize"`
MaxStackMemoryUsagePolicy uint64 `json:"maxstackmemoryusagepolicy"`
MaxStackMemoryUsageConsensus uint64 `json:"maxstackmemoryusageconsensus"`
}
// Network comment
type Network struct {
Name string `json:"name"`
Limited bool `json:"limited"`
Reachable bool `json:"reachable"`
Proxy string `json:"proxy"`
ProxyRandmomizeCredentials bool `json:"proxy_randomize_credentials"`
}
// LocalAddress comment
type LocalAddress struct {
Address string `json:"address"`
Port int `json:"port"`
Score int `json:"score"`
}
// NetworkInfo comment
type NetworkInfo struct {
Version int `json:"version"`
SubVersion string `json:"subversion"`
ProtocolVersion int `json:"protocolversion"`
LocalServices string `json:"localservices"`
LocalRelay bool `json:"localrelay"`
TimeOffset int `json:"timeoffset"`
TXPropagationFreq int `json:"txnpropagationfreq"`
TXPropagationLen int `json:"txnpropagationqlen"`
NetworkActive bool `json:"networkactive"`
Connections int `json:"connections"`
AddressCount int `json:"addresscount"`
Networks []Network `json:"networks"`
RelayFee float64 `json:"relayfee"`
ExcessUTXOCharge float64 `json:"excessutxocharge"`
LocalAddresses []LocalAddress `json:"localaddresses"`
Warnings string `json:"warnings"`
}
// NetTotals comment
type NetTotals struct {
TotalBytesRecv int `json:"totalbytesrecv"`
TotalBytesSent int `json:"totalbytessent"`
TimeMillis int `json:"timemillis"`
UploadTarget struct {
TimeFrame int `json:"timeframe"`
Target int `json:"target"`
TargetReached bool `json:"target_reached"`
ServeHistoricalBlocks bool `json:"serve_historical_blocks"`
BytesLeftInCycle int `json:"bytes_left_in_cycle"`
TimeLeftInCycle int `json:"time_left_in_cycle"`
} `json:"uploadtarget"`
}
// MiningInfo comment
type MiningInfo struct {
Blocks int `json:"blocks"`
CurrentBlockSize int `json:"currentblocksize"`
CurrentBlockTX int `json:"currentblocktx"`
Difficulty float64 `json:"difficulty"`
BlocksPriorityPercent int `json:"blockprioritypercentage"`
Errors string `json:"errors"`
NetworkHashPS float64 `json:"networkhashps"`
PooledTX int `json:"pooledtx"`
Chain string `json:"chain"`
}
// BytesData struct
type BytesData struct {
Addr int `json:"addr"`
BlockTXN int `json:"blocktxn"`
CmpctBlock int `json:"cmpctblock"`
FeeFilter int `json:"feefilter"`
GetAddr int `json:"getaddr"`
GetData int `json:"getdata"`
GetHeaders int `json:"getheaders"`
Headers int `json:"headers"`
Inv int `json:"inv"`
NotFound int `json:"notfound"`
Ping int `json:"ping"`
Pong int `json:"pong"`
Reject int `json:"reject"`
SendCmpct int `json:"sendcmpct"`
SendHeaders int `json:"sendheaders"`
TX int `json:"tx"`
VerAck int `json:"verack"`
Version int `json:"version"`
}
// Peer struct
type Peer struct {
ID int `json:"id"`
Addr string `json:"addr"`
AddrLocal string `json:"addrlocal"`
Services string `json:"services"`
RelayTXes bool `json:"relaytxes"`
LastSend int `json:"lastsend"`
LastRecv int `json:"lastrecv"`
BytesSent int `json:"bytessent"`
BytesRecv int `json:"bytesrecv"`
ConnTime int `json:"conntime"`
TimeOffset int `json:"timeoffset"`
PingTime float64 `json:"pingtime"`
MinPing float64 `json:"minping"`
Version int `json:"version"`
Subver string `json:"subver"`
Inbound bool `json:"inbound"`
AddNode bool `json:"addnode"`
StartingHeight int `json:"startingheight"`
TXNInvSize int `json:"txninvsize"`
Banscore int `json:"banscore"`
SyncedHeaders int `json:"synced_headers"`
SyncedBlocks int `json:"synced_blocks"`
// "inflight": [],
WhiteListed bool `json:"whitelisted"`
BytesSendPerMsg BytesData `json:"bytessent_per_msg"`
BytesRecvPerMsg BytesData `json:"bytesrecv_per_msg"`
}
// PeerInfo comment
type PeerInfo []Peer
// RawMemPool comment
type RawMemPool []string
// MempoolInfo comment
type MempoolInfo struct {
Size int `json:"size"`
Bytes int `json:"bytes"`
Usage int `json:"usage"`
MaxMemPool int `json:"maxmempool"`
MemPoolMinFree float64 `json:"mempoolminfee"`
}
// ChainTXStats struct
type ChainTXStats struct {
Time int `json:"time"`
TXCount int `json:"txcount"`
WindowBlockCount int `json:"window_block_count"`
WindowTXCount int `json:"window_tx_count"`
WindowInterval int `json:"window_interval"`
TXRate float64 `json:"txrate"`
}
// Address comment
type Address struct {
IsValid bool `json:"isvalid"`
Address string `json:"address"`
ScriptPubKey string `json:"scriptPubKey"`
IsMine bool `json:"ismine"`
IsWatchOnly bool `json:"iswatchonly"`
IsScript bool `json:"isscript"`
}
// Transaction comment
type Transaction struct {
TXID string `json:"txid"`
Hash string `json:"hash"`
Data string `json:"data"`
}
// BlockTemplate comment
type BlockTemplate struct {
Version uint32 `json:"version"`
PreviousBlockHash string `json:"previousblockhash"`
Target string `json:"target"`
Transactions []Transaction `json:"transactions"`
Bits string `json:"bits"`
CurTime uint64 `json:"curtime"`
CoinbaseValue uint64 `json:"coinbasevalue"`
Height uint32 `json:"height"`
MinTime uint64 `json:"mintime"`
NonceRange string `json:"noncerange"`
DefaultWitnessCommitment string `json:"default_witness_commitment"`
SizeLimit uint64 `json:"sizelimit"`
WeightLimit uint64 `json:"weightlimit"`
SigOpLimit int64 `json:"sigoplimit"`
VBRequired int64 `json:"vbrequired"`
// extra mining candidate fields
IsMiningCandidate bool `json:"-"`
MiningCandidateID string `json:"-"`
MiningCandidate *MiningCandidate `json:"-"`
MerkleBranches []string `json:"-"`
}
// MiningCandidate comment
type MiningCandidate struct {
ID string `json:"id"`
PreviousHash string `json:"prevhash"`
CoinbaseValue uint64 `json:"coinbaseValue"`
Version uint32 `json:"version"`
Bits string `json:"nBits"`
CurTime uint64 `json:"time"`
Height uint32 `json:"height"`
NumTx uint32 `json:"num_tx"`
SizeWithoutCoinbase uint64 `json:"sizeWithoutCoinbase"`
MerkleProof []string `json:"merkleProof"`
}
type submitMiningSolutionParams struct {
ID string `json:"id"`
Nonce uint32 `json:"nonce"`
Coinbase string `json:"coinbase"`
Time uint32 `json:"time"`
Version uint32 `json:"version"`
}
// Block struct
type Block struct {
Hash string `json:"hash"`
Confirmations int64 `json:"confirmations"`
Size uint64 `json:"size"`
Height uint64 `json:"height"`
Version int64 `json:"version"`
VersionHex string `json:"versionHex"`
MerkleRoot string `json:"merkleroot"`
TxCount uint64 `json:"txcount"`
NTx uint64 `json:"nTx"`
NumTx uint64 `json:"num_tx"`
Tx []string `json:"tx"`
Time uint64 `json:"time"`
MedianTime uint64 `json:"mediantime"`
Nonce uint64 `json:"nonce"`
Bits string `json:"bits"`
Difficulty float64 `json:"difficulty"`
Chainwork string `json:"chainwork"`
PreviousBlockHash string `json:"previousblockhash"`
NextBlockHash string `json:"nextblockhash"`
// extra properties
CoinbaseTx *RawTransaction `json:"coinbaseTx"`
TotalFees float64 `json:"totalFees"`
Miner string `json:"miner"`
Pagination *BlockPage `json:"pages"`
}
// Block2 struct
type Block2 struct {
Hash string `json:"hash"`
Size int `json:"size"`
Height int `json:"height"`
Version uint32 `json:"version"`
VersionHex string `json:"versionHex"`
MerkleRoot string `json:"merkleroot"`
TxCount uint64 `json:"txcount"`
NTx uint64 `json:"nTx"`
NumTx uint64 `json:"num_tx"`
Tx []string `json:"tx"`
Time uint32 `json:"time"`
MedianTime uint32 `json:"mediantime"`
Nonce uint32 `json:"nonce"`
Bits string `json:"bits"`
Difficulty float64 `json:"difficulty"`
Chainwork string `json:"chainwork"`
PreviousBlockHash string `json:"previousblockhash"`
NextBlockHash string `json:"nextblockhash"`
BlockSubsidy uint64 `json:"blockSubsidy"`
BlockReward uint64 `json:"blockReward"`
USDPrice float64 `json:"usdPrice"`
Miner string `json:"miner"`
}
// BlockOverview struct
type BlockOverview struct {
Hash string `json:"hash"`
Confirmations int64 `json:"confirmations"`
Size uint64 `json:"size"`
Height uint64 `json:"height"`
Version int64 `json:"version"`
VersionHex string `json:"versionHex"`
MerkleRoot string `json:"merkleroot"`
// TxCount uint64 `json:"txcount"`
Time uint64 `json:"time"`
MedianTime uint64 `json:"mediantime"`
Nonce uint64 `json:"nonce"`
Bits string `json:"bits"`
Difficulty float64 `json:"difficulty"`
Chainwork string `json:"chainwork"`
PreviousBlockHash string `json:"previousblockhash"`
NextBlockHash string `json:"nextblockhash"`
}
// BlockHeader comment
type BlockHeader struct {
Hash string `json:"hash"`
Confirmations int64 `json:"confirmations"`
Height uint64 `json:"height"`
Version uint64 `json:"version"`
VersionHex string `json:"versionHex"`
MerkleRoot string `json:"merkleroot"`
Time uint64 `json:"time"`
MedianTime uint64 `json:"mediantime"`
Nonce uint64 `json:"nonce"`
Bits string `json:"bits"`
Difficulty float64 `json:"difficulty"`
Chainwork string `json:"chainwork"`
PreviousBlockHash string `json:"previousblockhash"`
NextBlockHash string `json:"nextblockhash"`
TXCount uint32 `json:"num_tx"`
}
// BlockHeaderAndCoinbase comment
type BlockHeaderAndCoinbase struct {
Hash string `json:"hash"`
Confirmations int64 `json:"confirmations"`
Height uint64 `json:"height"`
Version uint64 `json:"version"`
VersionHex string `json:"versionHex"`
MerkleRoot string `json:"merkleroot"`
Time uint64 `json:"time"`
MedianTime uint64 `json:"mediantime"`
Nonce uint64 `json:"nonce"`
Bits string `json:"bits"`
Difficulty float64 `json:"difficulty"`
Chainwork string `json:"chainwork"`
PreviousBlockHash string `json:"previousblockhash"`
NextBlockHash string `json:"nextblockhash"`
Tx []RawTransaction `json:"tx"`
}
// BlockPage to store links
type BlockPage struct {
URI []string `json:"uri"`
Size uint64 `json:"size"`
}
// BlockTxid comment
type BlockTxid struct {
BlockHash string `json:"blockhash"`
Tx []string `json:"tx"`
StartIndex uint64 `json:"startIndex"`
EndIndex uint64 `json:"endIndex"`
Count uint64 `json:"count"`
}
// RawTransaction comment
type RawTransaction struct {
Hex string `json:"hex,omitempty"`
TxID string `json:"txid"`
Hash string `json:"hash"`
Version int32 `json:"version"`
Size uint32 `json:"size"`
LockTime uint32 `json:"locktime"`
Vin []Vin `json:"vin"`
Vout []Vout `json:"vout"`
BlockHash string `json:"blockhash,omitempty"`
Confirmations uint32 `json:"confirmations,omitempty"`
Time int64 `json:"time,omitempty"`
Blocktime int64 `json:"blocktime,omitempty"`
BlockHeight uint64 `json:"blockheight,omitempty"`
}
// Vout represent an OUT value
type Vout struct {
Value float64 `json:"value"`
N int `json:"n"`
ScriptPubKey ScriptPubKey `json:"scriptPubKey"`
}
// Vin represent an IN value
type Vin struct {
Coinbase string `json:"coinbase"`
Txid string `json:"txid"`
Vout uint64 `json:"vout"`
ScriptSig ScriptSig `json:"scriptSig"`
Sequence uint32 `json:"sequence"`
}
// OpReturn comment
type OpReturn struct {
Type string `json:"type"`
Action string `json:"action"`
Text string `json:"text"`
Parts []string `json:"parts"`
}
// ScriptPubKey Comment
type ScriptPubKey struct {
ASM string `json:"asm"`
Hex string `json:"hex"`
ReqSigs int64 `json:"reqSigs,omitempty"`
Type string `json:"type"`
Addresses []string `json:"addresses,omitempty"`
OpReturn *OpReturn `json:"opReturn"`
IsTruncated bool `json:"isTruncated"`
}
// A ScriptSig represents a scriptsyg
type ScriptSig struct {
ASM string `json:"asm"`
Hex string `json:"hex"`
}
// UnspentTransaction type
type UnspentTransaction struct {
TXID string `json:"txid"`
Vout uint32 `json:"vout"`
Address string `json:"address"`
ScriptPubKey string `json:"scriptPubKey"`
Amount float64 `json:"amount"`
Satoshis uint64 `json:"satoshis"`
Confirmations uint32 `json:"confirmations"`
}
// SignRawTransactionResponse struct
type SignRawTransactionResponse struct {
Hex string `json:"hex"`
Complete bool `json:"complete"`
}
// Error comment
type Error struct {
Code float64
Message string
}