-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nft.go
441 lines (389 loc) · 10.3 KB
/
nft.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
package dotwallet
import (
"bytes"
"container/list"
"crypto/sha256"
"encoding/json"
"errors"
"fmt"
"net/http"
"github.com/btcsuite/btcd/btcec"
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcd/txscript"
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
)
// GetNft can obtain information authorized by DotWallet users via their user access_token
func (c *Client) GetNft(txID string) (*NftData, error) {
// Make the request
response, err := c.Request(
http.MethodPost,
getNft,
&getNftParam{
TxID: txID,
},
http.StatusOK,
c.Token(),
)
if err != nil {
return nil, err
}
// Unmarshal the response
resp := new(nftResponse)
if err = json.Unmarshal(
response.Body, &resp,
); err != nil {
return nil, err
}
// Error?
if resp.Code != 0 {
return nil, fmt.Errorf(resp.Message)
}
return &resp.Data.NftData, nil
}
// MintNft can obtain information authorized by DotWallet users via their user access_token
func (c *Client) MintNft(codeHash string, param string) (*NftMintData, error) {
// Make the request
response, err := c.Request(
http.MethodPost,
mintNft,
&mintNftParam{
CodeHash: codeHash,
Param: param,
},
http.StatusOK,
c.Token(),
)
if err != nil {
return nil, err
}
// Unmarshal the response
resp := new(nftMintResponse)
if err = json.Unmarshal(
response.Body, &resp,
); err != nil {
return nil, err
}
// Error?
if resp.Code != 0 {
return nil, fmt.Errorf(resp.Message)
}
return &resp.Data.NftMintData, nil
}
// TransferNftToAddress can obtain information authorized by DotWallet users via their user access_token
func (c *Client) TransferNftToAddress(txID string, address string, name string,
description string, picURL string) (*TransferNftToAddressData, error) {
// Make the request
response, err := c.Request(
http.MethodPost,
transferNftToAddress,
&transferNftToAddressParam{
TxID: txID,
Address: address,
Name: name,
Desc: description,
PicURL: picURL,
},
http.StatusOK,
c.Token(),
)
if err != nil {
return nil, err
}
// Unmarshal the response
resp := new(transferNftToAddressResponse)
if err = json.Unmarshal(
response.Body, &resp,
); err != nil {
return nil, err
}
// Error?
if resp.Code != 0 {
return nil, fmt.Errorf(resp.Message)
}
return &resp.Data.TransferNftToAddressData, nil
}
// ParseNftVoutScript will parse th NFT script
func ParseNftVoutScript(pkScript []byte) (btcutil.Address, error) {
if len(pkScript) != NftVoutLen {
return nil, errors.New("not nft vout")
}
if !bytes.HasPrefix(pkScript, NftVoutScriptPrefix) {
return nil, errors.New("not nft vout")
}
addr, err := btcutil.NewAddressPubKeyHash(pkScript[NftVoutLen-20:], &chaincfg.MainNetParams)
if err != nil {
return nil, err
}
return addr, nil
}
// VerifyCastingNftTransactionByRawTx will verify the casting
func (c *Client) VerifyCastingNftTransactionByRawTx(rawTx string) (bool, error) {
msgTx, err := c.DeserializeRawTx(rawTx)
if err != nil {
return false, err
}
return c.VerifyCastingNftTransaction(msgTx)
}
// VerifyCastingNftTransactionByTxid get by tx id
func (c *Client) VerifyCastingNftTransactionByTxid(txID string) (bool, error) {
msgTx, err := c.GetMsgTxByStr(txID)
if err != nil {
return false, err
}
return c.VerifyCastingNftTransaction(msgTx)
}
// VerifyCastingNftTransaction verify the tx
func (c *Client) VerifyCastingNftTransaction(msgTx *wire.MsgTx) (bool, error) {
nftVinCount := 0
for i, vin := range msgTx.TxIn {
if !txscript.IsPushOnlyScript(vin.SignatureScript) {
continue
}
pushData, err := txscript.PushedData(vin.SignatureScript)
if err != nil {
return false, err
}
if len(pushData) != NftVinPushedDataCount {
continue
}
var preMsgTx *wire.MsgTx
preMsgTx, err = c.GetMsgTx(&msgTx.TxIn[i].PreviousOutPoint.Hash)
if err != nil {
return false, err
}
preVout := preMsgTx.TxOut[vin.PreviousOutPoint.Index]
_, err = ParseNftVoutScript(preVout.PkScript)
if err != nil {
continue
}
nftVinCount++
}
nftVoutCount := 0
continuity := true
var opReturnScript []byte
for index, vout := range msgTx.TxOut {
if bytes.HasPrefix(vout.PkScript, []byte{0x00, 0x6a}) {
opReturnScript = vout.PkScript
continue
}
_, err := ParseNftVoutScript(vout.PkScript)
if err != nil {
continue
}
if nftVinCount != index {
continuity = false
}
nftVoutCount++
}
if nftVinCount > 0 || nftVoutCount == 0 || !continuity || opReturnScript == nil {
return false, nil
}
pushData, err := txscript.PushedData(opReturnScript)
if err != nil {
return false, nil //nolint:nilerr // returning bool instead
}
if len(pushData) != 2 {
return false, nil
}
nftAuthInfo := &NftAuthInfo{}
err = json.Unmarshal(pushData[1], nftAuthInfo)
if err != nil {
return false, nil //nolint:nilerr // returning bool instead
}
var sig *btcec.Signature
sig, err = btcec.ParseSignature(nftAuthInfo.Sig, btcec.S256())
if err != nil {
panic(err)
}
var pub *btcec.PublicKey
pub, err = btcec.ParsePubKey(nftAuthInfo.Pub, btcec.S256())
if err != nil {
panic(err)
}
hashing := sha256.New()
key := fmt.Sprintf("%s:%d", msgTx.TxIn[0].PreviousOutPoint.Hash.String(), msgTx.TxIn[0].PreviousOutPoint.Index)
hashing.Write([]byte(key))
keyHash := hashing.Sum(nil)
ok := sig.Verify(
keyHash,
pub,
)
if !ok {
return false, nil
}
return true, nil
}
// VerifyNftCastingOpReturn verify the op return
func (c *Client) VerifyNftCastingOpReturn(msgTx *wire.MsgTx) bool {
var opReturnScript []byte
for _, vout := range msgTx.TxOut {
if bytes.HasPrefix(vout.PkScript, []byte{0x00, 0x6a}) {
opReturnScript = vout.PkScript
break
}
}
pushData, err := txscript.PushedData(opReturnScript)
if err != nil {
return false
}
if len(pushData) != 2 {
return false
}
nftAuthInfo := &NftAuthInfo{}
err = json.Unmarshal(pushData[1], nftAuthInfo)
if err != nil {
return false
}
sig, err := btcec.ParseSignature(nftAuthInfo.Sig, btcec.S256())
if err != nil {
return false
}
pub, err := btcec.ParsePubKey(nftAuthInfo.Pub, btcec.S256())
if err != nil {
return false
}
hashing := sha256.New()
key := fmt.Sprintf("%s:%d", msgTx.TxIn[0].PreviousOutPoint.Hash.String(), msgTx.TxIn[0].PreviousOutPoint.Index)
hashing.Write([]byte(key))
keyHash := hashing.Sum(nil)
ok := sig.Verify(
keyHash,
pub,
)
return ok
}
// GetNftReceiveAddressesByTxidStr get address by tx id
func (c *Client) GetNftReceiveAddressesByTxidStr(txID string) ([]*AddressBadgeCodePair, error) {
msgTx, err := c.GetMsgTxByStr(txID)
if err != nil {
return nil, err
}
return c.GetNftReceiveAddresses(msgTx)
}
// GetNftReceiveAddresses get nft addresses
func (c *Client) GetNftReceiveAddresses(msgTx *wire.MsgTx) ([]*AddressBadgeCodePair, error) {
l := list.New()
l.PushBack(msgTx)
nftTxInfos := make([]*NftTxInfo, 0, 8)
for l.Len() > 0 {
elem := l.Front()
l.Remove(elem)
currentMsgTx := elem.Value.(*wire.MsgTx)
nftTxInfo := &NftTxInfo{
TxID: currentMsgTx.TxHash().String(),
NftPreOutPoints: make([]*TxIDIndexPair, 0, 1),
NftOutPoints: make([]*AddressIndexPair, 0, 8),
Type: -1,
}
nftTxInfos = append(nftTxInfos, nftTxInfo)
for i, vin := range currentMsgTx.TxIn {
if !txscript.IsPushOnlyScript(vin.SignatureScript) {
continue
}
pushData, err := txscript.PushedData(vin.SignatureScript)
if err != nil {
return nil, err
}
if len(pushData) != NftVinPushedDataCount {
continue
}
var preMsgTx *wire.MsgTx
preMsgTx, err = c.GetMsgTx(¤tMsgTx.TxIn[i].PreviousOutPoint.Hash)
if err != nil {
return nil, err
}
preVout := preMsgTx.TxOut[vin.PreviousOutPoint.Index]
_, err = ParseNftVoutScript(preVout.PkScript)
if err != nil {
continue
}
txidIndexPair := &TxIDIndexPair{
TxID: vin.PreviousOutPoint.Hash.String(),
Index: int(vin.PreviousOutPoint.Index),
}
nftTxInfo.NftPreOutPoints = append(nftTxInfo.NftPreOutPoints, txidIndexPair)
l.PushBack(preMsgTx)
}
continuity := true
nftVoutCount := 0
for index, vout := range currentMsgTx.TxOut {
addr, err := ParseNftVoutScript(vout.PkScript)
if err != nil {
continue
}
addressIndexPair := &AddressIndexPair{
Address: addr.EncodeAddress(),
Index: index,
}
nftTxInfo.NftOutPoints = append(nftTxInfo.NftOutPoints, addressIndexPair)
if nftVoutCount != index {
continuity = false
}
nftVoutCount++
}
if len(nftTxInfo.NftPreOutPoints) == 0 && len(nftTxInfo.NftOutPoints) == 0 {
nftTxInfo.Type = NftTxTypeIrrelevant
break
}
if len(nftTxInfo.NftPreOutPoints) == 0 && len(nftTxInfo.NftOutPoints) > 0 {
// casting
if !continuity || !c.VerifyNftCastingOpReturn(currentMsgTx) {
nftTxInfo.Type = NftTxTypeError
break
}
nftTxInfo.Type = NftTxTypeCasting
break
}
if len(nftTxInfo.NftPreOutPoints) == 1 && len(nftTxInfo.NftOutPoints) == 0 {
// destroy
nftTxInfo.Type = NftTxTypeDestroy
break
}
if len(nftTxInfo.NftPreOutPoints) == 1 && len(nftTxInfo.NftOutPoints) == 1 {
// transfer
nftTxInfo.Type = NftTxTypeTransfer
continue
}
if len(nftTxInfo.NftPreOutPoints) > 1 {
// destroy
nftTxInfo.Type = NftTxTypeDestroy
break
}
}
nftTxInfosCount := len(nftTxInfos)
if nftTxInfosCount == 0 {
return nil, errors.New("nftTxInfosCount should not be zero")
}
firstNftTxInfo := nftTxInfos[nftTxInfosCount-1]
// 追回去的第一笔
if firstNftTxInfo.Type != NftTxTypeCasting {
return []*AddressBadgeCodePair{}, nil
}
if nftTxInfosCount == 1 {
result := make([]*AddressBadgeCodePair, 0, len(firstNftTxInfo.NftOutPoints))
for _, nftOutPoint := range firstNftTxInfo.NftOutPoints {
addressBadgeCodePair := &AddressBadgeCodePair{
Address: nftOutPoint.Address,
BadgeCode: fmt.Sprintf("%s_%d", firstNftTxInfo.TxID, nftOutPoint.Index+1),
}
result = append(result, addressBadgeCodePair)
}
return result, nil
}
secondNftTxInfo := nftTxInfos[nftTxInfosCount-2]
if len(secondNftTxInfo.NftPreOutPoints) != 1 {
return nil, errors.New("secondNftTxInfo.NftPreOutPoints should be 1")
}
badgeCode := fmt.Sprintf("%s_%d", firstNftTxInfo.TxID, secondNftTxInfo.NftPreOutPoints[0].Index+1)
lastNftTxInfo := nftTxInfos[0]
if len(lastNftTxInfo.NftOutPoints) == 0 {
return nil, errors.New("lastNftTxInfo.NftOutPoints count should be zero")
}
return []*AddressBadgeCodePair{
{
Address: lastNftTxInfo.NftOutPoints[0].Address,
BadgeCode: badgeCode,
},
}, nil
}